@import url("https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wdth,wght,ROND@6..144,25..151,1..1000,0..100&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Geist+Mono:wght@100..900&display=swap");
:root {
  --in: 56px;
  --max-width: 50%;
}
@media screen and (max-width: 1400px) {
  :root {
    --max-width: 700px;
  }
}
@media screen and (max-width: 768px) {
  :root {
    --in: 48px;
  }
}
@media screen and (max-width: 480px) {
  :root {
    --in: 24px;
  }
}

.page_labs_items .item .illustration .audio button, .main-header .menu-icon {
  transition: transform 0.2s ease;
}
.page_labs_items .item .illustration .audio button:hover, .main-header .menu-icon:hover {
  transform: scale(0.98);
}
.page_labs_items .item .illustration .audio button:active, .main-header .menu-icon:active {
  transform: scale(0.92);
}

.page_projects_items .item .content .actions .btn_primary, .page_home_projects .actions .content a, .pages .btn-secondary, .pages_paragraph .left .btn_primary,
.pages_paragraph .right .btn_primary {
  transition: transform 0.2s ease;
}
.page_projects_items .item .content .actions .btn_primary:hover, .page_home_projects .actions .content a:hover, .pages .btn-secondary:hover, .pages_paragraph .left .btn_primary:hover,
.pages_paragraph .right .btn_primary:hover {
  transform: scale(0.98);
}
.page_projects_items .item .content .actions .btn_primary:active, .page_home_projects .actions .content a:active, .pages .btn-secondary:active, .pages_paragraph .left .btn_primary:active,
.pages_paragraph .right .btn_primary:active {
  transform: scale(0.94);
}

@keyframes anim-blur {
  0% {
    filter: blur(50px);
    opacity: 0;
  }
  100% {
    filter: blur(0px);
    opacity: 1;
  }
}
@keyframes anim-logo {
  0% {
    opacity: 0;
    @media screen and (min-width: 480px) {
      @supports not (font: -apple-system-body) {
        filter: blur(10px);
      }
    }
  }
  100% {
    opacity: 1;
    @media screen and (min-width: 480px) {
      @supports not (font: -apple-system-body) {
        filter: blur(0px);
      }
    }
  }
}
@keyframes load {
  0% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.5);
  }
}
@keyframes disc {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes hours-flow {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
#preloader {
  position: fixed;
  background: hsl(240, 10%, 4%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999999;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
}
@media screen and (min-width: 480px) {
  @supports not (font: -apple-system-body) {
    #preloader .container {
      filter: url(#threshold);
    }
  }
}
#preloader .container .dots {
  display: flex;
  gap: 4px;
  animation: anim-logo 1s ease;
}
#preloader .container .dots .load {
  height: 24px;
  animation: load 0.8s ease-in-out infinite;
}
#preloader .container .dots .load:nth-child(2) {
  animation-delay: 0.1s;
}
#preloader .container .dots .load:nth-child(3) {
  animation-delay: 0.2s;
}

* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-family: "Google Sans Flex", sans-serif;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

html,
body {
  overscroll-behavior: none;
  overflow-x: hidden;
}

::-moz-selection {
  filter: none !important;
  background-color: hsl(345, 100%, 60%);
  color: hsl(0, 0%, 100%);
}

::selection {
  filter: none !important;
  background-color: hsl(345, 100%, 60%);
  color: hsl(0, 0%, 100%);
}
::-moz-selection * {
  filter: none !important;
}
::selection * {
  filter: none !important;
}

.pages {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100vw;
  max-width: 100vw;
  min-height: 100vh;
  background-color: hsl(240, 10%, 4%);
}
.pages_hero {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 140px;
  width: 100vw;
  padding: calc(var(--in) + 16px);
  padding-top: calc(80px + var(--in) + 16px);
  position: relative;
  overflow: hidden;
}
.pages_hero .title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  gap: 8px;
  z-index: 10;
  width: 100%;
  max-width: var(--max-width);
}
@media screen and (min-width: 480px) {
  @supports not (font: -apple-system-body) {
    .pages_hero .title {
      filter: url(#threshold);
    }
  }
}
.pages_hero .title h1 {
  font-family: "Google Sans Flex", sans-serif;
  font-size: 110px;
  line-height: 0.85;
  font-weight: 800;
  letter-spacing: -4px;
  text-decoration: none;
  text-transform: uppercase;
  font-variation-settings: "slnt" 0, "wdth" 60, "GRAD" 0, "ROND" 25;
  will-change: filter, opacity;
  color: hsl(0, 0%, 100%);
}
@media screen and (max-width: 1400px) {
  .pages_hero .title h1 {
    font-size: 96px;
  }
}
@media screen and (max-width: 1100px) {
  .pages_hero .title h1 {
    font-size: 80px;
  }
}
@media screen and (max-width: 768px) {
  .pages_hero .title h1 {
    font-size: 64px;
  }
}
@media screen and (max-width: 480px) {
  .pages_hero .title h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 0.85;
    letter-spacing: -0.4px;
    font-variation-settings: "slnt" 0, "wdth" 50, "GRAD" 0, "ROND" 40;
  }
}
@media screen and (min-width: 480px) {
  @supports not (font: -apple-system-body) {
    .pages_hero .title h1 {
      animation: anim-blur 2s cubic-bezier(0, 1, 0.8, 1);
      filter: blur(0px);
    }
  }
}
.pages_hero .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  max-width: var(--max-width);
  gap: 24px;
}
.pages_hero .content .paragraph .line {
  font-family: "Google Sans Flex", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 100;
  letter-spacing: 0.4px;
  font-variation-settings: "slnt" 0, "wdth" 100, "GRAD" 0, "ROND" 50;
  color: hsl(0, 0%, 100%);
  width: 100%;
  text-align: left;
}
.pages_hero .content .paragraph i {
  font-family: "Google Sans Flex", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 100;
  letter-spacing: 0.4px;
  font-variation-settings: "slnt" 0, "wdth" 100, "GRAD" 0, "ROND" 50;
  font-size: 12px;
  font-style: normal;
  color: hsl(210, 10%, 45%);
  margin-right: 4px;
}
.pages_hero .content .count .line {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.8px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10px;
  color: hsl(210, 10%, 45%);
}
@media screen and (max-width: 480px) {
  .pages_hero {
    padding-top: calc(80px + var(--in) + 16px + 300px);
    gap: 24px;
  }
}
.pages_paragraph {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 140px calc(var(--in) + 16px);
  width: 100%;
}
.pages_paragraph .left,
.pages_paragraph .right {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 80px;
  flex: 1;
  width: 100%;
  max-width: var(--max-width);
}
.pages_paragraph .left .label,
.pages_paragraph .right .label {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.8px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
  text-align: left;
  margin-top: 4px;
}
.pages_paragraph .left .label .line,
.pages_paragraph .right .label .line {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.8px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  color: hsl(0, 0%, 100%);
}
.pages_paragraph .left .paragraph,
.pages_paragraph .right .paragraph {
  font-family: "Google Sans Flex", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 100;
  letter-spacing: 0.4px;
  font-variation-settings: "slnt" 0, "wdth" 100, "GRAD" 0, "ROND" 50;
  font-size: 22px;
  letter-spacing: 0.8px;
  width: 100%;
  text-align: left;
  color: hsl(0, 0%, 100%);
}
@media screen and (max-width: 480px) {
  .pages_paragraph .left .paragraph,
  .pages_paragraph .right .paragraph {
    font-size: 18px;
  }
}
.pages_paragraph .left .paragraph i,
.pages_paragraph .right .paragraph i {
  font-family: "Google Sans Flex", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 100;
  letter-spacing: 0.4px;
  font-variation-settings: "slnt" 0, "wdth" 100, "GRAD" 0, "ROND" 50;
  font-size: 12px;
  font-style: normal;
  color: hsl(210, 10%, 45%);
  margin-right: 4px;
}
.pages_paragraph .left .pills,
.pages_paragraph .right .pills {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  gap: 8px;
  margin-top: -32px;
}
.pages_paragraph .left .pills .pill,
.pages_paragraph .right .pills .pill {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  height: 32px;
  border: 1px dashed hsl(210, 10%, 16%);
  border-radius: 6px;
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.8px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10px;
  color: hsl(0, 0%, 100%);
}
.pages_paragraph .left .btn_primary,
.pages_paragraph .right .btn_primary {
  font-family: "Google Sans Flex", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 100;
  letter-spacing: 0.4px;
  font-variation-settings: "slnt" 0, "wdth" 100, "GRAD" 0, "ROND" 50;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  padding: 8px 24px;
  text-decoration: none;
  height: 48px;
  gap: 12px;
  cursor: pointer;
  font-weight: 300;
  border: 1.2px dashed hsl(0, 0%, 100%);
  color: hsl(0, 0%, 100%);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.pages_paragraph .left .btn_primary svg,
.pages_paragraph .right .btn_primary svg {
  width: 12px;
  height: 12px;
  margin: 0px -4px;
}
.pages_paragraph .left .btn_primary svg path,
.pages_paragraph .right .btn_primary svg path {
  stroke: hsl(0, 0%, 100%);
}
.pages_paragraph .left .btn_primary:hover,
.pages_paragraph .right .btn_primary:hover {
  background-color: rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 480px) {
  .pages_paragraph .left .btn_primary,
  .pages_paragraph .right .btn_primary {
    width: 100%;
  }
}
@media screen and (max-width: 1100px) {
  .pages_paragraph {
    flex-direction: column;
  }
}
.pages .lightbox {
  position: fixed;
  inset: 0;
  background: rgba(9.18, 9.18, 11.22, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 9999;
  width: 100vw;
  padding: 16px;
}
.pages .lightbox img {
  width: 100%;
  max-height: 90vh;
  -o-object-fit: contain;
     object-fit: contain;
}
.pages .lightbox.active {
  opacity: 1;
  pointer-events: auto;
}
.pages .btn-secondary {
  font-family: "Google Sans Flex", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 100;
  letter-spacing: 0.4px;
  font-variation-settings: "slnt" 0, "wdth" 100, "GRAD" 0, "ROND" 50;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  padding: 8px 24px;
  text-decoration: none;
  height: 48px;
  gap: 12px;
  cursor: pointer;
  background-color: hsl(240, 6%, 12%);
  color: hsl(240, 10%, 4%);
}
.pages .btn-secondary svg {
  width: 12px;
  height: 12px;
  margin: 0px -4px;
}
.pages .btn-secondary svg path {
  stroke: hsl(0, 0%, 100%);
}
@media screen and (max-width: 480px) {
  .pages .btn-secondary {
    width: 100%;
  }
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  width: 100vw;
  padding: 16px;
  position: relative;
  z-index: 999;
  position: fixed;
  pointer-events: none;
}
.main-header .logo-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  pointer-events: auto;
}
.main-header .logo-container .logo {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 48px;
  height: 48px;
}
.main-header .logo-container .logo img {
  height: 48px;
}
.main-header .menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  width: -moz-fit-content;
  width: fit-content;
  pointer-events: auto;
}
.main-header .menu .hours {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 16px 8px 12px;
  background-color: hsl(0, 0%, 100%);
  border-radius: 6px;
  text-decoration: none;
  height: 48px;
  gap: 8px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.main-header .menu .hours .time,
.main-header .menu .hours .dot {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.8px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  color: hsl(240, 10%, 4%);
}
.main-header .menu .hours .dot {
  color: hsl(350, 100%, 50%);
}
.main-header .menu .hours.awake .dot {
  color: hsl(150, 80%, 40%);
}
.main-header .menu-icon {
  display: block;
  height: 48px;
  width: 48px;
  position: relative;
  cursor: pointer;
  z-index: 10;
  background-color: hsl(0, 0%, 100%);
  border-radius: 6px;
}
.main-header .menu-icon span {
  display: block;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  width: 16px;
  height: 1px;
  background-color: hsl(240, 10%, 4%);
  transition: all 0.2s ease;
  pointer-events: none;
}
.main-header .menu-icon span:first-child {
  top: calc(50% - 3px);
}
.main-header .menu-icon span:last-child {
  top: calc(50% + 3px);
}
.main-header .menu-icon.open span {
  top: 50%;
}
.main-header .menu-icon.open span:first-child {
  transform: translate(-50%, -50%) rotate(135deg);
}
.main-header .menu-icon.open span:last-child {
  transform: translate(-50%, -50%) rotate(225deg);
}
.main-header .menu-burger {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: -1;
  background-color: hsl(240, 10%, 4%);
  padding: calc(var(--in) + 16px);
  padding-top: calc(80px + var(--in) + 16px);
  transform: translateY(-100%);
  transition: transform 0.8s cubic-bezier(0.6, 0, 0.2, 1);
  gap: 48px;
}
.main-header .menu-burger .navigation .left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
}
.main-header .menu-burger .navigation .left .mask {
  overflow: hidden;
  display: block;
  width: 100%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
@media screen and (min-width: 480px) {
  @supports not (font: -apple-system-body) {
    .main-header .menu-burger .navigation .left .mask {
      filter: url(#threshold);
    }
  }
}
.main-header .menu-burger .navigation .left a {
  font-family: "Google Sans Flex", sans-serif;
  font-size: 96px;
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -3px;
  text-decoration: none;
  text-transform: uppercase;
  font-variation-settings: "slnt" 0, "wdth" 60, "GRAD" 0, "ROND" 25;
  color: hsl(0, 0%, 100%);
  transition: color 0.2s ease, padding-left 0.2s ease, filter 1s ease 0.2s;
  display: inline-block;
  will-change: transform, filter, opacity;
  width: 100%;
  padding: 8px 0px;
}
@media screen and (max-width: 1400px) {
  .main-header .menu-burger .navigation .left a {
    font-size: 80px;
  }
}
@media screen and (max-width: 1100px) {
  .main-header .menu-burger .navigation .left a {
    font-size: 72px;
  }
}
@media screen and (max-width: 768px) {
  .main-header .menu-burger .navigation .left a {
    font-size: 64px;
  }
}
@media screen and (max-width: 480px) {
  .main-header .menu-burger .navigation .left a {
    font-size: 48px;
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.4px;
    font-variation-settings: "slnt" 0, "wdth" 50, "GRAD" 0, "ROND" 40;
  }
}
@media screen and (min-width: 480px) {
  @supports not (font: -apple-system-body) {
    .main-header .menu-burger .navigation .left a {
      filter: blur(20px);
    }
  }
}
.main-header .menu-burger .navigation .left:hover a {
  color: hsl(210, 10%, 16%);
}
.main-header .menu-burger .navigation .left:hover a:hover {
  color: hsl(0, 0%, 100%);
  padding-left: 16px;
}
.main-header .menu-burger .subnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  gap: 40px;
}
.main-header .menu-burger .subnav .social {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 24px;
}
.main-header .menu-burger .subnav .social a {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.8px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10px;
  color: hsl(0, 0%, 100%);
}
.main-header .menu-burger .subnav .social a:hover {
  color: hsl(345, 100%, 60%);
}
.main-header .menu-burger .subnav .promo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-decoration: none;
  padding: 8px;
  border-radius: 10px;
  background-color: hsl(210, 10%, 8%);
  width: 100%;
  max-width: 350px;
  transition: transform 0.2s ease;
}
.main-header .menu-burger .subnav .promo img {
  height: 64px;
  width: 64px;
  border-radius: 6px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.main-header .menu-burger .subnav .promo .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 8px 16px;
  flex: 1;
  gap: 4px;
}
.main-header .menu-burger .subnav .promo .content .title {
  font-family: "Google Sans Flex", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 100;
  letter-spacing: 0.4px;
  font-variation-settings: "slnt" 0, "wdth" 100, "GRAD" 0, "ROND" 50;
  font-size: 12px;
  color: hsl(0, 0%, 100%);
}
.main-header .menu-burger .subnav .promo .content .link {
  font-family: "Google Sans Flex", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 100;
  letter-spacing: 0.4px;
  font-variation-settings: "slnt" 0, "wdth" 100, "GRAD" 0, "ROND" 50;
  font-size: 10px;
  color: hsl(210, 10%, 45%);
}
.main-header .menu-burger .subnav .promo .icon {
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-header .menu-burger .subnav .promo .icon svg {
  width: 16px;
  height: 16px;
}
.main-header .menu-burger .subnav .promo .icon svg path {
  stroke: hsl(0, 0%, 100%);
}
.main-header .menu-burger .subnav .promo:hover {
  transform: scale(1.01);
}
.main-header .menu-burger.open {
  transform: translateY(0%);
}
.main-header .menu-burger.open .left a {
  filter: blur(0px);
}
@media screen and (max-width: 480px) {
  .main-header .menu-burger {
    justify-content: flex-start;
  }
  .main-header .menu-burger .subnav .social {
    flex-direction: column;
    gap: 16px;
  }
}

.main-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: calc(var(--in) + 16px);
  gap: 140px;
  width: 100vw;
  position: relative;
  overflow: hidden;
}
.main-footer .title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  gap: 8px;
  z-index: 10;
  width: 100%;
  max-width: var(--max-width);
}
@media screen and (min-width: 480px) {
  @supports not (font: -apple-system-body) {
    .main-footer .title {
      filter: url(#threshold);
    }
  }
}
.main-footer .title h2 {
  font-family: "Google Sans Flex", sans-serif;
  font-size: 80px;
  line-height: 0.85;
  font-weight: 800;
  letter-spacing: -3px;
  text-decoration: none;
  text-transform: uppercase;
  font-variation-settings: "slnt" 0, "wdth" 60, "GRAD" 0, "ROND" 25;
  will-change: filter, opacity;
  color: hsl(0, 0%, 100%);
}
@media screen and (max-width: 1400px) {
  .main-footer .title h2 {
    font-size: 72px;
  }
}
@media screen and (max-width: 1100px) {
  .main-footer .title h2 {
    font-size: 64px;
  }
}
@media screen and (max-width: 768px) {
  .main-footer .title h2 {
    font-size: 56px;
  }
}
@media screen and (max-width: 480px) {
  .main-footer .title h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.4px;
    font-variation-settings: "slnt" 0, "wdth" 50, "GRAD" 0, "ROND" 40;
  }
}
@media screen and (min-width: 480px) {
  @supports not (font: -apple-system-body) {
    .main-footer .title h2 {
      animation: anim-blur 2s cubic-bezier(0, 1, 0.8, 1);
      filter: blur(0px);
    }
  }
}
.main-footer .legal {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}
.main-footer .legal .logo {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  flex: 1;
}
.main-footer .legal .logo img {
  width: 24px;
}
.main-footer .legal nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: var(--max-width);
  gap: 24px;
}
.main-footer .legal nav a {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.8px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10px;
  color: hsl(210, 10%, 45%);
  transition: color 0.2s ease;
}
.main-footer .legal nav a:hover {
  color: hsl(345, 100%, 60%);
}
@media screen and (max-width: 480px) {
  .main-footer .legal {
    flex-direction: column;
  }
}

.page_home_projects {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  padding: 0px 16px;
  gap: 80px;
}
.page_home_projects .title {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  padding: 0px var(--in);
}
@media screen and (min-width: 480px) {
  @supports not (font: -apple-system-body) {
    .page_home_projects .title {
      filter: url(#threshold);
    }
  }
}
.page_home_projects .title h2 {
  width: 100%;
  max-width: var(--max-width);
}
@media screen and (min-width: 480px) {
  @supports not (font: -apple-system-body) {
    .page_home_projects .title h2 {
      animation: anim-blur 2s cubic-bezier(0, 1, 0.8, 1);
    }
  }
}
.page_home_projects .title h2 .line {
  font-family: "Google Sans Flex", sans-serif;
  font-size: 80px;
  line-height: 0.85;
  font-weight: 800;
  letter-spacing: -3px;
  text-decoration: none;
  text-transform: uppercase;
  font-variation-settings: "slnt" 0, "wdth" 60, "GRAD" 0, "ROND" 25;
  width: 100%;
  text-align: left;
  color: hsl(0, 0%, 100%);
}
@media screen and (max-width: 1400px) {
  .page_home_projects .title h2 .line {
    font-size: 72px;
  }
}
@media screen and (max-width: 1100px) {
  .page_home_projects .title h2 .line {
    font-size: 64px;
  }
}
@media screen and (max-width: 768px) {
  .page_home_projects .title h2 .line {
    font-size: 56px;
  }
}
@media screen and (max-width: 480px) {
  .page_home_projects .title h2 .line {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.4px;
    font-variation-settings: "slnt" 0, "wdth" 50, "GRAD" 0, "ROND" 40;
  }
}
.page_home_projects .items {
  width: 100%;
  display: flex;
  gap: 16px;
}
.page_home_projects .items .item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  text-decoration: none;
  flex: 1;
  gap: 48px;
}
.page_home_projects .items .item .illustration {
  display: flex;
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
  border-radius: 6px;
}
.page_home_projects .items .item .illustration img,
.page_home_projects .items .item .illustration video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.page_home_projects .items .item .illustration .icon {
  width: 16px;
  height: 16px;
  position: absolute;
  right: 16px;
  top: 16px;
}
.page_home_projects .items .item .illustration .icon path {
  stroke: hsl(0, 0%, 100%);
}
.page_home_projects .items .item .infos {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  gap: 16px;
  padding: 0px var(--in);
  position: relative;
}
.page_home_projects .items .item .infos h3 .line {
  font-family: "Google Sans Flex", sans-serif;
  font-size: 40px;
  line-height: 1;
  letter-spacing: 0.2px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  font-variation-settings: "slnt" 0, "wdth" 60, "GRAD" 0, "ROND" 40;
  width: 100%;
  color: hsl(0, 0%, 100%);
  text-align: left;
}
@media screen and (max-width: 1100px) {
  .page_home_projects .items .item .infos h3 .line {
    font-size: 36px;
  }
}
@media screen and (max-width: 768px) {
  .page_home_projects .items .item .infos h3 .line {
    font-size: 32px;
  }
}
@media screen and (max-width: 480px) {
  .page_home_projects .items .item .infos h3 .line {
    font-size: 28px;
    font-variation-settings: "slnt" 0, "wdth" 50, "GRAD" 0, "ROND" 40;
  }
}
.page_home_projects .items .item .infos .link .line {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.8px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  color: hsl(210, 10%, 45%);
}
@media screen and (max-width: 1100px) {
  .page_home_projects .items .item:nth-child(3) {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .page_home_projects .items .item:nth-child(2), .page_home_projects .items .item:nth-child(3) {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .page_home_projects .items {
    flex-direction: column;
    gap: 80px;
  }
}
.page_home_projects .actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  padding: 0px var(--in);
}
.page_home_projects .actions .content {
  display: flex;
  width: 100%;
  max-width: var(--max-width);
  gap: 8px;
}
.page_home_projects .actions .content a {
  font-family: "Google Sans Flex", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 100;
  letter-spacing: 0.4px;
  font-variation-settings: "slnt" 0, "wdth" 100, "GRAD" 0, "ROND" 50;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  padding: 8px 24px;
  text-decoration: none;
  height: 48px;
  gap: 12px;
  cursor: pointer;
  font-weight: 300;
  border: 1.2px dashed hsl(0, 0%, 100%);
  color: hsl(0, 0%, 100%);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.page_home_projects .actions .content a svg {
  width: 12px;
  height: 12px;
  margin: 0px -4px;
}
.page_home_projects .actions .content a svg path {
  stroke: hsl(0, 0%, 100%);
}
.page_home_projects .actions .content a:hover {
  background-color: rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 480px) {
  .page_home_projects .actions .content a {
    width: 100%;
  }
}

.page_single_hero {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  width: 100vw;
  height: 100vh;
  padding: calc(var(--in) + 16px);
  padding-top: calc(80px + var(--in) + 16px);
  background-color: hsl(210, 10%, 8%);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  z-index: -1;
  overflow: hidden;
}
.page_single_hero .title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  gap: 8px;
  z-index: 10;
  width: 100%;
  max-width: var(--max-width);
}
@media screen and (min-width: 480px) and (min-width: 480px) {
  @supports not (font: -apple-system-body) {
    .page_single_hero .title {
      filter: url(#threshold);
    }
  }
}
.page_single_hero .title h1 {
  font-family: "Google Sans Flex", sans-serif;
  font-size: 110px;
  line-height: 0.85;
  font-weight: 800;
  letter-spacing: -4px;
  text-decoration: none;
  text-transform: uppercase;
  font-variation-settings: "slnt" 0, "wdth" 60, "GRAD" 0, "ROND" 25;
  will-change: filter, opacity;
  max-width: 600px;
  color: hsl(0, 0%, 100%);
}
@media screen and (max-width: 1400px) {
  .page_single_hero .title h1 {
    font-size: 96px;
  }
}
@media screen and (max-width: 1100px) {
  .page_single_hero .title h1 {
    font-size: 80px;
  }
}
@media screen and (max-width: 768px) {
  .page_single_hero .title h1 {
    font-size: 64px;
  }
}
@media screen and (max-width: 480px) {
  .page_single_hero .title h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 0.85;
    letter-spacing: -0.4px;
    font-variation-settings: "slnt" 0, "wdth" 50, "GRAD" 0, "ROND" 40;
  }
}
@media screen and (min-width: 480px) {
  @supports not (font: -apple-system-body) {
    .page_single_hero .title h1 {
      animation: anim-blur 2s cubic-bezier(0, 1, 0.8, 1);
      filter: blur(0px);
    }
  }
}
.page_single_hero .infos {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  z-index: 10;
  width: 100%;
  max-width: var(--max-width);
}
.page_single_hero .infos .name,
.page_single_hero .infos .sector,
.page_single_hero .infos .date {
  color: hsl(0, 0%, 100%);
}
.page_single_hero .infos .name .line,
.page_single_hero .infos .sector .line,
.page_single_hero .infos .date .line {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.8px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  color: hsl(0, 0%, 100%);
}
.page_single_hero::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(9.18, 9.18, 11.22, 0.8);
  top: 0px;
  left: 0px;
  z-index: 1;
}
.page_single_hero #coverCanvas {
  position: absolute;
  top: 0px;
  left: 0px;
}
@media screen and (max-width: 480px) {
  .page_single_hero {
    background-attachment: initial;
    justify-content: flex-end;
  }
}
.page_single_grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100vw;
  padding: 0px 16px;
  gap: 16px;
}
.page_single_grid .full-width {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  overflow: hidden;
}
.page_single_grid .full-width img,
.page_single_grid .full-width video {
  width: 100%;
}
.page_single_grid .two-columns {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}
.page_single_grid .two-columns img,
.page_single_grid .two-columns video {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
}
.page_single_grid .video-canvas {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.page_single_grid .video-canvas canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.page_contact_hero {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  width: 100vw;
  height: 100vh;
  padding: calc(var(--in) + 16px);
  padding-top: calc(80px + var(--in) + 16px);
  position: relative;
  overflow: hidden;
}
.page_contact_hero .title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  gap: 8px;
  z-index: 10;
  width: 100%;
  max-width: var(--max-width);
}
@media screen and (min-width: 480px) {
  @supports not (font: -apple-system-body) {
    .page_contact_hero .title {
      filter: url(#threshold);
    }
  }
}
.page_contact_hero .title h1 {
  font-family: "Google Sans Flex", sans-serif;
  font-size: 110px;
  line-height: 0.85;
  font-weight: 800;
  letter-spacing: -4px;
  text-decoration: none;
  text-transform: uppercase;
  font-variation-settings: "slnt" 0, "wdth" 60, "GRAD" 0, "ROND" 25;
  will-change: filter, opacity;
  color: hsl(0, 0%, 100%);
}
@media screen and (max-width: 1400px) {
  .page_contact_hero .title h1 {
    font-size: 96px;
  }
}
@media screen and (max-width: 1100px) {
  .page_contact_hero .title h1 {
    font-size: 80px;
  }
}
@media screen and (max-width: 768px) {
  .page_contact_hero .title h1 {
    font-size: 64px;
  }
}
@media screen and (max-width: 480px) {
  .page_contact_hero .title h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 0.85;
    letter-spacing: -0.4px;
    font-variation-settings: "slnt" 0, "wdth" 50, "GRAD" 0, "ROND" 40;
  }
}
@media screen and (min-width: 480px) {
  @supports not (font: -apple-system-body) {
    .page_contact_hero .title h1 {
      animation: anim-blur 2s cubic-bezier(0, 1, 0.8, 1);
      filter: blur(0px);
    }
  }
}
.page_contact_hero .infos {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  z-index: 10;
  width: 100%;
  max-width: var(--max-width);
}
.page_contact_hero .infos .contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
}
.page_contact_hero .infos .contact .label .line {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.8px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  color: hsl(210, 10%, 45%);
}
.page_contact_hero .infos .contact .value {
  text-decoration: none;
}
.page_contact_hero .infos .contact .value .line {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.8px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  color: hsl(0, 0%, 100%);
}
.page_contact_hero #p5-canvas {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  mix-blend-mode: screen;
  z-index: -1;
  opacity: 0.16;
  pointer-events: none;
}
@media screen and (max-width: 480px) {
  .page_contact_hero {
    justify-content: flex-end;
  }
}

.page_projects_items {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 16px;
  gap: 16px;
  width: 100vw;
}
.page_projects_items .item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  width: 100%;
  height: 100vh;
  max-height: 600px;
  padding: var(--in);
  gap: 48px;
  border-radius: 6px;
  overflow: hidden;
}
.page_projects_items .item .title {
  display: flex;
  width: 100%;
}
@media screen and (min-width: 480px) {
  @supports not (font: -apple-system-body) {
    .page_projects_items .item .title {
      filter: url(#threshold);
    }
  }
}
.page_projects_items .item .title h2 {
  font-family: "Google Sans Flex", sans-serif;
  font-size: 80px;
  line-height: 0.85;
  font-weight: 800;
  letter-spacing: -3px;
  text-decoration: none;
  text-transform: uppercase;
  font-variation-settings: "slnt" 0, "wdth" 60, "GRAD" 0, "ROND" 25;
  will-change: filter, opacity;
  max-width: 500px;
  color: hsl(0, 0%, 100%);
}
@media screen and (max-width: 1400px) {
  .page_projects_items .item .title h2 {
    font-size: 72px;
  }
}
@media screen and (max-width: 1100px) {
  .page_projects_items .item .title h2 {
    font-size: 64px;
  }
}
@media screen and (max-width: 768px) {
  .page_projects_items .item .title h2 {
    font-size: 56px;
  }
}
@media screen and (max-width: 480px) {
  .page_projects_items .item .title h2 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.4px;
    font-variation-settings: "slnt" 0, "wdth" 50, "GRAD" 0, "ROND" 40;
  }
}
@media screen and (min-width: 480px) {
  @supports not (font: -apple-system-body) {
    .page_projects_items .item .title h2 {
      animation: anim-blur 2s cubic-bezier(0, 1, 0.8, 1);
      filter: blur(0px);
    }
  }
}
.page_projects_items .item .content {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  width: 100%;
  z-index: 1;
  gap: 48px;
}
.page_projects_items .item .content .infos {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  gap: 4px;
  width: 100%;
}
.page_projects_items .item .content .infos span .line {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.8px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  color: hsl(0, 0%, 100%);
}
.page_projects_items .item .content .actions {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex: 1;
  max-width: var(--max-width);
  z-index: 10;
}
.page_projects_items .item .content .actions .btn_primary {
  font-family: "Google Sans Flex", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 100;
  letter-spacing: 0.4px;
  font-variation-settings: "slnt" 0, "wdth" 100, "GRAD" 0, "ROND" 50;
  font-size: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  padding: 8px 24px;
  text-decoration: none;
  height: 48px;
  gap: 12px;
  cursor: pointer;
  font-weight: 300;
  border: 1.2px dashed hsl(0, 0%, 100%);
  color: hsl(0, 0%, 100%);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.page_projects_items .item .content .actions .btn_primary svg {
  width: 12px;
  height: 12px;
  margin: 0px -4px;
}
.page_projects_items .item .content .actions .btn_primary svg path {
  stroke: hsl(0, 0%, 100%);
}
.page_projects_items .item .content .actions .btn_primary:hover {
  background-color: rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 480px) {
  .page_projects_items .item .content .actions .btn_primary {
    width: 100%;
  }
}
.page_projects_items .item .cover {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  opacity: 0.4;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.page_projects_items .item .cover canvas {
  height: 100%;
  width: 100%;
  display: block;
}
@media screen and (max-width: 480px) {
  .page_projects_items .item {
    justify-content: flex-end;
    gap: 24px;
  }
  .page_projects_items .item .cover {
    background-attachment: initial;
  }
  .page_projects_items .item .content {
    flex-direction: column;
  }
  .page_projects_items .item .content .actions {
    width: 100%;
  }
}

.page_labs_items {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 16px;
  grid-row-gap: 32px;
  padding: 0px calc(var(--in) + 16px);
}
.page_labs_items .item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}
.page_labs_items .item .illustration {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  margin-bottom: 16px;
}
.page_labs_items .item .illustration .image {
  display: flex;
  width: 100%;
  aspect-ratio: 4/5;
}
.page_labs_items .item .illustration .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.page_labs_items .item .illustration .audio {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  background-color: hsl(210, 10%, 8%);
  z-index: 1;
  aspect-ratio: 4/5;
  position: relative;
}
.page_labs_items .item .illustration .audio .disc {
  width: calc(100% - 64px);
  aspect-ratio: 1/1;
  background-image: url("../images/disc.png");
  background-position: center;
  background-size: cover;
  border-radius: 500px;
  position: absolute;
  z-index: 0;
  mix-blend-mode: luminosity;
}
.page_labs_items .item .illustration .audio button {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 100px;
  height: 56px;
  width: 56px;
  z-index: 1;
  cursor: pointer;
  position: relative;
  background-color: hsl(0, 0%, 100%);
}
.page_labs_items .item .illustration .audio button svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
}
.page_labs_items .item .illustration .audio button svg.icon-play {
  transform: translate(-50%, -50%) scale(1);
  filter: blur(0px);
  opacity: 1;
}
.page_labs_items .item .illustration .audio button svg.icon-pause {
  transform: translate(-50%, -50%) scale(0);
  filter: blur(10px);
  opacity: 0;
}
.page_labs_items .item .illustration .audio.play .disc {
  animation: disc 20s linear infinite;
}
.page_labs_items .item .illustration .audio.play button svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
}
.page_labs_items .item .illustration .audio.play button svg.icon-play {
  transform: translate(-50%, -50%) scale(0);
  filter: blur(10px);
  opacity: 0;
}
.page_labs_items .item .illustration .audio.play button svg.icon-pause {
  transform: translate(-50%, -50%) scale(1);
  filter: blur(0px);
  opacity: 1;
}
.page_labs_items .item .illustration .audio .progress {
  position: absolute;
  inset: 0;
  transform: translate(-50%, -50%) rotate(-90deg);
  top: 50%;
  left: 50%;
  pointer-events: none;
  z-index: 1;
  width: 88px;
  height: 88px;
}
.page_labs_items .item .illustration .audio .progress circle {
  fill: none;
  stroke-width: 1;
}
.page_labs_items .item .illustration .audio .progress .bg {
  stroke: rgba(255, 255, 255, 0.08);
}
.page_labs_items .item .illustration .audio .progress .bar {
  stroke: hsl(0, 0%, 100%);
  stroke-dasharray: 125.6;
  stroke-dashoffset: 125.6;
  transition: stroke-dashoffset 0.2s linear;
  stroke-linecap: round;
}
.page_labs_items .item .illustration .video {
  display: flex;
  width: 100%;
  aspect-ratio: 4/5;
  position: relative;
}
.page_labs_items .item .illustration .video canvas {
  height: 100%;
  width: 100%;
}
.page_labs_items .item .infos {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  gap: 8px;
}
.page_labs_items .item .infos .format {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.8px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10px;
  color: hsl(0, 0%, 100%);
}
.page_labs_items .item .infos .date {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.8px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10px;
  color: hsl(210, 10%, 45%);
}
@media screen and (max-width: 1400px) {
  .page_labs_items {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 1100px) {
  .page_labs_items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .page_labs_items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .page_labs_items {
    grid-template-columns: repeat(1, 1fr);
  }
}

.page_legal_container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  width: 100vw;
  padding: calc(var(--in) + 16px);
  padding-top: calc(80px + var(--in) + 16px);
  gap: 80px;
}
.page_legal_container .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  max-width: var(--max-width);
  gap: 24px;
}
.page_legal_container .content h1 {
  font-family: "Google Sans Flex", sans-serif;
  font-size: 80px;
  line-height: 0.85;
  font-weight: 800;
  letter-spacing: -3px;
  text-decoration: none;
  text-transform: uppercase;
  font-variation-settings: "slnt" 0, "wdth" 60, "GRAD" 0, "ROND" 25;
  width: 100%;
  text-align: left;
  color: hsl(0, 0%, 100%);
}
@media screen and (max-width: 1400px) {
  .page_legal_container .content h1 {
    font-size: 72px;
  }
}
@media screen and (max-width: 1100px) {
  .page_legal_container .content h1 {
    font-size: 64px;
  }
}
@media screen and (max-width: 768px) {
  .page_legal_container .content h1 {
    font-size: 56px;
  }
}
@media screen and (max-width: 480px) {
  .page_legal_container .content h1 {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.4px;
    font-variation-settings: "slnt" 0, "wdth" 50, "GRAD" 0, "ROND" 40;
  }
}
.page_legal_container .content h2 {
  font-family: "Google Sans Flex", sans-serif;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.8px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  font-variation-settings: "slnt" 0, "wdth" 60, "GRAD" 0, "ROND" 40;
  width: 100%;
  text-align: left;
  color: hsl(0, 0%, 100%);
}
@media screen and (max-width: 1100px) {
  .page_legal_container .content h2 {
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  .page_legal_container .content h2 {
    font-size: 18px;
    font-variation-settings: "slnt" 0, "wdth" 50, "GRAD" 0, "ROND" 40;
  }
}
.page_legal_container .content p {
  font-family: "Google Sans Flex", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 100;
  letter-spacing: 0.4px;
  font-variation-settings: "slnt" 0, "wdth" 100, "GRAD" 0, "ROND" 50;
  width: 100%;
  text-align: left;
  color: hsl(210, 10%, 45%);
}
.page_legal_container .content .table {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
}
.page_legal_container .content .table .row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  padding: 24px 0px;
  border-bottom: 1px solid hsl(210, 10%, 8%);
}
.page_legal_container .content .table .row .label {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.8px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  color: hsl(210, 10%, 45%);
  width: -moz-fit-content;
  width: fit-content;
}
.page_legal_container .content .table .row .value {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.8px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  text-align: right;
  color: hsl(0, 0%, 100%);
  width: -moz-fit-content;
  width: fit-content;
}
.page_legal_container .content .table .row:last-child {
  border: none;
}
@media screen and (max-width: 480px) {
  .page_legal_container .content .table .row {
    flex-direction: column;
    gap: 8px;
  }
  .page_legal_container .content .table .row .value {
    text-align: left;
  }
}

.page_hours_view {
  width: 100vw;
  padding: calc(var(--in) + 16px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  height: calc(100vh - 154px);
  padding-top: 154px;
  position: relative;
}
.page_hours_view h2 {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.8px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  color: hsl(0, 0%, 100%);
}
@media screen and (max-width: 480px) {
  .page_hours_view h2 {
    text-align: left;
  }
}
.page_hours_view .mode_view {
  width: 100%;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page_hours_view .mode_view.active {
  display: flex;
}
.page_hours_view .mode_exact .display {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.8px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 72px;
  font-weight: 100;
  width: 100%;
  text-align: center;
  color: hsl(0, 0%, 100%);
}
@media screen and (max-width: 1100px) {
  .page_hours_view .mode_exact .display {
    font-size: 64px;
  }
}
@media screen and (max-width: 768px) {
  .page_hours_view .mode_exact .display {
    font-size: 48px;
  }
}
@media screen and (max-width: 480px) {
  .page_hours_view .mode_exact .display {
    font-size: 40px;
  }
}
@media screen and (max-width: 480px) {
  .page_hours_view .mode_exact .display {
    text-align: left;
  }
}
.page_hours_view .mode_parler .effects {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 480px) {
  @supports not (font: -apple-system-body) {
    .page_hours_view .mode_parler .effects {
      filter: url(#threshold);
    }
  }
}
.page_hours_view .mode_parler .effects .display {
  font-family: "Google Sans Flex", sans-serif;
  font-size: 80px;
  line-height: 0.85;
  font-weight: 800;
  letter-spacing: -3px;
  text-decoration: none;
  text-transform: uppercase;
  font-variation-settings: "slnt" 0, "wdth" 60, "GRAD" 0, "ROND" 25;
  color: hsl(0, 0%, 100%);
  text-align: center;
  width: 100%;
  max-width: 900px;
}
@media screen and (max-width: 1400px) {
  .page_hours_view .mode_parler .effects .display {
    font-size: 72px;
  }
}
@media screen and (max-width: 1100px) {
  .page_hours_view .mode_parler .effects .display {
    font-size: 64px;
  }
}
@media screen and (max-width: 768px) {
  .page_hours_view .mode_parler .effects .display {
    font-size: 56px;
  }
}
@media screen and (max-width: 480px) {
  .page_hours_view .mode_parler .effects .display {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.4px;
    font-variation-settings: "slnt" 0, "wdth" 50, "GRAD" 0, "ROND" 40;
  }
}
@media screen and (max-width: 480px) {
  .page_hours_view .mode_parler .effects .display {
    text-align: left;
  }
}
.page_hours_view .mode_flow .display {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.8px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 72px;
  font-weight: 100;
  width: 100%;
  text-align: center;
  color: hsl(0, 0%, 100%);
  animation: hours-flow 0.4s linear infinite;
}
@media screen and (max-width: 1100px) {
  .page_hours_view .mode_flow .display {
    font-size: 64px;
  }
}
@media screen and (max-width: 768px) {
  .page_hours_view .mode_flow .display {
    font-size: 48px;
  }
}
@media screen and (max-width: 480px) {
  .page_hours_view .mode_flow .display {
    font-size: 40px;
  }
}
@media screen and (max-width: 480px) {
  .page_hours_view .mode_flow .display {
    text-align: left;
  }
}
.page_hours_view .mode_disorder .display {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.8px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 72px;
  font-weight: 100;
  width: 100%;
  text-align: center;
  color: hsl(0, 0%, 100%);
}
@media screen and (max-width: 1100px) {
  .page_hours_view .mode_disorder .display {
    font-size: 64px;
  }
}
@media screen and (max-width: 768px) {
  .page_hours_view .mode_disorder .display {
    font-size: 48px;
  }
}
@media screen and (max-width: 480px) {
  .page_hours_view .mode_disorder .display {
    font-size: 40px;
  }
}
.page_hours_view .mode_disorder .display span {
  position: absolute;
  top: 178px;
}
.page_hours_view .mode_disorder .display span:nth-child(2) {
  top: 40%;
  right: var(--in);
}
.page_hours_view .mode_disorder .display span:nth-child(3) {
  top: 75%;
  left: 25%;
}
@media screen and (max-width: 480px) {
  .page_hours_view .mode_disorder .display {
    text-align: left;
  }
}
.page_hours_view .mode_code .display {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.8px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  color: hsl(0, 0%, 100%);
}
@media screen and (max-width: 480px) {
  .page_hours_view .mode_code .display {
    text-align: left;
  }
}
.page_hours_view .mode_existence .display {
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.8px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 72px;
  font-weight: 100;
  width: 100%;
  text-align: center;
  color: hsl(0, 0%, 100%);
}
@media screen and (max-width: 1100px) {
  .page_hours_view .mode_existence .display {
    font-size: 64px;
  }
}
@media screen and (max-width: 768px) {
  .page_hours_view .mode_existence .display {
    font-size: 48px;
  }
}
@media screen and (max-width: 480px) {
  .page_hours_view .mode_existence .display {
    font-size: 40px;
  }
}
@media screen and (max-width: 480px) {
  .page_hours_view .mode_existence .display {
    text-align: left;
  }
}
.page_hours_mode {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--in) 16px;
  width: 100vw;
}
.page_hours_mode .switch {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  padding: 8px;
  border-radius: 6px;
  gap: 8px;
  overflow-x: scroll;
  background-color: hsl(240, 10%, 4%);
  border: 1px dashed hsl(210, 10%, 16%);
}
.page_hours_mode .switch .mode {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px;
  height: 40px;
  border-radius: 6px;
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.8px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 10px;
  color: hsl(210, 10%, 45%);
  white-space: nowrap;
  cursor: pointer;
}
.page_hours_mode .switch .mode.active {
  background-color: hsl(240, 6%, 12%);
  color: hsl(0, 0%, 100%);
  opacity: 1;
}/*# sourceMappingURL=styles.css.map */