@charset "UTF-8";
/*
@font-face {
  font-display: swap; 
  font-family: 'Sora';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/sora-v17-latin-300.woff2') format('woff2'); 
}

@font-face {
  font-display: swap; 
  font-family: 'Sora';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/sora-v17-latin-regular.woff2') format('woff2'); 
}

@font-face {
  font-display: swap; 
  font-family: 'Sora';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/sora-v17-latin-500.woff2') format('woff2'); 
}

@font-face {
  font-display: swap; 
  font-family: 'Sora';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/sora-v17-latin-600.woff2') format('woff2'); 
}

@font-face {
  font-display: swap; 
  font-family: 'Sora';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/sora-v17-latin-700.woff2') format('woff2'); 
}

@font-face {
  font-display: swap; 
  font-family: 'Sora';
  font-style: normal;
  font-weight: 800;
  src: url('../fonts/sora-v17-latin-800.woff2') format('woff2'); 
}
*/
@font-face {
  font-family: "Sora";
  src: url("../fonts/Sora-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 800;
  font-style: normal;
  font-display: block;
}
:root {
  --fontSize13: 0.722rem;
  --fontSize15: 0.833rem;
  --fontSize16: 0.888rem;
  --fontSize18: 1rem;
  --fontSize22: 1.222rem;
  --fontSize23: 1.277rem;
  --fontSize24: 1.333rem;
  --fontSize40: 2.222rem;
  --fontSize57: 3.166rem;
  --fontSize76: 4.222rem;
  --fontSize110: 6.111rem;
  --fontSize130: 7.222rem;
  --fontSize350: 19.44rem;
  --sideSpacing: 1.8vw;
  --viewportHeight: 41.3rem;
  --headerHeight: 4.1rem;
  --borderWidth: 1.5px;
  --colorBlack: #000000;
  --colorPurple: #7F00FF;
  --colorPink: #F540B1;
  --colorGreen: #DAFF6B;
  --borderColor: rgba(00,00,00,0.4);
}

input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
input[type=submit],
button {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
}

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

*:focus:not(:focus-visible) {
  outline: 0;
}

html,
body {
  scrollbar-gutter: stable;
}

html {
  font-size: 1.25vw;
}

body {
  margin: 0;
  padding: 0;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: var(--fontSize18);
  line-height: 1.222;
  -webkit-text-size-adjust: 100%;
  font-family: "Sora";
  color: var(--colorBlack);
  font-weight: 400;
  position: relative;
  /*
  &:before {
  	content: '';
  	display: block;
  	width: 1px;
  	height: 100%;
  	top: 0;
  	bottom: 0;
  	left: 50%;
  	transform: translateX(-50%);
  	background-color: yellow;
  	position: fixed;
  }
  */
}

.preview_check {
  position: fixed;
  left: 10px;
  top: 10px;
  z-index: 999999;
}

body:not(.wp-admin) .preview {
  width: 100%;
  position: absolute;
  left: 0%;
  top: -7.7rem;
  height: auto;
  z-index: 999999;
  pointer-events: none;
  opacity: 0.4;
  display: block;
}

.preview_check:checked + .preview {
  display: none;
}

[data-anchor-target] {
  cursor: pointer;
}

header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  right: 0;
  z-index: 99;
  overflow: clip;
}
header .innerwrapper {
  display: grid;
  grid-template-columns: 10rem 1fr 10rem;
  height: var(--headerHeight);
  align-items: center;
}
header .innerwrapper .logo_text {
  font-size: var(--fontSize13);
  font-weight: 700;
  color: var(--colorBlack);
  text-decoration: none;
  grid-column: 1/2;
  letter-spacing: 0.04em;
  grid-row: 1/2;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
header .innerwrapper .logo {
  font-size: 0;
  line-height: 0;
  grid-column: 1/2;
  grid-row: 1/2;
  margin-block: auto;
  width: 2rem;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateX(-200%);
  margin-top: 0.8rem;
}
header .innerwrapper .logo svg {
  width: 100%;
  height: auto;
}
header .innerwrapper .mainnav {
  grid-column: 2/3;
  grid-row: 1/2;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  height: 100%;
}
header .innerwrapper .mainnav ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: var(--fontSize13);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  gap: 0 3.55em;
  height: 100%;
  position: relative;
}
header .innerwrapper .mainnav ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
header .innerwrapper .mainnav ul li a {
  color: inherit;
  text-decoration: none;
  position: relative;
}
header .innerwrapper .hamburger {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  position: relative;
  width: 1.5rem;
  aspect-ratio: 1/0.94;
  grid-column: 3/4;
  grid-row: 1/2;
  margin-left: auto;
  margin-block: auto;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateX(200%) translateY(-8%);
  cursor: pointer;
}
header .innerwrapper .hamburger .hamburger__inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform: rotate(90deg);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
header .innerwrapper .hamburger svg path {
  stroke-width: 3;
}
header .innerwrapper .hamburger .l_right_top {
  width: 60%;
  position: absolute;
  right: 0;
  top: 0;
  height: auto;
}
header .innerwrapper .hamburger .l_left_bottom {
  width: 60%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: auto;
}
header.is-fixed .innerwrapper .logo_text {
  transform: translateX(-100%);
}
header.is-fixed .innerwrapper .logo {
  transform: translateX(0%);
}
header.is-fixed .innerwrapper .mainnav {
  transition: transform 0.6s cubic-bezier(0.36, 0, 0.66, -0.56);
  transform: translateY(-100%);
}
header.is-fixed .innerwrapper .mainnav.is-active {
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform: translateY(0%);
}
header.is-fixed .innerwrapper .hamburger {
  transform: translateX(0%) translateY(-8%);
}
header.is-fixed .innerwrapper .hamburger.is-active .hamburger__inner {
  transform: rotate(0deg);
}

.scroll__progress {
  --scrollProgress: 0%;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  height: 2px;
  z-index: 990;
}
.scroll__progress:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  height: 2px;
  background-color: var(--colorPink);
  width: var(--scrollProgress);
}

.side__scramble {
  position: fixed;
  left: var(--sideSpacing);
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: var(--fontSize13);
  font-weight: 800;
  color: var(--colorBlack);
  text-decoration: none;
  letter-spacing: 0.4em;
  text-transform: uppercase;
}

.innerwrapper {
  width: calc(100% - var(--sideSpacing) - var(--sideSpacing));
  margin: 0 auto;
}

img {
  border: 0;
}

p:first-child {
  margin-top: 0;
}

p:last-child {
  margin-bottom: 0;
}

section {
  overflow-x: clip;
}

.section__start {
  display: grid;
  grid-template-columns: 29.2% 8% 12.8% 1fr 10%;
  grid-template-rows: 0.63fr 0.35fr 1fr;
  min-height: var(--viewportHeight);
  border-bottom: var(--borderWidth) solid var(--borderColor);
  position: relative;
}
.section__start .background_gradient {
  position: relative;
  z-index: -1;
  grid-column: 4/6;
  grid-row: 1/4;
  width: 100%;
  height: 158.5%;
  background: linear-gradient(90deg, #DAFF6B 0%, #FFFFFF 100%);
}
.section__start .jellyfish {
  font-size: 0;
  line-height: 0;
  position: absolute;
  z-index: 3;
  width: 65%;
  right: 0.5%;
  top: -25.5%;
  pointer-events: none;
}
.section__start .jellyfish img,
.section__start .jellyfish video {
  width: 100%;
  height: auto;
  transform: rotate(52deg);
}
.section__start .column {
  width: 100%;
  position: relative;
  z-index: 2;
}
.section__start .column:nth-child(1) {
  border-right: var(--borderWidth) solid var(--borderColor);
  border-bottom: var(--borderWidth) solid var(--borderColor);
  grid-column: 1/2;
  grid-row: 1/2;
}
.section__start .column:nth-child(2) {
  border-bottom: var(--borderWidth) solid var(--borderColor);
  grid-column: 2/4;
  grid-row: 1/2;
}
.section__start .column:nth-child(3) {
  border-right: var(--borderWidth) solid var(--borderColor);
  grid-column: 1/3;
  grid-row: 2/4;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 1.5rem;
}
.section__start .column:nth-child(3) h1 {
  font-size: var(--fontSize110);
  margin: 0;
  font-weight: 800;
  line-height: 0.909;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.section__start .column:nth-child(4) {
  border-top: var(--borderWidth) solid var(--borderColor);
  grid-column: 4/5;
  grid-row: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section__start .column:nth-child(4) h2 {
  font-size: var(--fontSize23);
  margin: 0.4em 0 0 0.4em;
  font-weight: 800;
  line-height: 1.26;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  text-align: right;
  position: relative;
}
.section__start .column:nth-child(4) h2:before {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='55.59' height='80' viewBox='0 0 55.59 80'><path fill='%237f00ff' d='M55.59 80H36.5V19.094H0V0h55.59Z'/></svg>");
  background-repeat: no-repeat;
  background-size: 100% auto;
  aspect-ratio: 56/80;
  content: "";
  display: block;
  position: absolute;
  right: -2.2em;
  top: -2.5em;
  width: 2.4em;
  height: auto;
}
.section__start .column:nth-child(4) h2:after {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='55.59' height='80' viewBox='0 0 55.59 80'><path fill='%237f00ff' d='M0 0h19.09v60.906h36.5V80H0Z'/></svg>");
  background-repeat: no-repeat;
  background-size: 100% auto;
  aspect-ratio: 56/80;
  content: "";
  display: block;
  position: absolute;
  left: -2.3em;
  bottom: -1.9em;
  width: 2.4em;
  height: auto;
}

.section__listing_number {
  display: grid;
  grid-template-columns: 1fr 38.6rem;
}
.section__listing_number .listing {
  display: flex;
  flex-direction: column;
  margin: 4.6rem 0 1.1rem 13.5rem;
  gap: 2.2rem 0;
}
.section__listing_number .listing .single__block {
  letter-spacing: 0.01em;
}
.section__listing_number .listing .single__block .number {
  font-size: var(--fontSize23);
  letter-spacing: 0.1em;
  color: var(--colorPurple);
}
.section__listing_number .listing .single__block h3 {
  margin: 0;
  font-size: var(--fontSize23);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.section__listing_number .listing .single__block h3 + p {
  margin-top: 0.7em;
}
.section__listing_number .listing .single__block p {
  max-width: 18em;
}
.section__listing_number > .number {
  margin-top: auto;
  display: flex;
  margin-left: 4rem;
  align-items: flex-end;
}
.section__listing_number > .number > svg {
  width: 5rem;
  height: auto;
}
.section__listing_number > .number .animated {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 17.8rem;
  margin-bottom: 3.6rem;
  margin-left: -1.6rem;
}
.section__listing_number > .number .animated img {
  width: 100%;
  height: auto;
}
.section__listing_number > .number .random_number {
  transform: rotate(-90deg);
  transform-origin: 0% 0%;
  font-size: var(--fontSize23);
  letter-spacing: 0.1em;
  color: var(--colorPurple);
  margin: auto 0 3rem -1.6rem;
  font-variant-numeric: tabular-nums;
  display: flex;
}
.section__listing_number > .number .random_number > span {
  display: inline-block;
  font-variant-numeric: tabular-nums;
}

.section__subheadline {
  margin: 10.5rem 0 6.8rem 0;
}
.section__subheadline h2 {
  margin: 0;
  font-size: var(--fontSize40);
  font-weight: 400;
  letter-spacing: 0.01em;
  text-align: center;
}

.section__hover-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.section__hover-grid .column {
  height: 11.5rem;
  width: 100%;
  border-left: var(--borderWidth) solid var(--borderColor);
  position: relative;
  display: flex;
}
.section__hover-grid .column:after {
  content: "";
  display: block;
  height: var(--borderWidth);
  left: 0;
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: var(--borderColor);
}
.section__hover-grid .column:first-child {
  grid-column: 3/4;
  grid-row: 1/2;
}
.section__hover-grid .column:first-child:after {
  width: calc(100% + 24.5rem);
  left: -24.5rem;
}
.section__hover-grid .column:nth-child(2) {
  grid-column: 4/5;
  grid-row: 1/2;
}
.section__hover-grid .column:nth-child(3) {
  grid-column: 5/6;
  grid-row: 1/2;
  width: calc(100% + 3rem);
  border-right: var(--borderWidth) solid var(--borderColor);
}
.section__hover-grid .column:nth-child(3):after {
  width: calc(100% + 2.3rem);
}
.section__hover-grid .column:nth-child(4) {
  grid-column: 2/3;
  grid-row: 2/3;
}
.section__hover-grid .column:nth-child(4):after {
  width: calc(100% + 5.3rem);
  left: -5.3rem;
}
.section__hover-grid .column:nth-child(5) {
  grid-column: 3/4;
  grid-row: 2/3;
}
.section__hover-grid .column:nth-child(6) {
  grid-column: 3/4;
  grid-row: 3/4;
}
.section__hover-grid .column:nth-child(7) {
  grid-column: 4/5;
  grid-row: 3/4;
  width: calc(100% + 5.6rem);
  border-right: var(--borderWidth) solid var(--borderColor);
}
.section__hover-grid .column.column-arrow {
  grid-column: 4/5;
  grid-row: 2/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section__hover-grid .column.column-arrow svg {
  width: 6rem;
  height: auto;
}
.section__hover-grid .column.column-textinfo {
  grid-column: 5/7;
  grid-row: 2/3;
  background: linear-gradient(90deg, rgba(127, 0, 255, 0.5) 0%, #FFFFFF 100%);
  position: relative;
}
.section__hover-grid .column.column-textinfo .textinfo {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 9rem 0 2.2rem;
  justify-content: center;
  opacity: 0;
  transition: opacity 300ms ease-out;
  font-size: var(--fontSize16);
}
.section__hover-grid .column.column-textinfo .textinfo.is-active {
  opacity: 1;
}
.section__hover-grid:before {
  content: "";
  display: block;
  height: var(--borderWidth);
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background-color: var(--borderColor);
}
.section__hover-grid:after {
  content: "";
  display: block;
  height: var(--borderWidth);
  left: 0;
  position: absolute;
  bottom: 0;
  width: calc(100% - 8rem);
  background-color: var(--borderColor);
}
.section__hover-grid .image1 {
  font-size: 0;
  line-height: 0;
  position: absolute;
  width: 13.5rem;
  left: 4.9rem;
  top: -4.2rem;
  z-index: 5;
}
.section__hover-grid .image1 img {
  width: 100%;
  height: auto;
}
.section__hover-grid .image2 {
  font-size: 0;
  line-height: 0;
  position: absolute;
  width: 14.7rem;
  bottom: 0;
  left: 12.5rem;
  z-index: 5;
}
.section__hover-grid .image2 img,
.section__hover-grid .image2 video {
  width: 100%;
  height: auto;
}

.hover_box {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
}
.hover_box .l_right_top,
.hover_box .l_left_bottom {
  width: 1.4rem;
  height: auto;
  position: absolute;
  opacity: 0;
  transition: opacity 300ms ease-out, transform 300ms ease-out;
}
.hover_box .l_right_top > path,
.hover_box .l_left_bottom > path {
  transition: stroke-width 300ms ease-out;
  stroke-width: 1.5;
}
.hover_box .l_right_top {
  right: 0;
  top: 0;
  transform: translate(-20%, 20%);
}
.hover_box .l_left_bottom {
  left: 0;
  bottom: 0;
  transform: translate(20%, -20%);
}
.hover_box > span {
  display: block;
  font-weight: 800;
  font-size: var(--fontSize22);
  color: var(--colorPurple);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.0909;
  transition: color 300ms ease-out;
}
.hover_box.is-active .l_right_top,
.hover_box.is-active .l_left_bottom {
  transform: translate(0%, 0%);
  opacity: 1;
}
.hover_box.is-active .l_right_top > path,
.hover_box.is-active .l_left_bottom > path {
  stroke-width: 8;
}
.hover_box.is-active > span {
  color: var(--colorBlack);
}

.section__list-with-text {
  display: grid;
  grid-template-columns: 1fr 24.6rem;
  padding-top: 11rem;
  padding-bottom: 1.7rem;
}
.section__list-with-text .list-with-text {
  display: flex;
  flex-direction: column;
  gap: 0.56rem 0;
}
.section__list-with-text .list-with-text .single__list-item {
  display: grid;
  grid-template-columns: 36.3rem 4rem 1fr;
  gap: 0 1.35rem;
  align-items: end;
  position: relative;
}
.section__list-with-text .list-with-text .single__list-item .title {
  font-weight: 300;
  font-size: var(--fontSize57);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: right;
  color: var(--colorPurple);
  cursor: pointer;
  transition: color 100ms ease-out, font-weight 300ms ease-out;
}
.section__list-with-text .list-with-text .single__list-item .number {
  display: block;
  font-size: var(--fontSize24);
  letter-spacing: 0.1em;
  line-height: 1.7;
  margin-left: 0.65rem;
}
.section__list-with-text .list-with-text .single__list-item .text {
  height: 100%;
  position: relative;
}
.section__list-with-text .list-with-text .single__list-item .text .inner_text {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateX(1rem) translateY(-50%);
  width: 100%;
  font-size: var(--fontSize15);
  line-height: 1.266;
  opacity: 0;
  transition: 500ms ease-out;
}
.section__list-with-text .list-with-text .single__list-item:has(.title:hover) .title {
  font-weight: 800;
  color: var(--colorBlack);
}
.section__list-with-text .list-with-text .single__list-item:has(.title:hover) .text .inner_text {
  opacity: 1;
  transform: translateX(0.1rem) translateY(-50%);
}
.section__list-with-text .animated_figure {
  padding-right: 3.3rem;
  margin-top: 1.7rem;
}
.section__list-with-text .animated_figure .circle {
  font-size: 0;
  line-height: 0;
  position: relative;
}
.section__list-with-text .animated_figure .circle svg {
  width: 100%;
  height: auto;
}
.section__list-with-text .animated_figure .circle > img,
.section__list-with-text .animated_figure .circle video {
  position: absolute;
  width: 25rem;
  height: auto;
  transform-origin: center center;
  left: -3rem;
  bottom: -5rem;
  /* MotionPath will set x/y, this keeps the img centered */
  will-change: transform;
}

.section__word-change {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 6.2rem minmax(0, 1fr);
  gap: 0 1.8rem;
  font-size: var(--fontSize130);
  color: var(--colorGreen);
  line-height: 1;
  align-items: center;
  padding: 7rem 0;
  letter-spacing: 0.03em;
  font-weight: 300;
  overflow: clip;
}
.section__word-change > svg {
  width: 100%;
  height: auto;
}
.section__word-change > span {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.section__word-change > span:first-child {
  text-align: right;
  margin-left: auto;
}
.section__word-change > span:last-child {
  text-align: left;
  margin-right: auto;
}

/* we will replace the span text with a wrapper: .glitch */
.section__word-change .glitch {
  position: relative;
  display: inline-block;
  line-height: 1;
}

.section__word-change .glitch .layer {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  will-change: transform, opacity, filter;
  pointer-events: none;
}

.section__word-change .glitch .base {
  position: relative;
  display: inline-block;
}

/* clip the layers */
.section__word-change .glitch .top {
  -webkit-clip-path: inset(0 0 50% 0);
          clip-path: inset(0 0 50% 0);
}

.section__word-change .glitch .bottom {
  -webkit-clip-path: inset(50% 0 0 0);
          clip-path: inset(50% 0 0 0);
}

/* optional “RGB” shadow classes like your snippet */
.section__word-change .redShadow {
  text-shadow: -2px 0 rgba(245, 64, 177, 0.85);
}

.section__word-change .greenShadow {
  text-shadow: 2px 0 rgba(127, 0, 255, 0.85);
}

.section__hover-grid-2 {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.section__hover-grid-2 .column {
  height: 11.5rem;
  width: 100%;
  border-right: var(--borderWidth) solid var(--borderColor);
  border-bottom: var(--borderWidth) solid var(--borderColor);
  position: relative;
  display: flex;
  z-index: 0;
  /*
  &:after {
  	content: '';
  	display: block;
  	height: var(--borderWidth);
  	left: 0;
  	position: absolute;
  	bottom: 0;
  	width: 100%;
  	background-color: var(--colorBlack);
  }
  */
  /*
  &:nth-child(5) {
  	grid-column: 1/2;
  	grid-row: 1/2;
  }
  &:nth-child(6) {
  	grid-column: 2/3;
  	grid-row: 1/2;
  }
  &:nth-child(7) {
  	grid-column: 2/3;
  	grid-row: 1/2;
  }
  */
}
.section__hover-grid-2 .column .hover_box {
  padding-inline: 1rem;
}
.section__hover-grid-2 .column:first-child {
  grid-column: 3/4;
  grid-row: 1/2;
}
.section__hover-grid-2 .column:nth-child(2) {
  grid-column: 2/3;
  grid-row: 2/3;
}
.section__hover-grid-2 .column:nth-child(3) {
  grid-column: 3/4;
  grid-row: 2/3;
}
.section__hover-grid-2 .column:nth-child(4) {
  grid-column: 3/4;
  grid-row: 3/4;
}
.section__hover-grid-2 .column:nth-child(5) {
  grid-column: 5/6;
  grid-row: 1/2;
}
.section__hover-grid-2 .column:nth-child(6) {
  grid-column: 6/7;
  grid-row: 1/2;
  border-right: 0;
}
.section__hover-grid-2 .column:nth-child(10) {
  grid-column: 1/2;
  grid-row: 3/4;
}
.section__hover-grid-2 .column:nth-child(11) {
  grid-column: 2/3;
  grid-row: 3/4;
}
.section__hover-grid-2 .column:nth-child(12) {
  grid-column: 6/7;
  grid-row: 2/4;
  border-right: 0;
}
.section__hover-grid-2 .column.column-arrow {
  grid-column: 4/5;
  grid-row: 1/2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section__hover-grid-2 .column.column-arrow svg {
  width: 6rem;
  height: auto;
}
.section__hover-grid-2 .column.column-textinfo {
  grid-column: 4/6;
  grid-row: 2/4;
  height: 100%;
  position: relative;
}
.section__hover-grid-2 .column.column-textinfo .textinfo {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 4.8rem 0 4.8rem;
  justify-content: center;
  opacity: 0;
  transition: opacity 300ms ease-out;
  font-size: var(--fontSize16);
}
.section__hover-grid-2 .column.column-textinfo .textinfo.is-active {
  opacity: 1;
}
.section__hover-grid-2:before {
  content: "";
  display: block;
  height: var(--borderWidth);
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background-color: var(--borderColor);
}
.section__hover-grid-2:after {
  content: "";
  display: block;
  height: var(--borderWidth);
  left: 0;
  position: absolute;
  bottom: 0;
  width: calc(100% - 8rem);
  background-color: var(--borderColor);
}
.section__hover-grid-2 .image1 {
  font-size: 0;
  line-height: 0;
  position: absolute;
  width: 21.4rem;
  bottom: 0;
  right: -3.3rem;
  z-index: 5;
}
.section__hover-grid-2 .image1 img,
.section__hover-grid-2 .image1 video {
  width: 100%;
  height: auto;
}
.section__hover-grid-2 .number {
  font-size: var(--fontSize350);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  position: absolute;
  left: 4rem;
  bottom: -5.7rem;
  pointer-events: none;
  z-index: 5;
}
.section__hover-grid-2 .gradient {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #DAFF6B 0%, #FFFFFF 100%);
  grid-column: 4/7;
  grid-row: 1/2;
  position: relative;
  z-index: -1;
}

.section__client-list {
  display: grid;
  grid-template-columns: 1fr auto;
  margin-top: 18.3rem;
  padding-inline: 8rem;
  gap: 0 2.7rem;
  position: relative;
  align-items: center;
  margin-bottom: 5.5rem;
}
.section__client-list .list__wrapper {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  gap: 0rem 0;
}
.section__client-list .list__wrapper .single__client-item {
  position: relative;
  margin-left: auto;
}
.section__client-list .list__wrapper .single__client-item .title {
  font-weight: 300;
  font-size: var(--fontSize57);
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.175;
  text-align: right;
  color: var(--colorPurple);
  cursor: pointer;
  transition: color 100ms ease-out, font-weight 300ms ease-out;
}
.section__client-list .list__wrapper .single__client-item .text_logo {
  position: absolute;
  right: calc(100% + 3rem);
  min-width: 13rem;
  bottom: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transform: translateX(1rem);
  transition: 500ms ease-out;
  font-size: var(--fontSize15);
  line-height: 1.266;
}
.section__client-list .list__wrapper .single__client-item .text_logo svg {
  width: 10rem;
  height: auto;
  margin-bottom: 1.8rem;
  display: block;
  position: relative;
  z-index: 3;
}
.section__client-list .list__wrapper .single__client-item:has(.title:hover) .title {
  font-weight: 800;
  color: var(--colorBlack);
}
.section__client-list .list__wrapper .single__client-item:has(.title:hover) .text_logo {
  opacity: 1;
  transform: translateX(0.1rem);
}
.section__client-list .arrow {
  font-size: 0;
  line-height: 0;
  width: 2.6rem;
  will-change: transform;
}
.section__client-list .arrow svg {
  width: 100%;
  height: auto;
  margin-top: -0.5rem;
}
.section__client-list .slash {
  width: 5rem;
  height: auto;
  position: absolute;
  bottom: -5.5rem;
  right: 37.5rem;
}
.section__client-list .gradient {
  z-index: -1;
  position: absolute;
  font-size: 0;
  line-height: 0;
  width: 130rem;
  left: -50rem;
  bottom: -12rem;
  pointer-events: none;
  overflow: hidden;
  transform: rotate(180deg);
}
.section__client-list .gradient img {
  width: 100%;
  height: auto;
}

/*
.section__projects {
  .projects__wrapper {
	position: relative;
	width: 100%;
	height: clamp(35rem, 100vw, 65rem); // oder was passt
	overflow: hidden;
  }

  .single__project {
	position: absolute;
	left: 0; top: 0;
	will-change: transform;
	transform: translate3d(0,0,0);
	cursor: pointer;
  }

 .project__image { display: block; will-change: transform; }
 .project__image img {
   width: 100%;
   height: auto;
   display: block;
   object-fit: cover; // oder contain, wenn du’s wirklich willst
 }
 .project__image { outline: 2px solid red; }

  img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	pointer-events: none;
	user-select: none;
  }
}
*/
.section__projects {
  padding-inline: 8rem;
  margin-top: 11rem;
  margin-bottom: 6rem;
  overflow-x: clip;
  overflow-y: visible;
}
.section__projects .projects__wrapper {
  --columns: 4;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem 0;
}
.section__projects .projects__wrapper .single__project {
  --width: 80%;
  --spacingTop: 0;
  --spacingBottom: 0;
  width: calc(100% / var(--columns));
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: var(--spacingTop);
  margin-bottom: var(--spacingTop);
}
.section__projects .projects__wrapper .single__project .single__project-inner {
  position: relative;
  width: var(--width);
  will-change: transform;
  transform: translate3d(0, 0, 0);
}
.section__projects .projects__wrapper .single__project .single__project-inner .text_box {
  position: absolute;
  left: calc(100% + 0.5rem);
  bottom: 100%;
  width: 1.3rem;
  height: 1.2rem;
  pointer-events: none;
  padding: 0;
  margin: 0;
  /*
  .inner_text::before {
    content: "";
    position: absolute;
    inset: -0.5rem;
    background: rgba(255,255,255,0.25);
    filter: blur(0.8rem);
    z-index: -1;
  }
  */
}
.section__projects .projects__wrapper .single__project .single__project-inner .text_box svg {
  width: 0.806rem;
  height: auto;
  position: absolute;
  z-index: 9;
}
.section__projects .projects__wrapper .single__project .single__project-inner .text_box svg.l_right_top {
  right: 0;
  top: 0;
}
.section__projects .projects__wrapper .single__project .single__project-inner .text_box svg.l_left_bottom {
  left: 0;
  bottom: 0;
}
.section__projects .projects__wrapper .single__project .single__project-inner .text_box .inner_text {
  font-size: var(--fontSize13);
  line-height: 1.266;
  width: 16em;
  padding: 0.5rem 1rem;
  position: absolute;
  left: 0;
  bottom: 0;
  opacity: 0;
  isolation: isolate;
  background: var(--colorGreen);
  -webkit-backdrop-filter: blur(0.2rem);
          backdrop-filter: blur(0.2rem);
  mix-blend-mode: multiply;
}
.section__projects .projects__wrapper .single__project .single__project-inner .text_box .inner_text p {
  margin: 0;
}
.section__projects .projects__wrapper .single__project .single__project-inner .project__image {
  font-size: 0;
  line-height: 0;
  width: 100%;
  display: block;
}
.section__projects .projects__wrapper .single__project .single__project-inner .project__image img {
  width: 100%;
  height: auto;
}

.section__robot-popouts {
  position: relative;
  display: grid;
  grid-template-columns: 100%;
  grid-template-rows: 100%;
  align-items: start;
  padding: 7.2rem 8.2rem 5.3rem 10.1rem;
  min-height: 36.6rem;
}
.section__robot-popouts .robot_image {
  font-size: 0;
  line-height: 0;
  display: block;
  position: absolute;
  left: 51.5%;
  width: 39.6rem;
  bottom: 0;
  transform: translateX(-50%);
}
.section__robot-popouts .robot_image img {
  width: 100%;
  height: auto;
}
.section__robot-popouts:before {
  content: "";
  display: block;
  height: var(--borderWidth);
  left: 0;
  position: absolute;
  top: 0;
  width: calc(100% - 24.2rem);
  background-color: var(--borderColor);
}
.section__robot-popouts:after {
  content: "";
  display: block;
  height: var(--borderWidth);
  right: 0;
  position: absolute;
  bottom: 0;
  width: calc(100% - 19rem);
  background-color: var(--borderColor);
}
.section__robot-popouts .popout__box {
  padding: 1.8rem 3.2rem 2.5rem 3.2rem;
  position: relative;
  z-index: 5;
  grid-column: 1/2;
  grid-row: 1/2;
  cursor: pointer;
  mix-blend-mode: multiply;
  transition: background-color 300ms ease-out, -webkit-backdrop-filter 300ms ease-out;
  transition: background-color 300ms ease-out, backdrop-filter 300ms ease-out;
  transition: background-color 300ms ease-out, backdrop-filter 300ms ease-out, -webkit-backdrop-filter 300ms ease-out;
}
.section__robot-popouts .popout__box.is-active {
  background-color: var(--colorGreen);
  -webkit-backdrop-filter: blur(0.2rem);
          backdrop-filter: blur(0.2rem);
}
.section__robot-popouts .popout__box.is-active .arrow {
  transform: rotate(90deg);
}
.section__robot-popouts .popout__box .arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 2.7rem;
  height: auto;
  transition: transform 300ms ease-out;
}
.section__robot-popouts .popout__box .l_right_top,
.section__robot-popouts .popout__box .l_left_bottom {
  width: 3.1rem;
  height: auto;
  position: absolute;
  opacity: 1;
}
.section__robot-popouts .popout__box .l_right_top > path,
.section__robot-popouts .popout__box .l_left_bottom > path {
  transition: stroke-width 300ms ease-out;
  stroke-width: 8;
}
.section__robot-popouts .popout__box .l_right_top {
  right: 0;
  top: 0;
}
.section__robot-popouts .popout__box .l_left_bottom {
  left: 0;
  bottom: 0;
}
.section__robot-popouts .popout__box .headline h4 {
  font-size: var(--fontSize13);
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.461;
  margin: 0;
  margin-bottom: 0.4rem;
}
.section__robot-popouts .popout__box .headline h3 {
  font-size: var(--fontSize23);
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.26;
  text-transform: uppercase;
  margin: 0;
}
.section__robot-popouts .popout__box .headline h3:first-child {
  margin-top: 1.4rem;
  margin-bottom: 0.6rem;
}
.section__robot-popouts .popout__box .text {
  overflow: hidden;
  width: auto;
  max-width: none;
  padding-top: 0.5rem;
}
.section__robot-popouts .popout__box .text p {
  max-width: 13em;
  min-width: 13em;
}
.section__robot-popouts .popout__box:nth-child(1) {
  margin-right: auto;
}
.section__robot-popouts .popout__box:nth-child(2) {
  margin-left: auto;
  margin-top: auto;
}

.section__heads {
  display: grid;
  grid-template-columns: 22rem 1fr;
  margin-top: 10rem;
  padding-bottom: 13rem;
}
.section__heads h2 {
  display: flex;
  flex-direction: column;
  font-size: var(--fontSize76);
  margin: 0 auto;
  line-height: 1.052;
  letter-spacing: 0.03em;
  font-weight: 800;
  text-transform: uppercase;
  grid-column: 1/3;
  grid-row: 1/2;
  margin-bottom: 3.4rem;
}
.section__heads h2 > span:first-child {
  margin-left: -1.9em;
}
.section__heads h2 > span:last-child {
  margin-right: -1.9em;
}
.section__heads .content {
  grid-column: 1/2;
  grid-row: 2/3;
  margin-left: 8rem;
  margin-block: auto;
  margin-right: 1.3rem;
}
.section__heads .gradient_holder {
  grid-column: 2/3;
  grid-row: 2/3;
  position: relative;
  min-height: 42rem;
}
.section__heads .gradient_holder > video {
  position: absolute;
  width: 16rem;
  height: auto;
  left: 17rem;
  top: 5rem;
}
.section__heads .gradient_holder > video.head2 {
  left: 5rem;
  top: 11rem;
}
.section__heads .gradient_holder > video.head3 {
  left: 14rem;
  width: 20rem;
  top: 17rem;
}
.section__heads .gradient_holder .gradient {
  z-index: -1;
  position: absolute;
  font-size: 0;
  line-height: 0;
  width: 135rem;
  left: -30rem;
  bottom: -27rem;
  pointer-events: none;
  overflow: hidden;
  transform: rotate(197deg);
}
.section__heads .gradient_holder .gradient img {
  width: 100%;
  height: auto;
}

.section__hi {
  display: grid;
  grid-template-columns: 1fr 32rem;
  grid-template-rows: 25.8rem 20.6rem 1fr;
  position: relative;
  padding-bottom: 1rem;
}
.section__hi:before {
  content: "";
  display: block;
  height: var(--borderWidth);
  left: 0;
  position: absolute;
  top: 0;
  width: calc(100% - 16rem);
  background-color: var(--borderColor);
}
.section__hi .content {
  grid-column: 1/2;
  grid-row: 1/3;
  padding-left: 8.2rem;
  padding-top: 9.2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 8.6rem;
  border-right: var(--borderWidth) solid var(--borderColor);
  border-bottom: var(--borderWidth) solid var(--borderColor);
}
.section__hi .content h2 {
  display: flex;
  flex-direction: column;
  font-size: var(--fontSize76);
  margin-inline: auto;
  line-height: 1.052;
  letter-spacing: 0.03em;
  font-weight: 800;
  text-transform: uppercase;
  grid-column: 1/3;
  grid-row: 1/2;
  color: var(--colorPurple);
  margin: 0;
}
.section__hi .content h2 > span:last-child {
  margin-left: 2.65em;
}
.section__hi .content .text_lines {
  font-size: var(--fontSize40);
  line-height: 1.25;
}
.section__hi .content .text_lines p {
  margin: 0.5em 0;
}
.section__hi .content .text_lines p:first-child {
  margin-top: 0;
}
.section__hi .content .text_lines p:last-child {
  margin-bottom: 0;
}
.section__hi .column {
  border-bottom: var(--borderWidth) solid var(--borderColor);
  font-size: var(--fontSize40);
  line-height: 1.25;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-inline: 3.2rem;
}
.section__hi .column p {
  max-width: 9em;
}
.section__hi .illustration {
  grid-column: 1/2;
  grid-row: 3/4;
  font-size: 0;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.section__hi .illustration:before {
  content: "";
  display: block;
  width: var(--borderWidth);
  right: 0;
  position: absolute;
  top: 0;
  height: calc(100% - 12rem);
  background-color: var(--borderColor);
}
.section__hi .illustration img {
  width: 30rem;
  height: auto;
}
.section__hi .number {
  grid-column: 2/3;
  grid-row: 2/4;
  font-size: 0;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section__hi .number svg {
  width: 16rem;
  height: auto;
}

footer .innerwrapper {
  width: calc(100% - 16rem);
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: var(--borderWidth) solid var(--borderColor);
  font-size: var(--fontSize16);
  line-height: 1.3125;
  height: 11.7rem;
}
footer .innerwrapper .column {
  padding-bottom: 1.2rem;
}
footer .innerwrapper .column address {
  font-style: normal;
}
footer .innerwrapper .column .social {
  display: flex;
  flex-direction: column;
  gap: 0.7rem 0;
}
footer .innerwrapper .column .social a {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 1.3rem;
}
footer .innerwrapper .column .social a svg {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .innerwrapper .column:first-child {
  border-right: var(--borderWidth) solid var(--borderColor);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 2rem;
}
footer .innerwrapper .column:last-child {
  background: linear-gradient(90deg, #DAFF6B 0%, #FFFFFF 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 2rem;
}
footer .innerwrapper .column:last-child > svg {
  width: 13rem;
  height: auto;
}
footer .innerwrapper .column:last-child ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  text-align: right;
}
footer .innerwrapper .column:last-child ul li {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
footer .innerwrapper .column:last-child ul li a {
  color: inherit;
  text-decoration: none;
}

@keyframes underline-wipe {
  0% {
    transform: scaleX(1);
    transform-origin: right center;
  }
  49% {
    transform: scaleX(0);
    transform-origin: right center;
  }
  50% {
    transform: scaleX(0);
    transform-origin: left center;
  }
  100% {
    transform: scaleX(1);
    transform-origin: left center;
  }
}
.section__hi .content .text_lines a {
  display: inline-block;
  position: relative;
  text-decoration: none;
  color: inherit;
}
.section__hi .content .text_lines a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.1em;
  width: 100%;
  height: 2px;
  background-color: var(--colorBlack);
  transform: scaleX(1);
  transform-origin: left center;
}
.section__hi .content .text_lines a:hover::before {
  animation: underline-wipe 0.55s ease forwards;
}
