/* View Transitions API – crossfade between index.html ↔ client.html */
@view-transition {
  navigation: auto;
}
::view-transition-group(root) {
  background-color: #000;
}
::view-transition-old(root),
::view-transition-new(root) {
  mix-blend-mode: plus-lighter;
}
::view-transition-old(root) {
  animation: 0.4s linear both view-transition-fade-out;
}
::view-transition-new(root) {
  animation: 0.4s linear both view-transition-fade-in;
  animation-delay: 0.2s;
}

@keyframes view-transition-fade-out {
  from { opacity: 1; }
  to { opacity: 0; }
}

@keyframes view-transition-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

:root {
  --max-width: 1640px;
}

html {
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  overflow-x: clip;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul,
ol {
  list-style: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Fonts */
@font-face {
  font-family: 'HelveticaNeueLTProBd';
  src: url('fonts/HelveticaNeueLTProBd.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Fonts */
@font-face {
  font-family: 'HelveticaNeueLTProTh';
  src: url('fonts/HelveticaNeueLTProTh.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

/* Fonts */
@font-face {
  font-family: 'HelveticaNeueLTProRoman';
  src: url('fonts/HelveticaNeueLTProRoman.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Fonts */
@font-face {
  font-family: 'RobotoMono';
  src: url('fonts/RobotoMono-Regular.ttf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* CSS  */

body{
  font-family: 'HelveticaNeueLTProRoman', sans-serif;
  background-color: #000;
}

main{
  background-color: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow-x: clip;
  max-width: 100%;
}

h1{
  font-size: 2rem;
  font-weight: 300;
  text-align: center;
  margin-bottom: 2rem;
  opacity: .3;
  letter-spacing: .15rem;
  text-transform: uppercase;
  padding: 6rem;
}

h2{
  font-family: 'HelveticaNeueLTProTh', sans-serif;
  font-size: 4rem;
  font-weight: 300;
}

.section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  content-visibility: auto;
}


.hero-container {
  /* width: min(100%, 1640px); */
  width: 100%;
  min-height: 85vh;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
  flex: 1;
  position: relative;
  overflow: hidden;
}

.hero-container > * {
  flex: 1;
  min-height: 0;
}


.wrapper-loader{
  position: fixed;
  top: 0;
  left: 0;
  inset: 0;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 1;
}

.wrapper-loader > * {
  flex: 1;
  min-height: 0;
}

.hero-container-loader {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 2;
}



.hero-loader-button {
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 12;
  cursor: pointer;
  opacity: 0;
}

.hero-container-loader .loader-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  bottom: -50%;
  right: 0;
  margin: auto;
  width: 100%;
  max-width: 8%;
  height: 2px;
  background-color: rgb(0, 0, 0);
  overflow: hidden;
}

.hero-container-loader .loader-wrapper .loader-fill-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
  background-color: #D0E7F0;
  display: block;
}

.hero-container-logo {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  max-width: 30%;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 6;
  opacity: 1;
}

.hero-container-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-container-logo-webgl-embed {
  width: 100%;
  height: 100%;
}


.hero-container-intro {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 1;
}

.hero-container-intro .webgl-embed-intro {
    width: 100%;
    min-height: 100%;
  }

.hero-container-video-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#sizzle-video {
  opacity: 0;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  will-change: transform, opacity;
}













navigation {
  position: sticky;
  top: 0;
  left: 0;
  width: min(100%, 1640px);
  height: 100px;
  padding: 0 4vh;
  z-index: 90;
  font-family: 'RobotoMono', sans-serif;
  text-align: uppercase;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 1) 5%, rgba(0, 0, 0, 0) 100%);
  opacity: 0;
}

.navigation-container {

  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: .9rem;
}

.navigation-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}




.wrapper-spacer {
  height: 10vh;
  width: 100%;
}



.wrapper-about {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 88vh;
  width: min(100%, var(--max-width));
  content-visibility: auto;
  contain-intrinsic-size: auto 88vh;
}

.row-about-display {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2rem;
  flex: 1;
  min-height: 0;
  width: 100%;
}

.row-about-display-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  min-height: 0;
  width: 100%;
  align-self: stretch;
}

.row-about-display-content-nav {
  flex: 0 0 auto;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 3vh;
}
.row-about-display-content-nav div {
  position: relative;
  font-size: clamp(2rem, 8vw, 9rem);
  font-family: 'HelveticaNeueLTProBd', sans-serif;
  font-weight: 300;
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  
}
.row-about-display-content-nav div::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 8rem;
  background: linear-gradient(to top, #000 40%, rgba(0, 0, 0, 1) 60%, transparent);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.row-about-display-content-nav div:hover,
.row-about-display-content-nav div.about-nav-item-active {
  filter: blur(2px);
  transition: filter 0.7s ease-in-out;
}
.row-about-display-content-nav div:hover::after,
.row-about-display-content-nav div.about-nav-item-active::after {
  opacity: 1;
}

.row-about-display-content-container {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  z-index: 90;
}

.row-about-display-content-container-item-1 {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: stretch;
  width: 100%;
  position: relative;
  z-index: 2;
}

.row-about-display-content-container-item-btn {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  padding: 0.5rem 1.5rem 0.2rem 1.5rem;
  font-size: 0.9rem;
  font-family: inherit;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid currentColor;
  background: transparent;
  color: #fff;
  z-index: 10;
  opacity: 0.3;
  &:hover {
    opacity: 1;
  }
}

.about-box-export-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.about-box-export-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.about-box-export-overlay-inner {
  background: #1a1a1a;
  padding: 1.5rem;
  max-width: 90vw;
  max-height: 80vh;
  overflow: auto;
  border-radius: 0.5rem;
}

.about-box-export-scale-controls {
  margin-bottom: 1rem;
}

.about-box-export-scale-label {
  display: block;
  font-size: 0.8rem;
  color: #aaa;
  margin-bottom: 0.5rem;
}

.about-box-export-scale-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 0.5rem;
}

.about-box-export-scale-row {
  font-size: 0.8rem;
  color: #ccc;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.about-box-export-scale-row input {
  width: 4rem;
  padding: 0.25rem 0.4rem;
  font-size: 0.85rem;
  background: #333;
  border: 1px solid #555;
  color: #eee;
  border-radius: 0.2rem;
}

.about-box-export-apply {
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
  cursor: pointer;
  background: #444;
  color: #fff;
  border: 1px solid #555;
  border-radius: 0.2rem;
}

.about-box-export-apply:hover {
  background: #555;
}

.about-box-export-pre {
  font-family: monospace;
  font-size: 0.85rem;
  color: #eee;
  margin: 0 0 1rem 0;
  white-space: pre;
  user-select: all;
}

.about-box-export-actions {
  display: flex;
  gap: 0.5rem;
}

.about-box-export-actions button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: .5rem 1rem 0.2rem 1rem;
  font-size: 0.8rem;
  cursor: pointer;
  line-height: 1;
  background: transparent;
  color: #fff;
  border: 1px solid #898989;
  text-transform: uppercase;
}

.about-box-export-actions button:hover {
  background: #444;
}

.row-about-display-content-container-item-boxes-box1, 
.row-about-display-content-container-item-boxes-box2,
.row-about-display-content-container-item-boxes-box3,
.row-about-display-content-container-item-boxes-box4,
.row-about-display-content-container-item-boxes-box5,
.row-about-display-content-container-item-boxes-box6,
.row-about-display-content-container-item-boxes-box7 {
  border-radius: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-family: monospace;
  color: #000000;
  white-space: pre-line;
  text-align: center;
  pointer-events: auto;
}

.row-about-display-content-container-item-boxes-box1 {
  position: absolute;
  width: 30%;
  height: 66%;
  background-color: rgb(238, 255, 0);
}

.row-about-display-content-container-item-boxes-box2 {
  position: absolute;
  width: 16%;
  height: 46%;
  background-color: rgb(0, 229, 255);
}

.row-about-display-content-container-item-boxes-box3 {
  position: absolute;
  width: 26%;
  font-family: 'HelveticaNeueLTProTh', sans-serif;
  aspect-ratio: 16 / 9;
  background-color: rgb(27, 27, 27);
  text-transform: uppercase;
  padding: 2rem;
  justify-content: flex-start;
  align-items: center;
  color: #fff;
  text-align: left;
  line-height: 1.4;
  border-radius: .6rem;
  text-wrap: pretty;
}

.row-about-display-content-container-item-boxes-box4 {
  position: absolute;
  width: 24%;
  aspect-ratio: 4 / 3;
  background-color: rgb(255, 140, 0);
}

.row-about-display-content-container-item-boxes-box5 {
  position: absolute;
  width: 12%;
  height: 30%;
  background-color: rgb(140, 255, 0);
}

.row-about-display-content-container-item-boxes-box6 {
  position: absolute;
  width: 30%;
  height: 66%;
  background-color: rgb(255, 0, 140);
}

.row-about-display-content-container-item-boxes-box7 {
  position: absolute;
  width: 30%; 
  height: 66%;
  background-color: rgb(152, 81, 209);
}












/*





PROJECTS and wrappers




*/
.wrapper-projects, .wrapper-footer, .wrapper-services, .wrapper-clients {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: min(100%, var(--max-width));
  max-width: 100%;
  margin: 8rem 0;
  content-visibility: auto;
}


/* 







Services overlay







*/

.services-overlay-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.7);
  cursor: pointer;
  backdrop-filter: blur(4px);
}

/*



Services overlay content

controls the width of the services overlay


*/

.services-overlay-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 70%;
  max-height: 700px;
  aspect-ratio: 16 / 9;
  position: relative;
  z-index: 1;
}

.services-overlay-content .close-btn-container {
  position: absolute;
  top: -25px;
  right: -24px;
  width: 50px;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  border: 1px solid #f1f1f1;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  color: #ffffff77;
  transition: all 0.3s ease;
  &:hover {
    color: #fff;
  }
}

/* width to 1 */ 

.services-overlay-content-container {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-start;
  overflow: hidden;
  color: #fff;
  border-radius: 2rem;
  border: 1px solid #fff;
}

/*

Services overlay content container inner
controls the height of the services overlay

*/
.services-overlay-content-container-inner {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: row;
  width: 100%;
  flex: 1;
  padding: 2rem;
  gap: 4vw;
  overflow: hidden;
  /* 
  
  controls the height of the services overlay 
  
  */
  min-height: 700px;
  background-color: rgb(0, 0, 0);
}

.services-overlay-col {
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: stretch;
  flex-direction: column;
  position: relative;
}

.services-overlay-col:nth-child(2) {
  flex: 1.4;
  position: relative;
  height: 100%;
}

.services-overlay-col-content-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  padding: 2.5vh 0;
}

.services-overlay-col-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
}

.services-overlay-col-content:nth-child(2) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
}

.services-overlay-col h2 {
  font-size: clamp(2rem, 4vw, 5rem);
  font-weight: 300;
  margin-bottom: 0rem;
}

.services-overlay-col p {
  font-family: 'HelveticaNeueLTProTh', sans-serif;
  opacity: .8;
  font-size: clamp(1.4rem, 2vh, 1.8rem);
  line-height: 1.6;
  font-weight: 300;
  margin-bottom: 2rem;
  max-width: 600px;
  text-wrap: pretty;
}

.services-overlay-col--carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.services-overlay-col-image {
  position: absolute;
  top: 0%;
  left: 0%;
  bottom: 0%;
  margin: auto;
  width: 80%;
  max-height: 600px;
  aspect-ratio: 9 / 16;
  z-index: 1;
  border-radius: 1.5rem;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.services-overlay-col-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.services-overlay-col ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: .5rem;
}

.services-overlay-col ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  font-size: .9rem;
  text-transform: uppercase;
  font-family: 'RobotoMono', sans-serif;
  font-weight: 300;
  margin-bottom: 0rem;
  opacity: .8;
  letter-spacing: .1rem;
  &:before {
    content: '■';
    font-size: .7rem;
    margin-right: .5rem;
  }
}


/* 






Services navigation on page display






*/

.row-services-display {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: 0 4vh;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.row-services-display-content {
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}

.row-services-display-content-item {
  min-width: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}

.row-services-display-content-item h3{
  font-size: clamp(2rem, 4vw, 5rem);
  line-height: .90;
  margin: 0;
  padding-top: 1vh;
  font-family: 'HelveticaNeueLTProBd', sans-serif;
}

.row-services-display-content-item--text-mask {
  position: relative;
  cursor: pointer;
  padding-right: 3vw;
}

.row-services-display-content-item--text-mask h3 {
  background:
    linear-gradient(to right, transparent 0%, transparent 0%, #fff 0%, #fff 100%, transparent 60%, transparent 100%),
    #555;
  background-size: 0.001% 100%, auto;
  background-position: center, 0 0;
  background-repeat: no-repeat, repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  transition: background-size 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.row-services-display-content-item--text-mask:hover h3{
  background-size: 200% 100%, auto;
  transition: background-size 2.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.row-services-display-content-item--text-mask.row-services-display-content-item--active h3 {
  background-size: 400% 100%, auto;
}

.row-services-display-content-item-icon {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
  aspect-ratio: 40 / 72;
  opacity: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.row-services-display-content-item-icon svg {
  width: 100%;
  height: 100%;
  display: block;
  flex-shrink: 0;
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 0.1s linear, transform 0.1s linear;
}

.row-services-display-content-item--text-mask:hover .row-services-display-content-item-icon svg,
.row-services-display-content-item--text-mask.row-services-display-content-item--active .row-services-display-content-item-icon svg {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.1s ease-out, transform 0.1s ease-out;
}


/*


Projects


*/

.wrapper-projects-sticky {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  min-height: 140vh;
}


.wrapper-projects {
  position: sticky;
  top: 7vh;
  left: 0;
  width: min(100%, var(--max-width));
  min-height: 85vh;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  flex-direction: column;
}

.row-projects-container-wrapper {
  position: relative;
  width: 100%;
  min-height: 0;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: stretch;
}


.row-projects-display {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.row-projects-display-video {
  display: none;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.row-projects-display-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.row-projects-display-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;
  padding: 3rem 6rem;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 66%, rgba(0, 0, 0, .92) 100%);
  z-index: 2;
}

.row-projects-display-content {
  display: grid;
  width: 40%;
}

.row-projects-display-content-item {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.row-projects-display-content-item-active {
  opacity: 1;
  pointer-events: auto;
}

.row-projects-display-title h3 {
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 1rem;
  text-align: left;
}

.row-projects-display-description {
  font-size: 1rem;
  font-weight: 300;
  text-align: left;
  margin-bottom: 2rem;
}

.row-projects-autoplayer-container {
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 7;
  gap: .5rem;
}

.row-projects-autoplayer-btn {
  position: relative;
  width: 10px;
  height: 10px;
  background-color: #a6a6a6;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
}

.row-projects-autoplayer-btn:hover {
  background-color: #fff;
}

.row-projects-autoplayer-btn-active {
  width: 45px;
  border-radius: 1rem;
  background-color: #fff;
}

.row-projects-autoplayer-btn-progress {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: #a6a6a6;
  border-radius: inherit;
  pointer-events: none;
}

.row-projects-autoplayer-btn-active .row-projects-autoplayer-btn-progress {
  display: block;
}


.row-projects-display-image {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.row-projects-display-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.row-projects-display-image img[data-crossfade] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
    object-fit: cover;
    z-index: 0;
}

.row-projects-thumbnail-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 4%, black 96%, transparent 100%);
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}

.row-projects-thumbnail-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.row-projects-thumbnail-arrow--left {
  left: 1rem;
  transform: translateY(-50%) scaleX(-1);
}
.row-projects-thumbnail-arrow--left.row-projects-thumbnail-arrow--hidden-at-start {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.row-projects-thumbnail-arrow--right {
  right: 1rem;
}
.row-projects-thumbnail-arrow--right.row-projects-thumbnail-arrow--hidden-at-end {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.row-projects-thumbnail-arrow svg {
  display: block;
}

.row-projects-thumbnail-track {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2rem;
  width: fit-content;
  padding: 0 4rem;
}

.row-projects-thumbnail-item {
  flex: 0 0 auto;
  width: 15vw;
  max-width: 450px;
  aspect-ratio: 4/3;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  opacity: .3;
  transition: opacity 0.3s ease;
}

.row-projects-thumbnail-item:hover {
  opacity: 1;
}

.row-projects-thumbnail-item-active {
  opacity: .7;
}

.row-projects-thumbnail-item-image {
  width: 100%;
  height: 100%;
  border-radius: 3rem;
  overflow: hidden;
}

.row-projects-thumbnail-item-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.row-projects-thumbnail-item-title{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.row-projects-thumbnail-item-title h3{
  font-size: .9rem;
  font-weight: 400;
}


/* 


Clients 


*/

.row-clients-display {
  width: 100%;
  height: 100%;
  min-height: 70vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}


.row-clients-display-content {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
}

.col-clients-display-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
}


.col-clients-display-title h2{
  font-size: 3rem;
  font-weight: 300;
  text-align: center;
}

.col-clients-display-title p{
  font-size: 1.3rem;
  font-weight: 300;
  max-width: 300px;
  text-align: center;
  margin-bottom: 2rem;
}

.row-clients-display-content-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  position: absolute;
  justify-content: center;
  align-items: center;
  top: 0;
  left: 0;
  gap: 40%;
  z-index: 0;
  overflow: hidden;
}

.row-shadow-container-top {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6vh;
  background: linear-gradient(to top, rgba(0, 0, 0, 0) 5%, rgba(0, 0, 0, 1) 100%);
  z-index: 4;
}

.row-shadow-container-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 6vh;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
  z-index: 4;
}

.col-clients-display {
  flex: 1;
  display: flex;
  align-items: space-between;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  overflow: hidden;
  z-index: 1;
}

.col-clients-display-image {
  width: 45%;
  height: 100%;
  max-width: 200px;
  min-height: 10vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  opacity: 0.4;
  transition: opacity 0.3s ease;
  background-color: transparent;
  cursor: pointer;
  &:hover {
    background-color: #4c4c4c75;
    opacity: 1;
  }
}

.col-clients-display-image-active {
  background-color: #4c4c4c57;
  opacity: .75;
}


.clients-logo-navigation-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  text-transform: uppercase;
}

.clients-logo-navigation-item {
  font-size: .9rem;
  font-weight: 300;
  opacity: .5;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.clients-logo-navigation-item-active {
  opacity: 1;
}

.clients-corner-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 40%;
  height: 40%;
  z-index: 6;
  background-color: #14141457;
  border-radius: .5rem;
  pointer-events: none;
}
.clients-plus-container-top-left {
  position: absolute;
  top: 3.2%;
  left: 2%; 
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transform: rotate(-90deg);
}

.clients-plus-container-top-right {
  position: absolute;
  top: 3.2%;
  right: 2%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.clients-plus-container-bottom-left {
  position: absolute;
  bottom: 3.2%;
  left: 2%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transform: rotate(-180deg);
}

.clients-plus-container-bottom-right {
  position: absolute;
  bottom: 3.2%;
  right: 2%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transform: rotate(90deg);
}


/* Footer */

h6{
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 1.1rem;
}

.capped-small{
  font-size: .88rem;
  font-weight: 300;
  letter-spacing: .12rem;
  opacity: .7;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  line-height: .8;
}

.icon-small{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .4rem;
  opacity: .7;
  margin-bottom: .8rem;
}

.icon-small span{
  padding: 0 0 0 0;
  text-transform: uppercase;
  font-size: .88rem;
  font-weight: 300;
  letter-spacing: -.01px;

  font-family: 'RobotoMono', sans-serif;
}

.row-footer-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.row-footer-content-container {
  width: 100%;
  padding: 0 3rem 4rem 3rem;
  flex: 1;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: space-between;
}

.row-footer-content-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 6rem;
}

.row-footer-content-item .capped-small{
  font-family: 'RobotoMono', sans-serif;
  margin-bottom: 1.2rem;
  font-size: .88rem;
  letter-spacing: -.01px;
  color: #fffffff9;
}

.row-footer-content-item p{
  font-family: 'HelveticaNeueLTProTh', sans-serif;
  font-size: 1rem;
  color: #ffffffcb;
  margin-bottom: .5rem;
}

.col-footer-content-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%;
}

.row-footer-content {
  width: 100%;
}

.webgl-embed {
  width: 100%;
  min-height: 30vh;
}

.spacer {
  height: 50vh;
  width: 100%;
}

/* ============================================
   CLIENT PAGE (client.html)
   Full-screen image, click anywhere to go back
   ============================================ */

.client-page-wrapper {
  display: block;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.client-page-display {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.client-page-display-content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.client-page-display-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: hidden;
}

.client-page-display-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top center;
}