@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');



html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    font-family: sans-serif;
  }
  
  body {
    margin: 0;
  }
  
  article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block;
  }
  
  audio, canvas, progress, video {
    vertical-align: baseline;
    display: inline-block;
  }
  
  audio:not([controls]) {
    height: 0;
    display: none;
  }
  
  [hidden], template {
    display: none;
  }
  
  a {
    background-color: rgba(0, 0, 0, 0);
  }
  
  a:active, a:hover {
    outline: 0;
  }
  
  abbr[title] {
    border-bottom: 1px dotted;
  }
  
  b, strong {
    font-weight: bold;
  }
  
  dfn {
    font-style: italic;
  }
  
  h1 {
    margin: .67em 0;
    font-size: 2em;
  }
  
  mark {
    color: #000;
    background: #ff0;
  }
  
  small {
    font-size: 80%;
  }
  
  sub, sup {
    vertical-align: baseline;
    font-size: 75%;
    line-height: 0;
    position: relative;
  }
  
  img {
    border: 0;
  }
  
  svg:not(:root) {
    overflow: hidden;
  }
  
  hr {
    box-sizing: content-box;
    height: 0;
  }
  
  pre {
    overflow: auto;
  }
  
  code, kbd, pre, samp {
    font-family: monospace;
    font-size: 1em;
  }
  
  button, input, optgroup, select, textarea {
    color: inherit;
    font: inherit;
    margin: 0;
  }
  
  button {
    overflow: visible;
  }
  
  button, select {
    text-transform: none;
  }
  
  legend {
    border: 0;
    padding: 0;
  }
  
  textarea {
    overflow: auto;
  }
  
  optgroup {
    font-weight: bold;
  }
  
  table {
    border-collapse: collapse;
    border-spacing: 0;
  }
  
  td, th {
    padding: 0;
  }
  
  
  * {
    box-sizing: border-box;
  }
  
  html {
    height: 100%;
  }
  
  body {
    color: #333;
    background-color: #fff;
    min-height: 100%;
    margin: 0;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    line-height: 20px;
  }
  
  img {
    vertical-align: middle;
    max-width: 100%;
    display: inline-block;
  }

  .w-inline-block {
    max-width: 100%;
    display: flex;
  }

  h1, h2, h3, h4, h5, h6 {
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  h1 {
    margin-top: 20px;
    font-size: 38px;
    line-height: 44px;
  }
  
  h2 {
    margin-top: 20px;
    font-size: 32px;
    line-height: 36px;
  }
  
  h3 {
    margin-top: 20px;
    font-size: 24px;
    line-height: 30px;
  }
  
  h4 {
    margin-top: 10px;
    font-size: 18px;
    line-height: 24px;
  }
  
  h5 {
    margin-top: 10px;
    font-size: 14px;
    line-height: 20px;
  }
  
  h6 {
    margin-top: 10px;
    font-size: 12px;
    line-height: 18px;
  }
  
  p {
    margin-top: 0;
    margin-bottom: 10px;
  }
  
  blockquote {
    border-left: 5px solid #e2e2e2;
    margin: 0 0 10px;
    padding: 10px 20px;
    font-size: 18px;
    line-height: 22px;
  }
  
  figure {
    margin: 0 0 10px;
  }
  
  figcaption {
    text-align: center;
    margin-top: 5px;
  }
  
  ul, ol {
    margin-top: 0;
    margin-bottom: 10px;
    padding-left: 40px;
  }
  
  fieldset {
    border: 0;
    margin: 0;
    padding: 0;
  }

  
  label {
    margin-bottom: 5px;
    font-weight: bold;
    display: block;
  }
  
  @keyframes spin {
    0% {
      transform: rotate(0);
    }
  
    100% {
      transform: rotate(360deg);
    }
  }

  :root {
    --background: #0D0106;
    --on-background: #f2f2f2;
  }
  
  .body {
    background-color: var(--background);
    color: var(--on-background);
    flex-direction: column;
    align-items: center;
  }
  
  .section-nav {
    z-index: 10;
    background-image: linear-gradient(rgba(0, 0, 0, .4), rgba(0, 0, 0, 0));
    height: 168px;
    padding-top: 24px;
    padding-left: 48px;
    padding-right: 48px;
    display: flex;
    position: fixed;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: 0%;
  }
  
  .nav-bar {
    flex: 1;
    justify-content: space-between;
    align-items: center;
    height: 56px;
    display: flex;
  }
  
  .nav-left-wrapper {
    flex: 1;
    align-items: center;
    height: 56px;
    display: flex;
  }
  
  .nav-pill-wrapper {
    flex-direction: column;
    justify-content: center;
    width: 250px;
    height: 56px;
    display: flex;
    position: relative;
  }

  
  .nav-right-wrapper {
    flex: 1;
    justify-content: flex-end;
    gap: 8px;
    align-items: center;
    height: 56px;
    display: flex;
  }
  
  .logomark {
    justify-content: center;
    align-items: center;
    height: 64px;
    display: flex;
  }
  
  .text-logo {
    letter-spacing: 0;
    font-family: Inter, sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
  }
  
  .logo-text {
    grid-row-gap: 8px;
    flex-direction: column;
    justify-content: center;
    margin-top: 1px;
    display: flex;
  }
  
  .text-underlogo {
    color: rgba(242, 242, 242, .5);
    letter-spacing: .2px;
    font-family: inter, sans-serif;
    font-size: 12px;
    line-height: 12px;
    display: block;
  }
  
  .nav-pill {
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    background-color: rgba(242, 242, 242, .05);
    border: 1px solid rgba(242, 242, 242, .1);
    border-radius: 14px;
    justify-content: space-between;
    align-items: center;
    width: 250px;
    height: 48px;
    padding-left: 6px;
    padding-right: 6px;
    transition: box-shadow 1s cubic-bezier(.23, 1, .32, 1), border .6s cubic-bezier(.165, .84, .44, 1);
    display: flex;
    position: relative;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .15);
  }
  
  .nav-pill:hover {
    background-color: rgba(242, 242, 242, .08);
    border-color: rgba(242, 242, 242, .2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, .3);
  }
  
  .nav-indicator-glow {
    background-color: var(--on-background);
    border-radius: 10px;
    width: 30px;
    height: 10px;
    margin-bottom: 0px;
    margin-left: 30px;
    box-shadow: 0 2px 25px 10px #fff;
    position: absolute;
  }
  
  .nav-indicator-glow.maker {
    margin-left: 110px;
  }

  .nav-indicator-glow.more {
    margin-left: 190px;
  }
 
  .nav-toggle {
    color: var(--on-background);
    text-align: center;
    border-radius: 18px;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 36px;
    text-decoration: none;
    transition: all .2s cubic-bezier(.165, .84, .44, 1);
    display: flex;
  }
  
  .nav-toggle:hover {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(242, 242, 242, .05));
  }
  
  .nav-toggle.work:hover {
    background-image: linear-gradient(270deg, rgba(0, 0, 0, 0), rgba(242, 242, 242, .05));
  }
  
  .text-nav-toggle {
    text-align: center;
    letter-spacing: .2px;
    font-family: inter, sans-serif;
    font-weight: 500;
    line-height: 18px;
  }
  
  .nav-indicator-pill {
    z-index: -1;
    background-color: rgba(52, 46, 55, 60%);
    border-radius: 12px;
    width: 80px;
    height: 36px;
    display: block;
    position: absolute;
    top: 5px;
    left: 6px;
  }
  
  .nav-indicator-pill.maker {
    left: auto;
    right: 84px;
  }

  .nav-indicator-pill.more {
    left: auto;
    right: 6px;
  }
  
  .chip-socials {
    grid-column-gap: 4px;
    border-radius: 24px;
    justify-content: flex-start;
    align-items: center;
    height: 48px;
    padding-left: 16px;
    padding-right: 12px;
    text-decoration: none;
    transition: background-color .3s cubic-bezier(.165, .84, .44, 1);
    display: flex;
  }
  
  .chip-socials:hover {
    background-color: rgba(242, 242, 242, .05);
    border-radius: 24px;
  }
  
  .text-socialnav {
    color: #f2f2f2;
    letter-spacing: .2px;
    font-family: inter, sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    text-decoration: none;
  }
  
  .section-hero {
    z-index: 1;
    background-image: radial-gradient(circle closest-corner at 50% 0, rgba(242, 242, 242, .15), rgba(0, 0, 0, 0));
    flex-direction: row;
    justify-content: center;
    padding-top: 160px;
    padding-bottom: 4px;
    display: flex;
    position: relative;
    overflow: hidden;
  }
  
  .container-hero-image {
    z-index: 3;
    width: 882px;
    position: relative;
  }
  
  .container-hero-image.info-hero {
    width: auto;
  }
  
  .window-outline {

    backdrop-filter: none;
    outline-offset: -1px;
    background-image: radial-gradient(circle farthest-side at 50% 0, rgba(242, 242, 242, .2), rgba(0, 0, 0, 0));
    border-radius: 24px;
    outline: 8px solid rgba(242, 242, 242, .15);
    padding: 12px;

    box-shadow: inset 0 0 8px rgba(0, 0, 0, .4), 0 0 60px rgba(0, 0, 0, .2), 0 30px 120px rgba(0, 0, 0, .8);
  }
  
  .window-outline.info-hero {
    box-shadow: inset 0 0 8px rgba(0, 0, 0, .4), 0 0 60px rgba(0, 0, 0, .2), 0 30px 80px rgba(0, 0, 0, .5);
  }
  
  .window-main {
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(242, 242, 242, .3);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, .1), 0 0 12px rgba(0, 0, 0, .4);
  }
  
  .window-main-image{
    border-radius: 16px;
  }

  .window-bar {
    z-index: 5;
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    background-image: linear-gradient(to right, rgba(242, 242, 242, .1), rgba(242, 242, 242, .5) 50%, rgba(242, 242, 242, .1));
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    padding-left: 20px;
    padding-right: 12px;
    display: flex;
    box-shadow: 0 10px 20px 4px rgba(0, 0, 0, .2);
  }
  
  .window-bar.info-hero {
    background-color: rgba(242, 242, 242, .2);
    background-image: none;
    border-bottom: 1px solid rgba(242, 242, 242, .3);
    border-radius: 0;
    display: none;
  }
  
  
  .window-content {
    z-index: 5;
    grid-column-gap: 32px;
    grid-row-gap: 0px;
    background-color: rgba(16, 16, 16, .7);
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-around;
    align-items: stretch;
    padding: 80px 56px 192px;
    display: flex;
    position: relative;
  }
  
  .window-content.info-hero {
    padding: 0;
  }
  
  .hero-noise {
    z-index: 0;
    opacity: .2;
    mix-blend-mode: overlay;
    background-image: url("Assets/Noise.png");
    background-position: 0 0;
    background-size: 200px;
    display: block;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }
  
  .text-hero {
    text-align: left;
    letter-spacing: -2px;
    text-shadow: 0 5px 10px rgba(0, 87, 255, .15), 0 -5px 10px rgba(255, 90, 0, .1), 0 -5px 25px rgba(255, 255, 255, .3);
    font-family: inter, sans-serif;
    font-size: 74px;
    font-weight: 500;
    line-height: 90%;
  }
  
  .text-hero.info-hero {
    text-align: left;
    letter-spacing: -1px;
    text-shadow: 0 4px 10px rgba(0, 87, 255, .2), 0 -4px 10px rgba(255, 90, 0, .15), 0 0 30px rgba(255, 255, 255, .2);
    font-size: 48px;
    font-weight: 500;
    line-height: 110%;
  }
  
  .text-hero.project-title {
    background-image: linear-gradient(to bottom, var(--on-background) 50%, transparent);
    letter-spacing: -1px;
    text-shadow: 0 5px 15px rgba(0, 87, 255, .2), 0 -5px 15px rgba(255, 90, 0, .15), 0 -5px 25px rgba(255, 255, 255, .25);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 64px;
    line-height: 72px;
  }

  .hero-fade {
    z-index: 5;
    background-image: linear-gradient(to bottom, rgba(16, 16, 16, 0), var(--background) 60%);
    flex-direction: column;
    align-items: center;
    height: 200px;
    padding-top: 48px;
    display: flex;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }
  
  .hero-text-content {
    z-index: 1;
    grid-row-gap: 64px;
    flex-direction: column;
    display: flex;
    position: relative;
  }
  
  .icon-scroll-down {
    opacity: .5;
    width: 50px;
    height: 50px;
    color: #fff;
    display: block;
    animation: moveArrow 2.5s ease-in-out infinite;
  }



  @keyframes moveArrow{
  from{
    transform: translateY(-20px);
    opacity: 0.4;
  }
  50%{
    transform: translateY(20px);
    opacity: 1;
  }
  to{
    transform: translateY(-20px);
    opacity: 0.4;
  }
  }
  
  .icon-location-portrait {
    opacity: .7;
    width: 20px;
  }
  
  .section-projects {
    grid-row-gap: 80px;
    flex-direction: column;
    align-items: center;
    padding-top: 240px;
    padding-bottom: 200px;
    display: flex;
    position: relative;
  }
  
  .container-projects {
    grid-row-gap: 48px;
    flex-direction: column;
    align-items: stretch;
    width: 882px;
    display: flex;
    position: relative;
  }
  
  .section-nav-mobile, .nav-menu-button {
    display: none;
  }

  .lang-menu-button {
    color:#ffff;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background-color: rgba(242, 242, 242, .05);
    border: 1px solid rgba(242, 242, 242, .1);
    border-radius: 16px;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    display: flex;
    transition: all .2s cubic-bezier(.165, .84, .44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, .25);
    cursor: pointer;
  }

  .lang-menu-button:hover {
    background-color: rgba(242, 242, 242, .08);
    border-color: rgba(242, 242, 242, .2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .3);
  }

  .text-lang-toggle{
    width: 28px;
    font-size: 28px;
  }

  .popup-menu-item {
    grid-column-gap: 4px;
    color: var(--on-background);
    border-radius: 10px;
    justify-content: space-between;
    align-self: stretch;
    align-items: center;
    padding: 12px 14px;
    text-decoration: none;
    transition: all .2s cubic-bezier(.165, .84, .44, 1);
    display: flex;
  }

  .popup-menu-item:hover {
    background-color: rgba(242, 242, 242, .05);
  }
  
  .section-banner {
    z-index: 1;
    flex-direction: column;
    align-items: center;
    padding-top: 104px;
    display: flex;
    position: relative;
    overflow: hidden;
  }
  
  .section-banner.stadiabt {
    background-image: radial-gradient(circle farthest-side at 50% 0, rgba(0, 99, 155, .5), rgba(0, 0, 0, 0));
    padding-top: 104px;
  }
  
  .section-banner.thn {
    background-image: radial-gradient(circle farthest-side at 50% 0, rgba(255, 255, 255, .2), rgba(0, 0, 0, 0));
    padding-top: 104px;
  }
  

  
  .container-banner {
    z-index: 3;
    grid-row-gap: 32px;
    flex-direction: column;
    align-items: stretch;
    width: 882px;
    display: flex;
    position: relative;
  }
  
  .project-title-hero-wrapper {
    grid-row-gap: 64px;
    flex-direction: column;
    align-items: center;
    display: flex;
  }
  
  .title-wrapper {
    grid-row-gap: 16px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    display: flex;
  }
  
  .text-projectpage-year {
    opacity: .5;
    color: var(--on-background);
    text-align: center;
    font-family: inter, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 22px;
    text-decoration: none;
  }
  
  .section-back {
    z-index: 9;
    background-image: linear-gradient(rgba(0, 0, 0, .25), rgba(0, 0, 0, 0));
    justify-content: space-between;
    height: 104px;
    padding-left: 48px;
    padding-right: 48px;
    display: flex;
    position: fixed;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: 0%;
  }
  
  .text-button {
    letter-spacing: -.5px;
    font-family: Inter, sans-serif;
    font-size: 16px;
    font-weight: 500;
  }
  
  .text-button.highlights-cta {
    color: var(--background);
    font-weight: 600;
  }
  
  .button-project-back {
    grid-column-gap: 8px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    color: var(--on-background);
    background-color: rgba(242, 242, 242, .15);
    border: 1px solid rgba(242, 242, 242, .04);
    border-radius: 12px;
    align-self: center;
    align-items: center;
    padding: 10px 24px 10px 12px;
    text-decoration: none;
    display: flex;
  }
  
  .button-project-back:hover {
    background-color: rgba(242, 242, 242, .2);
    border-color: white;
  }
  
  .project-overview-noise {
    z-index: 2;
    opacity: .2;
    mix-blend-mode: overlay;
    background-image: url("Assets/Noise.png");
    background-size: 240px;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }
  
  .project-fade {
    z-index: 4;
    background-image: linear-gradient(to bottom, transparent, var(--background));
    height: 540px;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }
  
  .menu-mobile {
    display: none;
  }
  
  .project-banner-image-wrapper {
    align-self: stretch;
  }
  
  .image-project-banner {
    margin-top: 0;
    
  }
  
  .section-overview {
    grid-row-gap: 64px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 104px;
    padding-bottom: 104px;
    display: flex;
    position: static;
  }
  
  .container-overview {
    grid-column-gap: 48px;
    grid-row-gap: 0px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    width: 882px;
    display: grid;
  }
  
  .overview-right {
    grid-row-gap: 40px;
    flex-direction: column;
    align-items: stretch;
    display: flex;
  }
  
  .text-overview-overline {
    letter-spacing: .2px;
    font-family: inter, sans-serif;
    font-weight: 500;
    line-height: 18px;
  }
  
  .overview-left {
    grid-row-gap: 40px;
    flex-direction: column;
    flex: 1;
    align-items: stretch;
    display: flex;
  }
  
  .overview-text-wrapper {
    grid-row-gap: 8px;
    flex-direction: column;
    display: flex;
  }
  
  .overview-text-wrapper.role-right-indent {
    padding-right: 48px;
  }
  
  .text-callout {
    text-align: center;
    letter-spacing: .2px;
    font-family: inter, sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 140%;
  }
  
  .text-callout.card-heading {
    text-align: left;
    font-size: 20px;
  }
  
  .container-highlights {
    grid-row-gap: 48px;
    background-color: rgba(242, 242, 242, .04);
    background-image: radial-gradient(circle closest-corner at 50% 0, rgba(100, 210, 255, .05), rgba(0, 0, 0, 0));
    border-radius: 24px;
    flex-direction: column;
    align-items: center;
    width: 882px;
    padding: 48px 24px 32px;
    display: flex;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .4);
  }
  
  .container-highlights.has-bottom-cta {
    padding-bottom: 48px;
  }
  
  .text-projectpage-overline {
    color: rgba(242, 242, 242, .4);
    text-align: left;
    letter-spacing: 1.5px;
    margin-top: 1px;
    font-family: inter, sans-serif;
    font-size: 11px;
    font-weight: 500;
    line-height: 19px;
  }
  
  .text-projectpage-overline.sidebar {
    font-size: 10px;
    line-height: 18px;
  }
  
  .chip-special-overline {
    grid-column-gap: 8px;
    grid-row-gap: 16px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }
  
  .highlights-text-content {
    grid-row-gap: 24px;
    flex-direction: column;
    align-items: center;
    padding-left: 32px;
    padding-right: 32px;
    display: flex;
  }
  
 
  
  .hero-bg-gradient {
    z-index: 2;
    background-image: linear-gradient(to right, transparent 5%, var(--on-background) 50%, transparent 95%);
    opacity: .7;
    filter: blur(100px);
    border-radius: 2000px;
    height: 50%;
    display: none;
    position: absolute;
    top: 96px;
    bottom: auto;
    left: 24px;
    right: 24px;
  }
  
  .glare-item-top {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 10%, #fff 50%, rgba(0, 0, 0, 0) 90%);
    height: 1px;
    margin-bottom: -1px;
  }
  
  .glare-item-top.outer-edge {
    z-index: 1;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 5%, rgba(255, 255, 255, .8) 35%, #fff 50%, rgba(255, 255, 255, .8) 65%, rgba(0, 0, 0, 0) 95%);
    position: absolute;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: 0%;
  }
  
  .glare-item-top.highlights {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 15%, rgba(100, 210, 255, .5) 50%, rgba(0, 0, 0, 0) 95%);
    position: absolute;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: 0%;
  }
  
  .glare-item-top.challenge {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 5%, rgba(255, 214, 10, .6) 50%, rgba(0, 0, 0, 0) 95%);
    position: absolute;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: 0%;
  }
  
  .glare-item-top.discovery {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 10%, #63e6e2 50%, rgba(0, 0, 0, 0) 85%);
    position: absolute;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: 0%;
  }
  
  .glare-item-top.inner-edge {
    z-index: 1;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 20%, #fff 50%, rgba(0, 0, 0, 0) 80%);
    position: absolute;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: 0%;
  }
  
  .glare-item-top.hero-inner {
    height: 2px;
    margin-bottom: -2px;
  }
  
  .glare-item-top.success {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 10%, #30d158 50%, rgba(0, 0, 0, 0) 90%);
    position: absolute;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: 0%;
  }
  
  .utility-page-wrap {
    grid-row-gap: 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    max-width: 100%;
    height: 100vh;
    max-height: 100%;
    display: flex;
  }
  
  .utility-page-content {
    z-index: 1;
    -webkit-backdrop-filter: blur(50px);
    backdrop-filter: blur(50px);
    text-align: center;
    background-color: rgba(242, 242, 242, .05);
    border: 1px solid rgba(242, 242, 242, .04);
    border-radius: 24px;
    flex-direction: column;
    width: 504px;
    margin-bottom: 0;
    padding: 48px 40px 40px;
    display: flex;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .4);
  }
  
  .utility-page-form {
    grid-row-gap: 32px;
    flex-direction: column;
    align-self: stretch;
    align-items: flex-start;
    display: flex;
  }
  
  .text-field {
    color: var(--on-background);
    background-color: rgba(242, 242, 242, .1);
    border: 1px solid rgba(242, 242, 242, .05);
    border-radius: 10px;
    flex: 1;
    width: 100%;
    padding: 16px;
    font-family: inter, sans-serif;
  }
  
  .submit-button {
    background-color: var(--on-background);
    color: var(--background);
    border-radius: 100px;
    align-self: flex-end;
    padding: 10px 24px;
    font-family: inter, sans-serif;
    font-weight: 600;
  }
  
  .text-form-label {
    opacity: 0;
    letter-spacing: -.5px;
    margin-bottom: 0;
    font-family: Inter, sans-serif;
    font-weight: 500;
  }
  
  .field-wrapper {
    grid-row-gap: 8px;
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }
  
  .field-button-wrapper {
    grid-row-gap: 16px;
    flex-direction: column;
    width: 100%;
    display: flex;
  }
  
  .password-text-wrapper {
    grid-row-gap: 24px;
    flex-direction: column;
    align-self: stretch;
    align-items: center;
    display: flex;
  }
  
  .password-button-row {
    z-index: 1;
    grid-column-gap: 8px;
    justify-content: center;
    align-items: center;
    display: flex;
    position: relative;
  }
  
  .password-header-wrapper {
    grid-row-gap: 24px;
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-self: stretch;
    align-items: center;
    display: flex;
  }
  
  .error-message {
    background-color: rgba(0, 0, 0, 0);
    align-self: center;
    margin-top: 8px;
    padding: 0;
  }
  
  .text-block {
    letter-spacing: -.25px;
    font-family: Inter, sans-serif;
  }
  
  .section-footer {
    border-top: 1px solid rgba(242, 242, 242, .1);
    justify-content: center;
    padding-top: 64px;
    padding-bottom: 32px;
    display: flex;
    position: relative;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }
  
  .container-footer {
    grid-row-gap: 64px;
    flex-direction: column;
    width: 882px;
    display: flex;
  }
  
  .footer-top-wrapper {
    justify-content: space-between;
    display: flex;
  }
  
  .logomark-footer {
    height: 80px;
  }
  
  .footer-links-column {
    grid-row-gap: 16px;
    flex-direction: column;
    align-items: flex-start;
    width: 106px;
    display: flex;
  }

  .footer-links-column-contact {
    grid-row-gap: 16px;
    flex-direction: column;
    align-items: flex-start;
    width: 180px;
    display: flex;
  }
  
  .text-footer-links-overline {
    opacity: .5;
    letter-spacing: 1.5px;
    font-family: inter, sans-serif;
    font-size: 9px;
    font-weight: 500;
    line-height: 13px;
  }
  
  .footer-link {
    grid-column-gap: 8px;
    color: var(--on-background);
    align-self: stretch;
    align-items: center;
    height: 40px;
    text-decoration: none;
    display: flex;
  }

  .footer-link:hover {
    color: #3b82f6;
  }
  
  .text-footer-link {
    letter-spacing: .2px;
    font-family: inter, sans-serif;
    font-size: 16px;
    font-weight: 500;
  }
  
  .footer-links-wrapper {
    grid-row-gap: 10px;
    flex-direction: column;
    align-self: stretch;
    display: flex;
  }
  
  .footer-links-column-wrapper {
    grid-column-gap: 48px;
    display: flex;
  }
  
  .footer-bottom-wrapper {
    grid-column-gap: 48px;
    flex: 1;
    justify-content: space-between;
    align-self: stretch;
    align-items: flex-end;
    display: flex;
  }
  
  .text-footer-copyright {
    letter-spacing: .2px;
    font-family: inter, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
  }
  
  .footer-bottom-left {
    grid-row-gap: 4px;
    flex-direction: column;
    flex: 1;
    align-self: stretch;
    align-items: flex-start;
    display: flex;
  }
  
  .footer-bottom-right {
    flex-direction: column;
    flex: 1;
    justify-content: flex-end;
    align-self: stretch;
    align-items: flex-end;
    display: flex;
  }
  
  .text-last-updated {
    opacity: .5;
    letter-spacing: .2px;
    font-family: inter, sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 20px;
  }
  
  .text-under-copyright {
    opacity: .5;
    letter-spacing: .2px;
    text-transform: none;
    font-family: inter, sans-serif;
  }
  
  .autoplay-video-wrapper {
    object-fit: fill;
    border: 1px solid #1b1b1b;
    border-radius: 16px;
    margin-top: 0;
    margin-bottom: 0;
    overflow: hidden;
  }
  
  .autoplay-video-wrapper.highlight-outline {
    border-color: #252525;
    flex: 1;
    align-self: stretch;
  }
  
  .autoplay-video-wrapper.selected {
    outline-offset: 0px;
    border-style: none;
    outline: 2px solid #30d158;
  }
  
  .video-embed {
    border-radius: 8px;
  }
  
  .section-highlights {
    flex-direction: column;
    align-items: center;
    padding-top: 48px;
    padding-bottom: 120px;
    display: flex;
  }
  
  .container-general {
    grid-row-gap: 96px;
    flex-direction: column;
    width: 882px;
    display: flex;
  }
  
  .section-divider {
    flex-direction: column;
    align-items: center;
    display: flex;
  }
  
  .divider-wrapper {
    grid-column-gap: 8px;
    align-items: center;
    width: 100%;
    display: flex;
  }
  
  .divider-line {
    background-color: rgba(242, 242, 242, .2);
    flex: 1;
    height: 1px;
  }
  
  .section-general {
    background-image: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 120px;
    display: flex;
  }
  
  .section-general.info {
    padding-bottom: 120px;
  }
  
  .text-projectpage-heading {
    letter-spacing: -.1px;
    text-shadow: 0 0 20px rgba(255, 255, 255, .2), 0 -6px 15px rgba(255, 90, 0, .1), 0 5px 15px rgba(0, 87, 255, .25);
    font-family: inter, sans-serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 125%;
  }
  
  .text-projectpage-heading.info-experience {
    font-family: inter, sans-serif;
    font-weight: 500;
  }
  
  .text-projectpage-heading.next-project {
    color: rgba(242, 242, 242, .25);
    text-shadow: none;
  }
  
  .text-projectpage-subheading {
    letter-spacing: .1px;
    flex: 0 auto;
    padding-right: 24px;
    font-family: inter, sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 125%;
  }
  
  
  .text-projectpage-subheading.highlights {
    text-align: center;
    padding-right: 0;
  }
  
  .text-projectpage-body {
    color: rgba(242, 242, 242, .6);
    letter-spacing: .4px;
    flex: 1;
    font-family: inter, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 150%;
  }
  
  .text-projectpage-body.team {
    line-height: 180%;
  }
  
  .text-projectpage-body.info-hero {
    padding-left: 24px;
    padding-right: 24px;
    font-family: inter, sans-serif;
    line-height: 150%;
  }
  
  .text-projectpage-body.highlights {
    text-align: center;
  }
  
  .text-projectpage-body.info {
    letter-spacing: .4px;
  }
  
  .image-default {
    z-index: 1;
    border: 1px solid #252525;
    border-radius: 16px;
    align-self: center;
    position: relative;
  }
  
  .image-default.highlight-outline {
    border-color: #252525;
  }
  
  .image-default.selected {
    outline-offset: 0px;
    border-style: none;
    outline: 2px solid #30d158;
  }
  
  .moneyshots-content {
    grid-row-gap: 80px;
    flex-direction: column;
    align-self: stretch;
    display: flex;
  }
  
  .text-image-caption {
    grid-column-gap: 4px;
    color: rgba(242, 242, 242, .25);
    letter-spacing: .2px;
    align-self: center;
    align-items: baseline;
    font-family: inter, sans-serif;
    font-size: 14px;
    line-height: 20px;
    display: flex;
  }
  
  .media-caption-wrapper {
    grid-row-gap: 8px;
    width: 80%;
    flex-direction: column;
    align-self: center;
    align-items: stretch;
    display: flex;
  }
  
  .caption-wrapper {
    grid-column-gap: 16px;
    width: 50%;
    align-self: flex-start;
    align-items: center;
    padding-left: 16px;
    display: flex;
  }

  .caption-wrapper-legend {
    padding-top: 16px;
    justify-content: flex-end;
    align-self: stretch;
    align-items: center;
    padding-right: 20px;
    display: flex;
  }
  
  .text-medium-type {
    opacity: .4;
    font-family: JetBrains Mono, sans-serif;
    font-size: 10px;
    line-height: 14px;
  }
  
  .chip-medium-type {
    background-color: rgba(242, 242, 242, .05);
    border-radius: 100px;
    justify-content: center;
    align-items: center;
    padding: 4px 10px;
    display: flex;
  }
  
  .text-figure-caption {
    color: rgba(242, 242, 242, .4);
    font-weight: 500;
  }
  
  .text-figure-body {
    color: rgba(242, 242, 242, .9);
    font-weight: 400;
  }
  
  .callout-block {
    grid-row-gap: 24px;
    background-color: rgba(242, 242, 242, .04);
    border: 1px solid rgba(242, 242, 242, .04);
    border-radius: 24px;
    flex-direction: column;
    align-items: center;
    padding: 32px 32px 36px;
    display: flex;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .4);
  }
  
  .callout-block.challenge {
    grid-row-gap: 16px;
    background-image: radial-gradient(circle at 50% 0, rgba(255, 214, 10, .05), rgba(0, 0, 0, 0) 60%);
    border-style: none;
    align-self: stretch;
    padding-top: 36px;
  }
  
  .callout-block.discovery {
    grid-row-gap: 16px;
    background-image: radial-gradient(circle at 50% 0, rgba(99, 230, 226, .05), rgba(0, 0, 0, 0) 60%);
    border-style: none;
    align-self: stretch;
    padding-top: 36px;
  }
  
  .callout-block.success {
    grid-row-gap: 16px;
    background-image: radial-gradient(circle at 50% 0, rgba(48, 209, 88, .05), rgba(0, 0, 0, 0) 60%);
    border-style: none;
    align-self: stretch;
    padding-top: 36px;
  }
  
  .text-highlighted-body {
    color: rgba(242, 242, 242, .9);
    text-shadow: 0 0 10px rgba(242, 242, 242, .4);
    font-weight: 400;
  }
  
  .inline-card {
    grid-row-gap: 24px;
    background-color: var(--background);
    border: 1px solid #252525;
    border-radius: 16px;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    display: flex;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .1);
  }
  
  .icon-points-wrapper {
    grid-row-gap: 24px;
    flex-direction: column;
    align-self: stretch;
    display: flex;
  }
  
  .inline-point-text {
    grid-row-gap: 16px;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 6px;
    display: flex;
  }
  
  .inline-point-text.principles {
    padding-top: 12px;
  }
  
  .double-column-block {
    grid-column-gap: 48px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    align-self: stretch;
    align-items: baseline;
    display: grid;
  }
  
  .double-column-block.pro-con {
    grid-column-gap: 40px;
  }
  
  .double-column-block.pro-con.has-video {
    align-items: start;
  }
  
  .double-column-block.info-experiences {
    align-items: baseline;
  }
  
  .double-column-block.info-hero, .double-column-block.no-text-align {
    align-items: start;
  }
  
  .double-column-block.no-text-align.might-delete {
    display: none;
  }
  
  .section-starting-block {
    grid-row-gap: 80px;
    flex-direction: column;
    align-items: stretch;
    display: flex;
  }
  
  .content-leading {
    grid-row-gap: 16px;
    flex-direction: column;
    display: flex;
  }
  
  .content-trailing {
    grid-row-gap: 48px;
    flex-direction: column;
    display: flex;
  }
  
  .content-trailing.beside-media, .content-trailing.null {
    padding-top: 0;
  }
  
  .content-trailing.has-switch {
    grid-row-gap: 24px;
  }
  
  .associated-content-block {
    grid-row-gap: 72px;
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }
  
  .badge-wrapper {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-wrap: wrap;
    align-self: auto;
    align-items: flex-start;
    display: none;
  }
  
  .contained-points-item {
    grid-row-gap: 24px;
    background-color: rgba(242, 242, 242, .04);
    border-radius: 24px;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 24px 28px;
    display: flex;
  }
  
  .contained-points-item.top-radius {
    border-radius: 24px 24px 6px 6px;
    align-items: stretch;
    padding-top: 26px;
    padding-bottom: 24px;
  }
  
  .contained-points-item.bottom-radius {
    border-radius: 6px 6px 24px 24px;
    align-items: stretch;
    padding-bottom: 26px;
  }
  
  .contained-points-item.middle-radius {
    border-radius: 6px;
    align-items: stretch;
    padding-bottom: 24px;
  }
  
  .contained-point-wrapper {
    grid-column-gap: 16px;
    align-items: flex-start;
    display: flex;
  }
  
  .icon-highlightreel {
    width: 40px;
  }
  
  .icon-inline-points {
    width: 32px;
    height: 32px;
  }
  
  .icon-callout {
    width: 40px;
  }
  
  .icon-principles-points {
    width: 32px;
  }
  
  .icon-principles-points.badge {
    width: auto;
    height: 40px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
  }
  
  .icon-contained-point {
    width: 24px;
  }
  
  .icon-contained-point.reduced-opacity {
    opacity: .4;
  }


  .icon-shelf{
    display: grid;
    max-height: 60%;
    min-height: fit-content;
    padding: 16px 8px 16px 8px;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 18px;
  }

  .icon-container{
    display: flex;
    align-items: center;
    flex-direction: column;

  }

  .icon-text{
    display: flex;
    flex-direction: row;
    align-items: center;
    padding-top: 14px;
  }
  



  .media-analysis-stack {
    grid-row-gap: 32px;
    flex-direction: column;
    display: flex;
  }
  
  .pro-con-block {
    grid-row-gap: 16px;
    flex-direction: column;
    display: flex;
  }
  
  .media-switch-block {
    grid-row-gap: 12px;
    flex-direction: column;
    align-self: stretch;
    display: flex;
    position: relative;
  }
  
  .image-switched {
    border: 1px solid #252525;
    border-radius: 16px;
    width: 100%;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }
  
  .image-switched.selected {
    outline-offset: 0px;
    border-style: none;
    outline: 2px solid #30d158;
  }
  
  .image-switch-wrapper {
    flex: 1;
    align-self: stretch;
    position: relative;
  }
  
  .text-media-switch {
    letter-spacing: .2px;
    font-family: inter, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
  }
  
  .switch-handle {
    background-color: var(--on-background);
    border-radius: 100px;
    width: 24px;
    height: 24px;
    position: absolute;
  }
  
  .switch-track {
    background-color: rgba(242, 242, 242, .05);
    border: 1px solid rgba(242, 242, 242, .1);
    border-radius: 100px;
    align-items: center;
    width: 52px;
    height: 32px;
    padding-left: 4px;
    transition: all .2s;
    display: flex;
    position: relative;
  }
  
  .switch-track:hover {
    border-color: rgba(242, 242, 242, .2);
    box-shadow: 0 0 12px rgba(255, 255, 255, .2);
  }
  
  .switch-wrapper {
    grid-column-gap: 12px;
    background-color: rgba(242, 242, 242, .05);
    border-radius: 100px;
    flex-direction: row;
    justify-content: flex-end;
    align-self: flex-end;
    align-items: center;
    padding: 10px 10px 10px 20px;
    display: flex;
  }
  
  .switch-wrapper.above-points {
    align-self: flex-start;
  }
  
  .window-grain {
    z-index: 0;
    opacity: .50;
    mix-blend-mode: overlay;
    background-image: url(Assets/Noise.png);
    background-position: 0 0;
    background-size: 600px;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }
  
  .overline-heading-block {
    grid-row-gap: 32px;
    flex-direction: column;
    align-self: stretch;
    display: flex;
  }
  
  .logo-block {
    grid-column-gap: 12px;
    display: flex;
  }
  
  .chip-socials-wrapper {
    grid-column-gap: 8px;
    align-items: center;
    display: flex;
  }
  
  .contained-points-block {
    grid-row-gap: 4px;
    flex-direction: column;
    display: flex;
  }
  
  .sidebar-content {
    z-index: 8;
    grid-row-gap: 24px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 32px;
    display: none;
    position: fixed;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: auto;
  }
  
  .project-card-outline {
    outline-offset: -1px;
    background-color: rgba(242, 242, 242, .04);
    border-radius: 42px;
    outline: 1px solid rgba(242, 242, 242, .05);
    align-self: stretch;
    padding: 8px;
    position: relative;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .5);
  }
  
  .project-card {
    grid-row-gap: 200px;
    background-image: linear-gradient(190deg, #252525, var(--background));
    color: var(--on-background);
    border: 1px solid #3d3d3d;
    border-radius: 36px;
    flex-direction: column;
    height: 550px;
    grid-row-gap: 30px;
    padding-top: 32px;
    padding-left: 28px;
    padding-right: 28px;
    text-decoration: none;
    transition: border .4s cubic-bezier(.165, .84, .44, 1);
    display: flex;
    position: relative;
    overflow: hidden;
  }
  
  .project-card:hover {
    border-color: #888;
  }

  .project-card.ink-desk:hover {
    background-image: radial-gradient(circle at 50% 0, rgba(127, 207, 255, .2), rgba(0, 0, 0, 0) 80%), radial-gradient(circle at 50% 0, #035, rgba(0, 0, 0, 0));
  }
  .project-card.blender:hover {
    background-image: radial-gradient(circle at 50% 0, rgba(117, 74, 0, 0.2), rgba(0, 0, 0, 0) 80%), radial-gradient(circle at 50% 0, rgb(95, 61, 0), rgba(0, 0, 0, 0));
  }
  .project-card.ink2:hover {
    background-image: radial-gradient(circle at 50% 0, rgba(0, 78, 126, 0.2), rgba(0, 0, 0, 0) 80%), radial-gradient(circle at 50% 0, rgb(0, 54, 95), rgba(0, 0, 0, 0));
  }
  
  .text-projectcard-title {
    letter-spacing: 0;
    text-shadow: 0 -2px 10px rgba(255, 255, 255, .2);
    justify-content: space-between;
    font-family: inter, sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 100%;
    display: flex;
  }
  
  .text-projectcard-description {
    color: rgba(242, 242, 242, .5);
    letter-spacing: .2px;
    align-self: stretch;
    padding-right: 32px;
    font-family: inter, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
  }
  
  .projectcard-top {
    z-index: 1;
    grid-row-gap: 18px;
    flex-direction: column;
    align-items: flex-start;
    display: flex;
    position: relative;
  }
  
  .projectcard-title-row {
    justify-content: space-between;
    align-self: stretch;
    align-items: center;
    display: flex;
  }
  
  .project-thumbnail {
    border-radius: 13px;
    border: 1.5px solid #616161;
    box-shadow: 0 40px 50px 10px rgba(40, 40, 40, 0.5);
    z-index: 1;
    align-self: center;
    max-width: 100%;
    position: relative;
  }
  
  .text-projectcard-description-company {
    color: rgba(242, 242, 242, .8);
    font-weight: 500;
  }
  
  .icon-projectcard-arrow {
    height: 32px;
}


  .locomotive-scroll {
    position: relative;
  }
  
  .section-info-hero {
    background-image: radial-gradient(circle farthest-side at 50% 0, rgba(242, 242, 242, .15), rgba(0, 0, 0, 0));
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 168px;
    padding-bottom: 120px;
    display: flex;
    position: relative;
  }
  
  .section-info-hero.mobile {
    display: none;
  }
  
  .section-info-hero.desktop {
    background-image: radial-gradient(circle closest-corner at 50% 0, rgba(242, 242, 242, .15), rgba(0, 0, 0, 0));
    padding-top: 172px;
  }
  
  .container-info {
    z-index: 1;
    grid-row-gap: 80px;
    flex-direction: column;
    width: 882px;
    display: flex;
    position: relative;
  }
  
  .container-info.info-content {
    grid-row-gap: 56px;
  }
  
  .container-info.hero {
    grid-row-gap: 80px;
  }
  
  .info-signature {
    margin-top: 20px;
    width: 200px;
  }
  
  .text-body-info-emphasis {
    color: rgba(242, 242, 242, .9);
    font-size: 18px;
    font-weight: 500;
  }
  
  .text-info-meta {
    color: rgba(242, 242, 242, .4);
    font-family: inter, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 125%;
  }
  
  .text-info-meta.friends {
    letter-spacing: .5px;
    font-weight: 300;
  }
  
  .experience-title-date {
    grid-row-gap: 8px;
    flex-direction: column;
    display: flex;
  }
  
  .experience-block {
    grid-row-gap: 20px;
    flex-direction: column;
    display: flex;
  }
  
  .section-mobile-nav {
    display: none;
  }
  
  .info-content-wrapper {
    grid-row-gap: 64px;
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }
  
  .project-name-role {
    grid-row-gap: 6px;
    flex-direction: column;
    display: flex;
    margin-top: auto;
  }
  


  .project-block {
    grid-row-gap: 8px;
    flex-direction: column;
    align-items: flex-start;
    border: 1px solid rgba(242, 242, 242, .1);
    padding: 16px;
    border-radius: 14px;
    display: flex;
    cursor: pointer;
    text-decoration: none;
    color: white;
  }

  .project-block-first {

    flex-direction: column;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.23);
    padding: 16px;
    border-radius: 14px;
    display: flex;
    cursor: pointer;
    text-decoration: none;
    color: white;
    height: 100%;
  }

  .first {
    background-color: rgba(255, 255, 255, 0.286);

  }

  .turing{
    border: 2px solid rgba(136, 105, 12, 0.528);
  }


  .project-block:hover {
    border-color: #888;
    cursor: pointer;
  }


  .project-portfolio-link {
    grid-column-gap: 4px;
    opacity: .6;
    flex-direction: row;
    align-items: center;
    padding-top: 4px;
    padding-bottom: 4px;
    text-decoration: none;
    transition: opacity .4s cubic-bezier(.165, .84, .44, 1);
    display: flex;
  }
  
  .project-portfolio-link:hover {
    opacity: 1;
  }
  
  .text-project-portfolio {
    color: var(--on-background);
    letter-spacing: .2px;
    font-family: inter, sans-serif;
    font-size: 14px;
    line-height: 125%;
    text-decoration: none;
  }

  .icon-project-portfolio {
    width: 20px;
  }
  
  .projects-grid {
    grid-column-gap: 16px;
    grid-row-gap: 36px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }
  
  .media-analysis-block {
    grid-row-gap: 32px;
    flex-direction: column;
    display: flex;
  }
  
  .project-card-colour {
    z-index: 0;
    opacity: 0;
    background-image: linear-gradient(rgb(139, 163, 179), rgba(0, 0, 0, 0));
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }


  .text-loading {
    text-align: center;
    letter-spacing: .2px;
    font-family: inter, sans-serif;
  }
  
  .logo-loading {
    height: 40px;
  }
  
  .mobile-popup-menu {
    display: none;
  }

  .lang-popup-menu {
    z-index: 10;
    grid-row-gap: 4px;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    background-color: rgba(242, 242, 242, .05);
    border: 1px solid rgba(242, 242, 242, .1);
    border-radius: 16px;
    flex-direction: column;
    align-items: flex-start;
    width: 160px;
    padding: 8px;
    display: none;
    position: fixed;
    top: 88px;
    bottom: auto;
    left: auto;
    right: 74px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
  }
  
  .icon-back-to-home {
    width: 20px;
  }
  
  .text-inline-meta {
    color: rgba(242, 242, 242, .2);
    letter-spacing: 1px;
    font-family: JetBrains Mono, sans-serif;
    font-size: 12px;
    line-height: 16px;
    display: none;
  }
  
  .inline-card-top {
    justify-content: space-between;
    align-self: stretch;
    align-items: flex-start;
    display: flex;
  }
  
  .icon-section-dot {
    background-color: var(--on-background);
    border-radius: 50%;
    width: 10px;
    height: 10px;
    box-shadow: 0 0 20px #3C91E6;
  }
  
  .overline-wrapper {
    grid-column-gap: 12px;
    align-self: flex-start;
    align-items: center;
    display: flex;
  }
  
  .text-thn-playtest-opacity {
    color: rgba(242, 242, 242, .4);
  }
  
  .icon-windowbar-plus {
    opacity: .2;
    width: 24px;
  }
  
  .section-hero-portrait, .text-portrait-overline {
    display: none;
  }
  
  
  .text-info-hero-serif {
    background-image: linear-gradient(to bottom, var(--on-background) 50%, rgba(242, 242, 242, .2));
    letter-spacing: -1px;
    text-shadow: 0 4px 6px rgba(0, 87, 255, .15), 0 -4px 6px rgba(255, 90, 0, .1), 0 0 20px rgba(255, 255, 255, .25);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-family: Gloock, sans-serif;
    font-style: italic;
  }
  
  .overline-info-wrapper {
    grid-row-gap: 24px;
    flex-direction: column;
    display: flex;
  }
  
  .project-title-date-wrapper {
    grid-row-gap: 16px;
    flex-direction: column;
    align-items: center;
    display: flex;
    text-decoration: none;
    color: white;
  }
  
  .highlights-divider {
    background-color: rgba(242, 242, 242, .1);
    width: 100%;
    height: 1px;
  }
  
  .highlights-bottom-cta-block {
    grid-row-gap: 32px;
    flex-direction: column;
    align-items: center;
    padding-bottom: 8px;
    padding-left: 16px;
    padding-right: 16px;
    display: flex;
  }
  
  .button-highlights-cta {
    grid-column-gap: 8px;
    background-color: var(--on-background);
    border-radius: 100px;
    align-items: center;
    padding: 16px 18px 16px 24px;
    text-decoration: none;
    display: flex;
  }
  
  .bottom-cta-top-text {
    grid-row-gap: 8px;
    flex-direction: column;
    align-items: center;
    display: flex;
  }
  
  .icon-open-dark {
    width: 20px;
  }
  
  .highlights-content {
    grid-row-gap: 40px;
    flex-direction: column;
    display: flex;
  }
  
  .section-next-project {
    flex-direction: column;
    align-items: center;
    padding-top: 120px;
    display: flex;
    position: relative;
    overflow: hidden;
  }
  
  .container-next-project {
    z-index: 1;
    grid-row-gap: 48px;
    flex-direction: column;
    align-items: flex-start;
    width: 882px;
    display: flex;
    position: relative;
  }
  
  .next-project-fade {
    z-index: 2;
    background-image: linear-gradient(to bottom, transparent, var(--background) 90%);
    height: 10%;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }
  
  .sidebar-structure{
    position: fixed;
    z-index: 10;
    top: 15%;
    right: 1%;
    width: 200px; 
  }
  
  .chapter {
    opacity: .25;
    color: white;
    letter-spacing: .4px;
    align-self: stretch;
    padding-top: px;
    padding-bottom: 4px;
    font-family: inter, sans-serif;
    font-size: 12px;
    font-weight: 300;
    line-height: 38px;
    transition: all .2s linear;
    text-decoration: none;
  }

  .chapter:hover {
    opacity: .6;
    color: #3b82f6;
  }


  .content-info-hero {
    grid-row-gap: 64px;
    flex-direction: column;
    display: flex;
  }
  
  .content-info-hero.has-offset {
    padding-top: 48px;
  }
  
  .signature-wrapper {
    padding-left: 24px;
    padding-right: 24px;
  }
  
  .info-hero-ending-wrapper {
    grid-row-gap: 8px;
    flex-direction: column;
    display: flex;
  }
  
  .thn-audit-stack {
    grid-row-gap: 72px;
    flex-direction: column;
    display: flex;
  }
  
  .shine-wrapper {
    grid-column-gap: 24px;
    opacity: .15;
    filter: blur(12px);
    height: 200%;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
    transform: rotate(15deg);
  }
  
  .shine-big {
    background-color: #fff;
    width: 64px;
  }
  
  .shine-small {
    background-color: #fff;
    width: 16px;
  }
  
  .hero-about-grid {
    grid-column-gap: 24px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }
  
  .text-hero-about {
    flex-direction: column;
    font-family: inter, sans-serif;
    font-size: 16px;
    font-weight: 500;
    line-height: 140%;
    display: flex;
  }
  
  .text-hero-about-formerly {
    color: rgba(242, 242, 242, .5);
    font-weight: 400;
  }
  
   .about-link{
        text-decoration: none;
        margin-right: 16px;
        color: rgba(242, 242, 242, .8);
        height: 30px;
        width:30px;
    }
    
    .about-link:hover{
        color: #3b82f6;
    }
  
   
  
  @media screen and (min-width: 1280px) {
    .section-hero {
      padding-left: 0;
      padding-right: 0;
    }
  
    .section-banner.spotlight, .section-banner.rbc {
      padding-top: 104px;
    }
  
    .chapter {
      opacity: .25;
      color: white;
      letter-spacing: .4px;
      align-self: stretch;
      padding-top: px;
      padding-bottom: 4px;
      font-family: inter, sans-serif;
      font-size: 12px;
      font-weight: 300;
      line-height: 38px;
      transition: all .2s linear;
      text-decoration: none;
    }
  
    .chapter:hover {
      opacity: .6;
      color: #3b82f6;
    }

  
    .sidebar-chapters-wrapper {
      grid-row-gap: 12px;
      align-self: flex-start;
      align-items: flex-start;
      position: relative;
    }
  
    .text-projectpage-overline.callout {
      line-height: 18px;
    }
  
    .image-switched {
      border-radius: 16px;
    }
  
    .sidebar-content {
      grid-row-gap: 16px;
      flex-direction: column;
      padding-left: 0;
      display: flex;
      position: relative;
    }
  }
  
  @media screen and (min-width: 1440px) {
    .container-hero-image {
      width: 1044px;
    }
  
    .window-outline {
      border-radius: 24px;
      padding: 8px;
    }
  
    .window-content {
      grid-column-gap: 64px;
      grid-row-gap: 0px;
      padding: 96px 72px 200px;
    }
  
    .text-hero {
      letter-spacing: -2.2px;
      font-size: 96px;
    }
  
    .text-hero.info-hero {
      font-size: 56px;
      line-height: 56px;
    }
  
    .text-hero.project-title {
      font-size: 72px;
      line-height: 80px;
    }
  
    .hero-fade {
      padding-top: 64px;
    }
  
    .hero-text-content {
      grid-row-gap: 72px;
    }
  
    .icon-scroll-down {
      font-size: 48px;
    }
  
    .icon-location-portrait {
      width: 22px;
    }
  
    .container-projects {
      width: 1044px;
    }
  
    .section-banner.stadiabt, .section-banner.spotlight, .section-banner.thn, .section-banner.rbc {
      padding-top: 120px;
    }
  
    .container-banner {
      width: 1044px;
    }
  
    .title-wrapper {
      grid-row-gap: 32px;
    }
  
    .section-back {
      height: 120px;
    }
  
    .container-overview {
      grid-column-gap: 56px;
      width: 1044px;
    }
  
    .text-callout {
      font-size: 28px;
    }
  
    .container-highlights {
      background-image: radial-gradient(circle farthest-side at 50% 0, rgba(100, 210, 255, .05), rgba(0, 0, 0, 0) 12%);
      width: 1044px;
      padding-left: 24px;
      padding-right: 24px;
    }
  
    .container-highlights.has-bottom-cta {
      padding-bottom: 56px;
    }
  
    .hero-bg-gradient {
      left: 48px;
      right: 48px;
    }
  
    .container-footer {
      width: 1044px;
    }
  
    .container-general {
      grid-row-gap: 120px;
      width: 1044px;
    }
  
    .text-projectpage-body {
      padding-right: 24px;
    }
  
    .text-projectpage-body.subpoint {
      padding-right: 0;
    }
  
    .text-projectpage-body.info-hero {
      padding-left: 32px;
      padding-right: 32px;
      font-size: 18px;
    }
  
    .text-projectpage-body.info {
      font-size: 18px;
    }
  
    .text-projectpage-body.no-end-padding {
      padding-right: 0;
    }
  
    .media-caption-wrapper {
      grid-row-gap: 12px;
    }
  
    .callout-block {
      grid-row-gap: 24px;
      padding: 32px 40px 40px;
    }
  
    .callout-block.challenge {
      grid-row-gap: 24px;
      background-image: radial-gradient(circle at 50% 0, rgba(255, 214, 10, .05), rgba(0, 0, 0, 0) 70%);
      padding-top: 44px;
      padding-bottom: 44px;
    }
  
    .callout-block.discovery {
      grid-row-gap: 24px;
      background-image: radial-gradient(circle at 50% 0, rgba(99, 230, 226, .05), rgba(0, 0, 0, 0) 70%);
      padding-top: 44px;
      padding-bottom: 44px;
    }
  
    .callout-block.success {
      grid-row-gap: 24px;
      background-image: radial-gradient(circle at 50% 0, rgba(48, 209, 88, .05), rgba(0, 0, 0, 0) 70%);
      padding-top: 44px;
      padding-bottom: 44px;
    }
  
    .double-column-block {
      grid-column-gap: 56px;
    }
  
    .double-column-block.pro-con {
      grid-column-gap: 48px;
    }
  
    .content-trailing.has-switch {
      grid-row-gap: 40px;
    }
  
    .associated-content-block {
      grid-row-gap: 80px;
    }
  
    .contained-points-item {
      padding: 24px 28px 30px;
    }
  
    .contained-point-wrapper {
      grid-column-gap: 16px;
    }
  
    .project-card {
      grid-row-gap: 64px;
      height: 680px;
      padding-top: 36px;
      padding-left: 32px;
      padding-right: 32px;
    }
  
    .text-projectcard-description {
      font-size: 16px;
    }
  
    .section-info-hero.desktop {
      padding-top: 180px;
    }
  
    .container-info {
      width: 1044px;
    }
  
    .container-info.hero {
      grid-row-gap: 88px;
    }
  
    .text-body-info-emphasis {
      font-size: 20px;
    }
  
    .text-info-meta {
      font-size: 18px;
    }
  
    .experience-block {
      grid-row-gap: 24px;
    }
  
    .info-content-wrapper {
      grid-row-gap: 72px;
    }
  
    .text-friend-portfolio {
      font-size: 18px;
    }
  
    .projects-grid {
      grid-row-gap: 80px;
    }
  
    .media-analysis-block {
      grid-row-gap: 40px;
    }
  
    .project-title-date-wrapper {
      grid-row-gap: 16px;
    }
  
    .container-next-project {
      width: 1044px;
    }
  
    .content-info-hero {
      grid-row-gap: 64px;
    }
  
    .signature-wrapper {
      padding-left: 32px;
      padding-right: 32px;
    }
  
    .thn-audit-stack {
      grid-row-gap: 80px;
    }
  
    .shine-wrapper {
      grid-column-gap: 40px;
    }
  
    .shine-big {
      width: 96px;
    }
  
    .shine-small {
      width: 40px;
    }
  
    .hero-about-grid {
      grid-column-gap: 48px;
    }
  
    .text-hero-about {
      font-size: 22px;
    }
  }
  
  @media screen and (min-width: 1920px) {
    .section-nav {
      background-image: linear-gradient(rgba(0, 0, 0, .7), rgba(16, 16, 16, 0));
      height: 200px;
      padding-top: 32px;
    }
  
    .nav-left-wrapper {
      grid-column-gap: 16px;
    }
  
    .logomark {
      height: 56px;
    }
  
    .text-logo {
      font-size: 22px;
      line-height: 22px;
    }
  
    .logo-text {
      grid-row-gap: 8px;
    }
  
    .text-underlogo {
      font-size: 14px;
      line-height: 18px;
    }
  
    .chip-socials {
      padding-left: 16px;
      padding-right: 12px;
    }
  
    .text-socialnav {
      font-size: 16px;
      line-height: 20px;
    }
  
    .section-hero {
      padding-top: 200px;
      padding-bottom: 0;
    }
  
    .container-hero-image {
      width: 1440px;
    }
  
    .window-outline {
      border-width: 1px;
      border-radius: 36px;
      padding: 12px;
      box-shadow: inset 0 0 10px rgba(0, 0, 0, .3), 0 0 60px rgba(0, 0, 0, .3), 0 60px 180px #000;
    }
  
    .window-main {
      border-radius: 24px;
      box-shadow: inset 0 0 15px rgba(0, 0, 0, .1), 0 0 20px rgba(0, 0, 0, .3);
    }
  
    .window-bar {
      height: 56px;
      padding-left: 28px;
      padding-right: 16px;
    }
  
    .window-content {
      -webkit-backdrop-filter: none;
      backdrop-filter: none;
      flex-direction: column;
      padding: 120px 88px 280px;
    }
  
    .text-hero {
      letter-spacing: -3px;
      text-shadow: 0 5px 20px rgba(0, 87, 255, .2), 0 -5px 15px rgba(255, 90, 0, .15), 0 0 30px rgba(255, 255, 255, .3);
      font-size: 132px;
    }
  
    .text-hero.info-hero {
      letter-spacing: -1.5px;
      text-shadow: 0 8px 20px rgba(0, 87, 255, .2), 0 -6px 20px rgba(255, 90, 0, .1), 0 0 30px rgba(255, 255, 255, .2);
      font-size: 80px;
      line-height: 80px;
    }
  
    .text-hero.project-title {
      letter-spacing: -1px;
      font-size: 80px;
      line-height: 88px;
    }
  
    .hero-fade {
      align-items: center;
      height: 280px;
      padding-top: 96px;
      display: flex;
    }
  
    .hero-text-content {
      grid-row-gap: 96px;
      grid-template-rows: auto;
      grid-template-columns: 720px 1fr;
      grid-auto-columns: 1fr;
    }
  
    .scroll-wrapper {
      grid-column-gap: 16px;
      align-items: center;
    }
  
    .icon-location-portrait {
      width: 24px;
    }
  
    .section-projects {
      padding-top: 64px;
    }
  
    .container-projects {
      grid-row-gap: 80px;
      width: 1440px;
    }
  
    .section-banner {
      padding-top: 136px;
    }
  
    .section-banner.stadiabt, .section-banner.spotlight, .section-banner.thn, .section-banner.rbc {
      padding-top: 144px;
    }
  
    .container-banner {
      width: 1440px;
    }
  
    .project-title-hero-wrapper {
      grid-row-gap: 72px;
    }
  
    .title-wrapper {
      grid-row-gap: 24px;
    }
  
    .text-projectpage-year {
      letter-spacing: .2px;
      font-size: 20px;
      line-height: 24px;
    }
  
    .section-back {
      height: 144px;
    }
  
    .text-button.highlights-cta {
      font-size: 18px;
      line-height: 22px;
    }

  
    .chapter {
      font-size: 12px;
      line-height: 40px;
    }
  
    .sidebar-chapters-wrapper {
      grid-row-gap: 16px;
    }
  
    .section-overview {
      grid-row-gap: 96px;
      padding-top: 144px;
      padding-bottom: 144px;
    }
  
    .container-overview {
      grid-column-gap: 72px;
      width: 1440px;
    }
  
    .overview-right {
      grid-row-gap: 48px;
    }
  
    .text-overview-overline {
      font-size: 18px;
      line-height: 24px;
    }
  
    .overview-left {
      grid-row-gap: 48px;
    }
  
    .overview-text-wrapper {
      grid-row-gap: 16px;
    }
  
    .text-callout {
      font-size: 40px;
    }
  
    .text-callout.card-heading {
      font-size: 24px;
    }
  
    .container-highlights {
      grid-row-gap: 72px;
      background-image: radial-gradient(circle farthest-side at 50% 0, rgba(100, 210, 255, .05), rgba(0, 0, 0, 0) 15%);
      border-radius: 32px;
      width: 1440px;
      padding: 64px 32px 48px;
    }
  
    .container-highlights.has-bottom-cta {
      padding-bottom: 72px;
    }
  
    .text-projectpage-overline {
      letter-spacing: 2px;
      font-size: 14px;
      line-height: 18px;
    }
  
    .text-projectpage-overline.callout {
      font-size: 12px;
      line-height: 16px;
    }
  
    .chip-special-overline {
      grid-row-gap: 24px;
    }
  
    .highlights-text-content {
      grid-row-gap: 32px;
      align-items: stretch;
      padding-left: 48px;
      padding-right: 48px;
    }
  
    .hero-bg-gradient {
      filter: blur(140px);
      border-radius: 3000px;
      height: 60%;
      top: 144px;
      left: 80px;
      right: 80px;
    }
  
    .section-footer {
      padding-top: 96px;
      padding-bottom: 32px;
    }
  
    .container-footer {
      grid-row-gap: 80px;
      width: 1440px;
    }
  
    .logomark-footer {
      height: 64px;
    }
  
    .text-footer-links-overline {
      font-size: 11px;
      line-height: 15px;
    }
  
    .text-footer-link {
      font-size: 18px;
      line-height: 24px;
    }
  
    .text-footer-copyright {
      font-size: 18px;
      line-height: 26px;
    }
  
    .text-last-updated {
      font-size: 14px;
      line-height: 22px;
    }
  
    .text-under-copyright {
      font-size: 16px;
      line-height: 24px;
    }
  
    .section-highlights {
      padding-bottom: 160px;
    }
  
    .container-general {
      grid-row-gap: 144px;
      width: 1440px;
    }
  
    .section-general {
      padding-top: 160px;
      padding-bottom: 160px;
    }
  
    .section-general.info {
      padding-top: 112px;
      padding-bottom: 168px;
    }
  
    .text-projectpage-heading {
      font-size: 56px;
      line-height: 62px;
    }
  
    .text-projectpage-heading.info-experience {
      font-size: 48px;
    }
  
    .text-projectpage-subheading {
      font-size: 32px;
      line-height: 38px;
    }
  
    .text-projectpage-subheading.info {
      font-size: 28px;
    }
  
    .text-projectpage-body {
      padding-right: 40px;
      font-size: 18px;
    }
  
    .text-projectpage-body.subpoint {
      padding-right: 0;
    }
  
    .text-projectpage-body.info-hero {
      padding-left: 48px;
      padding-right: 48px;
      font-size: 20px;
      line-height: 160%;
    }
  
    .text-projectpage-body.info {
      font-size: 20px;
    }
  
    .text-projectpage-body.no-end-padding {
      padding-right: 0;
    }
  
    .image-default {
      border-radius: 24px;
    }
  
    .moneyshots-content {
      grid-row-gap: 56px;
    }
  
    .text-image-caption {
      grid-column-gap: 6px;
      font-size: 14px;
      line-height: 18px;
    }
  
    .media-caption-wrapper {
      grid-row-gap: 16px;
    }
  
    .caption-wrapper {
      padding-left: 16px;
    }
  
    .text-medium-type {
      font-size: 12px;
      line-height: 16px;
    }
  
    .chip-medium-type {
      padding: 6px 12px;
    }
  
    .callout-block {
      grid-row-gap: 40px;
      border-radius: 32px;
      padding: 40px 48px 56px;
    }
  
    .callout-block.challenge {
      grid-row-gap: 32px;
      background-image: radial-gradient(circle at 50% 0, rgba(255, 214, 10, .05), rgba(0, 0, 0, 0) 80%);
      padding-top: 52px;
      padding-bottom: 52px;
    }
  
    .callout-block.discovery {
      grid-row-gap: 32px;
      background-image: radial-gradient(circle at 50% 0, rgba(99, 230, 226, .05), rgba(0, 0, 0, 0) 80%);
      padding-top: 52px;
      padding-bottom: 52px;
    }
  
    .callout-block.success {
      grid-row-gap: 32px;
      background-image: radial-gradient(circle at 50% 0, rgba(48, 209, 88, .05), rgba(0, 0, 0, 0) 80%);
      padding-top: 52px;
      padding-bottom: 52px;
    }
  
    .inline-card {
      grid-row-gap: 28px;
      border-radius: 24px;
      padding: 32px;
    }
  
    .icon-points-wrapper {
      grid-row-gap: 24px;
    }
  
    .inline-point-text {
      grid-row-gap: 12px;
    }
  
    .double-column-block {
      grid-column-gap: 72px;
    }
  
    .double-column-block.pro-con {
      grid-column-gap: 64px;
    }
  
    .section-starting-block {
      grid-row-gap: 120px;
    }
  
    .content-trailing {
      grid-row-gap: 64px;
    }
  
    .content-trailing.has-switch {
      grid-row-gap: 48px;
    }
  
    .associated-content-block {
      grid-row-gap: 128px;
    }
  
    .badge-wrapper {
      grid-column-gap: 12px;
      grid-row-gap: 12px;
    }
  
    .contained-points-item {
      grid-row-gap: 32px;
      padding: 32px;
    }
  
    .contained-points-item.top-radius {
      padding-top: 30px;
      padding-bottom: 28px;
    }
  
    .contained-points-item.bottom-radius {
      padding-top: 28px;
      padding-bottom: 30px;
    }
  
    .contained-points-item.middle-radius {
      padding-top: 28px;
      padding-bottom: 28px;
    }
  
    .contained-point-wrapper {
      grid-column-gap: 24px;
    }
  
    .icon-highlightreel {
      width: 56px;
    }
  
    .icon-inline-points {
      width: 36px;
      height: 36px;
    }
  
    .icon-callout {
      width: 56px;
    }
  
    .icon-principles-points {
      width: 36px;
    }
  
    .icon-contained-point {
      width: 32px;
      margin-top: -2px;
    }
  
    .media-analysis-stack {
      grid-row-gap: 48px;
    }
  
    .pro-con-block {
      grid-row-gap: 24px;
    }
  
    .media-switch-block {
      grid-row-gap: 16px;
    }
  
    .image-switched {
      border-radius: 24px;
    }
  
    .text-media-switch {
      font-size: 18px;
    }
  
    .switch-wrapper {
      grid-column-gap: 12px;
      padding: 16px 16px 16px 28px;
    }
  
    .overline-heading-block {
      grid-row-gap: 48px;
    }
  
    .logo-block {
      grid-column-gap: 16px;
      align-items: center;
    }
  
    .sidebar-content {
      grid-row-gap: 24px;
    }
  
    .project-card-outline {
      border-radius: 36px;
      padding: 12px;
    }
  
    .project-card {
      grid-row-gap: 88px;
      border-radius: 24px;
      height: 920px;
      padding-top: 44px;
      padding-left: 44px;
      padding-right: 44px;
    }
  
    .text-projectcard-title {
      font-size: 32px;
    }
  
    .text-projectcard-description {
      font-size: 18px;
      line-height: 26px;
    }
  
    .projectcard-top {
      grid-row-gap: 12px;
    }
  
    .icon-projectcard-arrow {
      height: 48px;
    }
  
    .section-info-hero {
      padding-top: 240px;
      padding-bottom: 160px;
    }
  
    .section-info-hero.desktop {
      padding-top: 220px;
    }
  
    .container-info {
      grid-row-gap: 144px;
      width: 1440px;
    }
  
    .container-info.info-content {
      grid-row-gap: 64px;
      width: 1440px;
    }
  
    .container-info.hero {
      grid-row-gap: 120px;
      width: 1440px;
    }
  
    .info-signature {
      width: 280px;
    }
  
    .text-body-info-emphasis {
      font-size: 24px;
      line-height: 125%;
    }
  
    .text-info-meta {
      font-size: 20px;
    }
  
    .experience-title-date {
      grid-row-gap: 10px;
    }
  
    .info-content-wrapper {
      grid-row-gap: 80px;
    }
  
    .friend-name-role {
      grid-row-gap: 12px;
    }
  
    .friend-block {
      grid-row-gap: 16px;
    }
  
    .text-friend-portfolio {
      font-size: 20px;
    }
  
    .projects-grid {
      grid-column-gap: 64px;
      grid-row-gap: 88px;
    }
  
    .media-analysis-block {
      grid-row-gap: 48px;
    }
  
    .text-inline-meta {
      font-size: 14px;
      line-height: 18px;
    }
  
    .icon-section-dot {
      width: 12px;
      height: 12px;
    }
  
    .overline-wrapper {
      grid-column-gap: 16px;
    }
  
    .icon-windowbar-plus {
      width: 32px;
    }
  
    .text-hero-serif {
      letter-spacing: -3px;
    }
  
    .overline-info-wrapper {
      grid-row-gap: 32px;
    }
  
    .project-title-date-wrapper {
      grid-row-gap: 16px;
    }
  
    .highlights-bottom-cta-block {
      grid-row-gap: 48px;
    }
  
    .bottom-cta-top-text {
      grid-row-gap: 16px;
    }
  
    .highlights-content {
      grid-row-gap: 64px;
    }
  
    .section-next-project {
      padding-top: 160px;
    }
  
    .container-next-project {
      grid-row-gap: 64px;
      width: 1400px;
    }
  
    .content-info-hero {
      grid-row-gap: 88px;
    }
  
    .content-info-hero.has-offset {
      padding-top: 80px;
    }
  
    .signature-wrapper {
      padding-left: 48px;
      padding-right: 48px;
    }
  
    .info-hero-ending-wrapper {
      grid-row-gap: 16px;
    }
  
    .thn-audit-stack {
      grid-row-gap: 128px;
    }
  
    .shine-wrapper {
      grid-column-gap: 48px;
    }
  
    .shine-big {
      width: 120px;
    }
  
    .shine-small {
      width: 48px;
    }
  
    .hero-about-grid {
      grid-column-gap: 88px;
    }
  
    .text-hero-about {
      font-size: 30px;
    }
  }
  
  @media screen and (max-width: 991px) {
    .section-nav {
      padding-left: 48px;
      padding-right: 48px;
    }
  
    .text-socialnav {
      font-size: 14px;
      line-height: 18px;
    }
  
    .section-hero {
      padding-left: 48px;
      padding-right: 48px;
    }
  
    .container-hero-image {
      width: auto;
    }
  
    .window-content {
      grid-row-gap: 32px;
      padding: 8vw 5vw 26vw;
    }
  
    .text-hero {
      font-size: 8.2vw;
    }
  
    .text-hero.info-hero {
      font-size: 42px;
      line-height: 110%;
    }
  
    .hero-text-content {
      grid-row-gap: 7vw;
    }
  
    .icon-location-portrait {
      width: 20px;
    }
  
    .section-projects {
      align-items: stretch;
      padding-left: 48px;
      padding-right: 48px;
    }
  
    .container-projects {
      width: auto;
    }
  
    .section-banner.stadiabt {
      padding-left: 48px;
      padding-right: 48px;
    }
  
    .container-banner {
      width: auto;
    }
  
    .section-overview {
      padding-left: 48px;
      padding-right: 48px;
    }
  
    .container-overview {
      grid-column-gap: 32px;
      width: auto;
    }
  
    .overview-right {
      width: 100%;
    }
  
    .container-highlights {
      grid-row-gap: 40px;
      width: auto;
      padding-left: 24px;
      padding-right: 24px;
    }
  
    .hero-bg-gradient {
      opacity: .8;
      filter: blur(60px);
      height: 360px;
    }
  
    .section-footer {
      padding-left: 48px;
      padding-right: 48px;
    }
  
    .container-footer {
      width: 100%;
    }
  
   
    .footer-bottom-wrapper {
      grid-column-gap: 0px;
    }
  
    .autoplay-video-wrapper {
      z-index: 0;
      position: relative;
    }
  
    .section-highlights {
      padding-left: 48px;
      padding-right: 48px;
    }
  
    .container-general {
      width: 100%;
    }
  
    .section-divider {
      padding-left: 48px;
      padding-right: 48px;
    }
  
    .section-general {
      background-image: none;
      padding-left: 48px;
      padding-right: 48px;
    }
  
    .text-projectpage-body {
      width: auto;
    }
  
    .double-column-block {
      grid-column-gap: 32px;
    }
  
    .contained-point-wrapper {
      align-items: flex-start;
    }
  
    .project-card {
      height: auto;
    }
  
    .section-info-hero {
      padding-left: 48px;
      padding-right: 48px;
    }
  
    .container-info {
      width: auto;
    }
  
    .container-info.info-content {
      align-self: stretch;
    }
  
    .experience-title-date {
      grid-row-gap: 12px;
    }
  
    .text-hero-serif {
      letter-spacing: -1.5px;
    }
  
    .section-next-project {
      padding-left: 48px;
      padding-right: 48px;
    }
  
    .container-next-project {
      grid-row-gap: 40px;
      width: auto;
    }
  
    .content-info-hero {
      grid-row-gap: 56px;
    }
  
    .shine-wrapper {
      display: none;
    }
  
    .hero-about-grid {
      grid-column-gap: 2vw;
    }
  
    .text-hero-about {
      font-size: 1.8vw;
    }
  }
  
  @media screen and (max-width: 767px) {
    .section-nav {
      height: 144px;
      padding-left: 24px;
      padding-right: 24px;
    }
  
    .nav-bar {
      grid-column-gap: 4px;
    }
  
    .nav-right-wrapper {
      flex: 1;
    }

    .project-fade {
      height: 280px;
    }
  
    .logomark {
      border-radius: 0;
      height: 36px;
    }
  
    .logomark.mobile {
      display: none;
    }
  
    .text-logo {
      letter-spacing: -.5px;
      font-size: 16px;
      line-height: 18px;
    }
  
    .logo-text {
      grid-row-gap: 4px;
    }
  
    .section-hero {
      padding-top: 120px;
      padding-left: 24px;
      padding-right: 24px;
    }
  
    .window-outline {
      -webkit-backdrop-filter: blur(50px);
      backdrop-filter: blur(50px);
    }
  
    .window-outline.info-hero {
      box-shadow: inset 0 0 8px rgba(0, 0, 0, .4), 0 0 60px rgba(0, 0, 0, .2), 0 20px 80px rgba(0, 0, 0, .8);
    }
  
    .window-content {
      padding-bottom: 28vw;
    }
  
    .text-hero {
      letter-spacing: -1.5px;
      font-size: 8.4vw;
    }
  
    .text-hero.info-hero {
      letter-spacing: -.15vw;
      font-size: 8vw;
      line-height: 110%;
    }
  
    .text-hero.project-title {
      letter-spacing: -2.5px;
      font-size: 56px;
      line-height: 64px;
    }
  
    .hero-fade {
      height: 24vw;
      padding-top: 4vw;
    }
  
    .hero-fade.info-hero {
      display: none;
    }
  
    .hero-text-content {
      grid-row-gap: 6vw;
    }
  
    .section-projects {
      padding-top: 48px;
      padding-left: 24px;
      padding-right: 24px;
    }
  
    .section-nav-mobile {
      z-index: 10;
      background-image: linear-gradient(rgba(16, 16, 16, .8), rgba(0, 0, 0, 0));
      justify-content: space-between;
      padding: 16px 24px;
      position: fixed;
      top: 0%;
      bottom: auto;
      left: 0%;
      right: 0%;
    }
  
    .nav-menu-button {
      color:#ffff;
      -webkit-backdrop-filter: blur(8px);
      backdrop-filter: blur(8px);
      background-color: rgba(242, 242, 242, .05);
      border: 1px solid rgba(242, 242, 242, .1);
      border-radius: 16px;
      justify-content: center;
      align-items: center;
      width: 48px;
      height: 48px;
      display: flex;
      transition: all .2s cubic-bezier(.165, .84, .44, 1);
      box-shadow: 0 4px 15px rgba(0, 0, 0, .25);
    }
  
    .nav-menu-button:hover {
      background-color: rgba(242, 242, 242, .08);
      border-color: rgba(242, 242, 242, .2);
      box-shadow: 0 8px 20px rgba(0, 0, 0, .3);
    }
  
    .section-banner.stadiabt {
      padding-left: 24px;
      padding-right: 24px;
    }
  
    .section-back {
      background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, 0));
      padding-left: 24px;
      padding-right: 24px;
    }
  
    .menu-mobile {
      z-index: 9;
      grid-column-gap: 16px;
      -webkit-backdrop-filter: blur(5px);
      backdrop-filter: blur(5px);
      background-color: rgba(16, 16, 16, .9);
      flex-direction: column;
      justify-content: space-between;
      padding-top: 88px;
      padding-left: 24px;
      padding-right: 24px;
      display: none;
      position: fixed;
      top: 0%;
      bottom: 0%;
      left: 0%;
      right: 0%;
    }
  
    .menu-card {
      grid-row-gap: 40px;
      background-color: #202020;
      border-radius: 24px;
      flex-direction: column;
      flex: 1;
      align-self: flex-start;
      padding: 24px 42px 32px 24px;
      display: flex;
    }
  
    .menu-item {
      grid-column-gap: 4px;
      color: var(--on-background);
      letter-spacing: -1px;
      align-items: center;
      font-family: Albert Sans, sans-serif;
      font-size: 32px;
      font-weight: 500;
      line-height: 36px;
      text-decoration: none;
      display: flex;
    }
  
    .menu-items-wrapper {
      grid-row-gap: 24px;
      flex-direction: column;
      align-items: flex-start;
      display: flex;
    }
  
    .text-menu-overline {
      opacity: .5;
      letter-spacing: 1px;
      font-family: Inter, sans-serif;
      font-size: 10px;
      font-weight: 600;
      line-height: 14px;
    }
  
    .menu-cards-wrapper {
      grid-column-gap: 16px;
      display: flex;
    }
  
    .icon-external-menu {
      width: 20px;
    }

    .section-overview {
      padding-left: 24px;
      padding-right: 24px;
    }
  
    .container-overview {
      grid-row-gap: 48px;
      flex-direction: column;
      width: auto;
      display: flex;
    }
  
    .overview-right {
      width: auto;
    }
  
    .text-callout {
      line-height: 130%;
    }
  
    .container-highlights {
      grid-row-gap: 40px;
      width: auto;
      padding-bottom: 24px;
      padding-left: 16px;
      padding-right: 16px;
    }
  
    .chip-logo {
      grid-column-gap: 8px;
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
      background-color: rgba(242, 242, 242, .1);
      border: 1px solid rgba(242, 242, 242, .1);
      border-radius: 100px;
      align-items: center;
      padding: 4px 20px 4px 4px;
      display: flex;
    }
  
    .chip-logo.landscape {
      grid-column-gap: 12px;
      -webkit-backdrop-filter: none;
      backdrop-filter: none;
      background-color: rgba(0, 0, 0, 0);
      border-style: none;
      border-radius: 0;
      padding: 0;
    }
  
    .utility-page-content {
      width: 400px;
    }
  
    .section-footer {
      padding: 48px 24px;
    }
  
    .footer-bottom-wrapper {
      grid-row-gap: 48px;
      flex-direction: column;
      align-items: flex-start;
    }
  
    .footer-bottom-right {
      align-items: flex-start;
    }
  
    .autoplay-video-wrapper {
      border-radius: 12px;
    }
  
    .section-highlights {
      padding-top: 24px;
      padding-left: 24px;
      padding-right: 24px;
    }
  
    .section-divider, .section-general {
      padding-left: 24px;
      padding-right: 24px;
    }
  
    .section-general.info {
      align-items: stretch;
      padding-top: 64px;
      padding-bottom: 64px;
    }
  
    .section-general.info.last {
      padding-bottom: 88px;
    }
  
    .text-projectpage-heading {
      font-size: 32px;
    }
  
    .text-projectpage-heading.info-experience {
      letter-spacing: -.75px;
      font-size: 32px;
      line-height: 40px;
    }
  
    .text-projectpage-body {
      font-size: 15px;
    }
  
    .moneyshots-content {
      grid-row-gap: 24px;
    }
  
    .media-caption-wrapper {
      grid-row-gap: 10px;
    }
  
    .inline-point-text {
      grid-row-gap: 12px;
      padding-top: 4px;
    }
  
    .inline-point-text.principles {
      padding-top: 8px;
    }
  
    .double-column-block {
      grid-row-gap: 24px;
      grid-template-rows: auto auto;
      grid-template-columns: 1fr;
    }
  
    .double-column-block.pro-con {
      grid-row-gap: 64px;
    }
  
    .double-column-block.contains-heading {
      grid-row-gap: 40px;
    }
  
    .double-column-block.info-experiences {
      grid-row-gap: 16px;
    }
  
    .double-column-block.info-hero {
      grid-row-gap: 80px;
    }
  
    .section-starting-block {
      grid-row-gap: 48px;
    }
  
    .content-trailing {
      padding-top: 0;
    }
  
    .content-trailing.has-switch {
      grid-row-gap: 16px;
    }
  
    .contained-points-item {
      padding-bottom: 24px;
    }
  
    .contained-points-item.top-radius {
      padding-top: 24px;
      padding-bottom: 22px;
    }
  
    .contained-points-item.bottom-radius {
      padding-top: 22px;
      padding-bottom: 24px;
    }
  
    .contained-points-item.middle-radius {
      padding-top: 22px;
      padding-bottom: 22px;
    }
  
    .text-media-switch {
      font-size: 15px;
      line-height: 100%;
    }
  
    .switch-wrapper {
      padding: 8px 8px 8px 24px;
    }
  
    .switch-wrapper.above-points {
      align-self: flex-end;
    }
  
    .chip-socials-wrapper {
      display: none;
    }
  
    .project-card:hover {
      border-color: #3d3d3d;
    }
  
    .projectcard-top {
      grid-row-gap: 8px;
    }
  
    .project-thumbnail {
      border-radius: 4px;
      border: 0.8px solid #616161;
      max-width: 100%;
    }
  
    .section-info-hero {
      padding: 144px 24px 64px;
    }
  
    .section-info-hero.mobile {
      background-image: radial-gradient(circle farthest-side at 50% 0, rgba(242, 242, 242, .15), rgba(0, 0, 0, 0));
      display: flex;
    }
  
    .section-info-hero.desktop {
      display: none;
    }
  
    .container-info {
      grid-row-gap: 48px;
    }
  
    .container-info.info-content {
      grid-row-gap: 32px;
    }
  
    .container-info.hero {
      grid-row-gap: 64px;
    }
  
    .experience-title-date {
      grid-row-gap: 4px;
    }
  
    .experience-block {
      grid-row-gap: 16px;
    }
  
    .icon-contact {
      width: 28px;
    }
  
    .projects-grid {
      grid-template-columns: 1fr 1fr;
    }
  
    .project-card-colour.stadiabt {
      opacity: 1;
    }
  
    .project-card-colour.thn {
      opacity: 1;
      background-image: radial-gradient(circle at 50% 0, rgba(255, 255, 255, .2), rgba(0, 0, 0, 0));
    }
  
    .project-card-colour.spotlight, .project-card-colour.rbc {
      opacity: 1;
    }
  
    .mobile-popup-menu {
      z-index: 10;
      grid-row-gap: 4px;
      -webkit-backdrop-filter: blur(20px);
      backdrop-filter: blur(20px);
      background-color: rgba(242, 242, 242, .05);
      border: 1px solid rgba(242, 242, 242, .1);
      border-radius: 16px;
      flex-direction: column;
      align-items: flex-start;
      width: 160px;
      padding: 8px;
      display: none;
      position: fixed;
      top: 88px;
      bottom: auto;
      left: auto;
      right: 24px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
    }
  
    .text-popup-menu {
      font-family: Inter, sans-serif;
      font-size: 14px;
      font-weight: 500;
    }
  
    .popup-menu-item {
      grid-column-gap: 4px;
      color: var(--on-background);
      border-radius: 10px;
      justify-content: space-between;
      align-self: stretch;
      align-items: center;
      padding: 12px 14px;
      text-decoration: none;
      transition: all .2s cubic-bezier(.165, .84, .44, 1);
      display: flex;
    }
  
    .popup-menu-item:hover {
      background-color: rgba(242, 242, 242, .05);
    }
  
    .icon-popup-external {
      width: 16px;
    }
  
    .icon-contact-close {
      opacity: 0;
      width: 28px;
      position: absolute;
    }
  
    .section-next-project {
      padding-top: 96px;
      padding-left: 24px;
      padding-right: 24px;
    }
  
    .container-next-project {
      grid-row-gap: 32px;
    }
  
    .info-hero-stack-mobile {
      grid-row-gap: 64px;
      flex-direction: column;
      display: flex;
    }
  
    .hero-about-grid {
      grid-template-columns: 1fr;
    }
  
    .hero-about-null {
      display: none;
    }
  
    .text-hero-about {
      font-size: 3vw;
    }
  }
  
  @media screen and (max-width: 520px) {
    .section-nav {
      background-image: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, 0));
      height: auto;
      padding: 20px 16px 16px;
      top: 0%;
      bottom: auto;
      left: 0%;
      right: 0%;
    }
  
    .nav-right-wrapper {
      flex: 1;
    }
  
    .logomark {
      opacity: .8;
      border-radius: 0;
      width: 28px;
      height: 32px;
    }
  
    .logomark.mobile {
      height: 28px;
      display: block;
    }
  
    .logomark.password {
      height: 48px;
    }
  
    .text-logo {
      padding-bottom: 2px;
      font-size: 16px;
      line-height: 20px;
    }
  
    .logo-text {
      display: none;
    }
  
    .nav-pill {
      box-shadow: 0 12px 30px rgba(0, 0, 0, .2);
    }
  
    .chip-socials {
      background-color: rgba(242, 242, 242, .05);
      border-radius: 100px;
      justify-content: center;
      align-self: stretch;
      height: 56px;
    }

    .text-nav-toggle {
      font-size: 14px;
    }
  
    .text-socialnav {
      font-size: 16px;
    }
  
    .section-hero {
      height: 100vh;
      padding: 88px 12px 0;
      display: none;
    }
  
    .container-hero-image {
      justify-content: center;
      display: block;
    }
  
    .window-outline {
      display: none;
    }
  
    .window-outline.info-hero {
      display: flex;
      box-shadow: inset 0 0 8px rgba(0, 0, 0, .4), 0 0 60px rgba(0, 0, 0, .2), 0 10px 40px rgba(0, 0, 0, .8);
    }
  
    .window-content {
      padding-left: 16px;
      padding-right: 16px;
    }
  
    .hero-noise {
      z-index: 0;
      opacity: .6;
    }
  
    .text-hero {
      text-align: center;
      letter-spacing: -.75vw;
      text-shadow: 0 5px 15px rgba(0, 87, 255, .25), 0 -5px 15px rgba(255, 90, 0, .2), 0 0 30px rgba(255, 255, 255, .4);
      font-size: 13dvw;
      line-height: 13dvw;
    }
  
    .text-hero.info-hero {
      letter-spacing: -.1vw;
      font-size: 7.9vw;
      line-height: 110%;
    }
  
    .text-hero.project-title {
      letter-spacing: -1.5px;
      font-size: 48px;
      line-height: 52px;
    }
  
    .text-hero.portrait {
      text-align: left;
      letter-spacing: -.25vw;
      font-size: 13vw;
      line-height: 12vw;
    }
  
    .hero-fade {
      height: 180px;
      padding-top: 32px;
      padding-bottom:80px;
    }
  
    .icon-scroll-down {
      z-index: 1;
      opacity: 1;
      font-size: 24px;
      height: auto;
      position: relative;
    }
  
    .icon-scroll-down.portrait {
      margin-left: -2px;
    }
  
    .icon-location-portrait {
      opacity: .6;
      width: 18px;
      margin-left: -2px;
      display: block;
    }
  
    .section-projects {
      grid-row-gap: 40px;
      padding: 0 16px 80px;
    }
  
    .container-projects {
      grid-row-gap: 40px;
    }
  
    .section-nav-mobile {
      z-index: 10;
      background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .9));
      justify-content: space-between;
      align-items: center;
      height: 104px;
      padding: 0 16px;
      display: none;
      position: fixed;
      top: auto;
      bottom: 0%;
      left: 0%;
      right: 0%;
    }
  
    .nav-menu-button {
      z-index: 1;
      grid-column-gap: 8px;
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
      justify-content: center;
      align-items: center;
      display: flex;
      position: relative;
      box-shadow: inset 0 0 10px rgba(0, 0, 0, .1), 0 4px 16px rgba(0, 0, 0, .25);
    }
  
    .section-banner {
      padding-top: 112px;
    }
  
    .section-banner.stadiabt {
      padding-top: 112px;
      padding-left: 16px;
      padding-right: 16px;
    }
  
    .section-banner.spotlight {
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .section-banner.thn, .section-banner.rbc {
      padding-left: 16px;
      padding-right: 16px;
    }
  
    .project-title-hero-wrapper {
      grid-row-gap: 40px;
    }
  
    .title-wrapper {
      grid-row-gap: 16px;
      padding-left: 24px;
      padding-right: 24px;
    }
  
    .text-projectpage-year {
      letter-spacing: -.25px;
      font-size: 16px;
      line-height: 20px;
    }
  
    .section-back {
      align-items: flex-start;
      height: auto;
      padding: 24px 16px;
    }
  
    .text-button.highlights-cta {
      font-size: 15px;
    }
  
    .button-project-back {
      align-self: auto;
      position: relative;
    }
  
    .project-fade {
      height: 120px;
    }
  
    .menu-mobile {
      z-index: 11;
      grid-row-gap: 16px;
      -webkit-backdrop-filter: blur(5px);
      backdrop-filter: blur(5px);
      background-color: rgba(16, 16, 16, .9);
      flex-direction: column;
      justify-content: flex-start;
      padding: 64px 16px 24px;
      display: none;
      position: fixed;
      top: 0%;
      bottom: 0%;
      left: 0%;
      right: 0%;
    }
  
    .menu-card {
      grid-row-gap: 32px;
      background-color: #202020;
      border: 1px solid rgba(242, 242, 242, .02);
      border-radius: 24px;
      flex-direction: column;
      flex: 0 auto;
      align-self: stretch;
      padding: 24px 24px 30px;
      display: flex;
      box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
    }
  
    .text-mobile-menu {
      letter-spacing: -1px;
      font-family: Albert Sans, sans-serif;
      font-size: 32px;
      font-weight: 500;
      line-height: 36px;
    }
  
    .menu-item {
      grid-column-gap: 4px;
      color: var(--on-background);
      align-self: stretch;
      align-items: center;
      text-decoration: none;
      display: flex;
    }
  
    .menu-items-wrapper {
      grid-row-gap: 24px;
      flex-direction: column;
      display: flex;
    }
  
    .text-menu-overline {
      opacity: .5;
      letter-spacing: 1px;
      font-family: JetBrains Mono, sans-serif;
      font-size: 10px;
      font-weight: 400;
      line-height: 14px;
    }
  
    .menu-cards-wrapper {
      grid-row-gap: 16px;
      flex-direction: column;
      display: flex;
    }
  
    .icon-external-menu {
      width: 14px;
    }
  
    .project-banner-image-wrapper {
      justify-content: center;
      display: flex;
    }
  
    .image-project-banner {
      max-width: 100%;
    }
  
    .section-overview {
      padding: 48px 16px;
    }
  
    .container-overview {
      grid-column-gap: 0px;
      grid-row-gap: 48px;
      flex-direction: column;
      width: auto;
      display: flex;
    }
  
    .overview-right {
      grid-row-gap: 40px;
      width: auto;
    }
  
    .overview-left {
      grid-row-gap: 40px;
    }
  
    .text-callout {
      text-align: center;
      font-size: 18px;
    }
  
    .text-callout.card-heading {
      font-size: 18px;
    }
  
    .container-highlights {
      grid-row-gap: 40px;
      border-radius: 24px;
      width: auto;
      padding: 32px 12px 16px;
      box-shadow: inset 0 0 5px rgba(0, 0, 0, .15);
    }
  
    .container-highlights.has-bottom-cta {
      padding-bottom: 40px;
    }
  
    .text-projectpage-overline {
      font-size: 10px;
      line-height: 16px;
    }
  
    .chip-special-overline {
      grid-row-gap: 8px;
      align-items: center;
    }
  
    .highlights-text-content {
      grid-row-gap: 16px;
      align-items: center;
      padding-left: 8px;
      padding-right: 8px;
    }
  
    .chip-logo {
      grid-column-gap: 6px;
      border-radius: 4px;
      align-items: center;
      padding: 2px 12px 2px 2px;
      display: flex;
    }
  
    .chip-logo.landscape {
      display: none;
    }
  
    .icon-hero-swipe {
      width: 28px;
    }
  
    .text-swipe-to-see-work {
      color: var(--on-background);
      font-family: JetBrains Mono, sans-serif;
      font-size: 11px;
      font-weight: 300;
      line-height: 15px;
    }
  
    .hero-bg-gradient {
      z-index: 0;
      background-image: linear-gradient(to right, transparent, var(--on-background) 50%, transparent);
      opacity: .9;
      filter: blur(80px);
      top: 136px;
    }
  
    .glare-item-top.inner-edge {
      background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 15%, #fff 50%, rgba(0, 0, 0, 0) 85%);
    }
  
    .utility-page-wrap {
      grid-row-gap: 16px;
      justify-content: center;
      width: auto;
      padding-top: 24px;
      padding-left: 16px;
      padding-right: 16px;
    }
  
    .utility-page-content {
      width: 100%;
      padding: 40px 32px 32px;
    }
  
    .utility-page-form {
      grid-row-gap: 8px;
    }
  
    .text-field, .submit-button {
      padding-top: 12px;
      padding-bottom: 12px;
    }
  
    .password-button-row {
      grid-column-gap: 0px;
      grid-row-gap: 12px;
      flex-direction: column;
      align-self: stretch;
    }
  
    .section-footer {
      padding: 64px 16px 48px;
    }
  
    .container-footer {
      grid-row-gap: 48px;
    }
  
    .footer-top-wrapper {
      grid-row-gap: 48px;
      flex-direction: column;
      align-items: flex-start;
    }
  
    .logomark-footer {
      height: 80px;
      display: none;
    }
  
    .footer-links-column {
      grid-row-gap: 12px;
      width: 96px;
    }
  
    .footer-links-column-wrapper {
      grid-column-gap: 16px;
    }
  
    .footer-bottom-wrapper {
      grid-row-gap: 32px;
    }
  
    .text-footer-copyright {
      font-size: 14px;
      line-height: 18px;
    }
  
    .footer-bottom-left {
      grid-row-gap: 8px;
    }
  
    .text-under-copyright {
      font-size: 12px;
      line-height: 16px;
    }
  
    .autoplay-video-wrapper {
      z-index: 0;
      position: relative;
    }
  
    .video-embed {
      border-radius: 12px;
    }
  
    .section-highlights {
      padding-bottom: 64px;
      padding-left: 16px;
      padding-right: 16px;
    }
  
    .container-general {
      grid-row-gap: 80px;
    }
  
    .section-divider {
      padding-left: 0;
      padding-right: 0;
    }
  
    .divider-line {
      background-color: #000;
      border-top: 1px solid rgba(242, 242, 242, .15);
      border-bottom: 1px solid rgba(242, 242, 242, .15);
      height: 12px;
    }
  
    .section-general {
      background-image: none;
      padding: 64px 16px;
    }
  
    .section-general.info {
      background-image: none;
      padding-top: 56px;
      padding-left: 16px;
      padding-right: 16px;
    }
  
    .text-projectpage-heading {
      line-height: 120%;
    }
  
    .text-projectpage-heading.info-experience {
      letter-spacing: .2px;
      font-size: 28px;
      line-height: 32px;
    }
  
    .text-projectpage-subheading {
      font-size: 20px;
    }
  
    .text-projectpage-subheading.info {
      letter-spacing: .2px;
      font-size: 20px;
      line-height: 26px;
    }
  
    .text-projectpage-body {
      font-size: 15px;
    }
  
    .text-projectpage-body.subpoint {
      font-size: 14px;
    }
  
    .text-projectpage-body.info-hero {
      padding-left: 16px;
      padding-right: 16px;
    }
  
    .image-default, .image-default.highlight-outline {
      border-radius: 12px;
    }
  
    .media-caption-wrapper {
      grid-row-gap: 8px;
    }
  
    .caption-wrapper {
      justify-content: flex-end;
      align-self: stretch;
      padding-left: 12px;
      width: 90%;
    }
  
    .text-medium-type {
      font-size: 9px;
      line-height: 13px;
    }
  
    .chip-medium-type {
      padding-bottom: 4px;
    }
  
    .callout-block {
      align-items: center;
      padding: 32px 20px;
    }
  
    .callout-block.challenge {
      background-image: radial-gradient(circle closest-corner at 50% 0, rgba(255, 214, 10, .05), rgba(0, 0, 0, 0));
      padding-top: 24px;
      padding-bottom: 24px;
    }
  
    .callout-block.discovery {
      background-image: radial-gradient(circle closest-corner at 50% 0, rgba(99, 230, 226, .05), rgba(0, 0, 0, 0));
      padding-top: 24px;
      padding-bottom: 24px;
    }
  
    .callout-block.success {
      background-image: radial-gradient(circle closest-corner at 50% 0, rgba(48, 209, 88, .05), rgba(0, 0, 0, 0));
      padding-top: 24px;
      padding-bottom: 24px;
    }
  
    .inline-card {
      grid-column-gap: 18px;
      grid-row-gap: 16px;
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .icon-points-wrapper {
      grid-row-gap: 16px;
    }
  
    .inline-point-text {
      padding-top: 8px;
    }
  
    .inline-point-text.principles {
      padding-top: 10px;
    }
  
    .double-column-block.pro-con {
      flex: 1;
    }
  
    .double-column-block.contains-heading {
      grid-column-gap: 24px;
      grid-row-gap: 24px;
    }
  
    .double-column-block.has-analysis-block {
      grid-template-rows: auto;
    }
  
    .double-column-block.info-hero {
      grid-row-gap: 64px;
    }
  
    .section-starting-block {
      grid-column-gap: 48px;
      grid-row-gap: 48px;
    }
  
    .associated-content-block {
      grid-row-gap: 48px;
    }
  
    .associated-content-block.stadiabt-flow-analysis {
      grid-row-gap: 56px;
    }
  
    .contained-points-item {
      padding: 22px 20px;
    }
  
    .contained-points-item.top-radius {
      padding-top: 22px;
      padding-bottom: 20px;
    }
  
    .contained-points-item.bottom-radius {
      padding-top: 20px;
      padding-bottom: 22px;
    }
  
    .contained-points-item.middle-radius {
      padding-top: 20px;
      padding-bottom: 20px;
    }
  
    .icon-callout {
      width: 32px;
    }
  
    .icon-principles-points.badge {
      height: 32px;
    }
  
    .image-switched {
      border-radius: 12px;
    }
  
    .overline-heading-block {
      grid-row-gap: 24px;
    }
  
    .project-card {
      grid-row-gap: 48px;
      padding-top: 26px;
      padding-left: 24px;
      padding-right: 24px;
    }
  
    .text-projectcard-description {
      font-size: 15px;
      line-height: 19px;
    }
  
    .section-info-hero {
      background-image: radial-gradient(circle farthest-side at 50% 0, rgba(242, 242, 242, .25), rgba(0, 0, 0, 0) 50%);
      padding-top: 144px;
      padding-left: 16px;
      padding-right: 16px;
    }
  
    .container-info.info-content {
      grid-row-gap: 32px;
    }
  
    .container-info.hero {
      grid-row-gap: 40px;
    }
  
    .text-info-meta {
      font-size: 15px;
      line-height: 19px;
    }
  
    .section-mobile-nav {
      z-index: 10;
      justify-content: center;
      padding-bottom: 24px;
      display: none;
      position: fixed;
      top: auto;
      bottom: 0%;
      left: 0%;
      right: 0%;
    }
  
    .projects-grid {
      grid-row-gap: 48px;
      grid-template-columns: 1fr;
    }
  
    .mobile-popup-menu {
      top: 84px;
      right: 16px;
    }

    .lang-popup-menu {
      top: 84px;
      right: 70px;
    }
  
    .text-popup-menu {
      letter-spacing: .2px;
      font-family: inter, sans-serif;
    }
  
    .overline-wrapper {
      grid-column-gap: 10px;
    }
  
    .section-hero-portrait {
      grid-row-gap: 10vh;
      background-image: radial-gradient(circle farthest-side at 50% 0, rgba(242, 242, 242, .25), rgba(0, 0, 0, 0) 80%);
      flex-direction: column;
      align-items: stretch;
      padding: 20vh 16px 6vh;
      display: flex;
      position: relative;
    }
  
    .text-portrait-secondary {
      color: rgba(242, 242, 242, .5);
      font-family: inter, sans-serif;
      font-size: 5vw;
      font-weight: 500;
      line-height: 140%;
    }
  
    .text-open-to-new-opportunities {
      color: rgba(242, 242, 242, .9);
    }
  
    .hero-portrait-top {
      z-index: 1;
      grid-row-gap: 3vh;
      flex-direction: column;
      align-items: flex-start;
      display: flex;
      position: relative;
    }
  
    .text-portrait-overline {
      color: rgba(242, 242, 242, .5);
      font-family: inter, sans-serif;
      font-size: 16px;
      font-weight: 400;
      display: block;
    }
  
    .location-portrait {
      grid-column-gap: 6px;
      outline-offset: -1px;
      background-color: rgba(242, 242, 242, .04);
      border-radius: 8px;
      outline: 1px solid rgba(242, 242, 242, .04);
      align-items: center;
      padding: 8px 14px 8px 10px;
      display: flex;
    }
  
    .text-portrait-location {
      color: rgba(242, 242, 242, .6);
      letter-spacing: .5px;
      font-family: inter, sans-serif;
      font-size: 12px;
      font-weight: 500;
      line-height: 16px;
    }
  
    .hero-portrait-bottom {
      z-index: 1;
      grid-row-gap: 2vh;
      flex-direction: column;
      align-items: flex-start;
      display: flex;
      position: relative;
    }
  
    .hero-portrait-divider {
      background-color: rgba(242, 242, 242, .1);
      width: 100%;
      height: 1px;
      padding-bottom: 0;
      padding-right: 0;
    }
  
    .hero-portrait-scroll {
      grid-column-gap: 6px;
      align-items: center;
      display: flex;
      position: relative;
    }
  
    .divider-scroll-wrapper {
      z-index: 1;
      grid-row-gap: 16px;
      flex-direction: column;
      flex: 0 auto;
      align-items: stretch;
      display: flex;
      position: relative;
    }
  
    .hero-portrait-main {
      z-index: 1;
      grid-row-gap: 6vh;
      flex-direction: column;
      padding-left: 8px;
      padding-right: 8px;
      display: flex;
      position: relative;
    }
  
    .text-hero-serif {
      letter-spacing: -.25vw;
    }
  
    .overline-info-wrapper {
      grid-row-gap: 2vh;
      flex-direction: column;
      align-items: flex-start;
      display: flex;
    }
  
    .highlights-content {
      grid-row-gap: 32px;
    }
  
    .section-next-project {
      padding-top: 64px;
      padding-left: 16px;
      padding-right: 16px;
    }
  
    .container-next-project {
      grid-row-gap: 32px;
    }
  
    .signature-wrapper {
      padding-left: 16px;
      padding-right: 16px;
    }
  
    .thn-audit-stack {
      grid-row-gap: 64px;
    }
  }


  @media screen and (max-width: 425px) {
    
    .nav-left-wrapper {
      display: none;
    }
  }