/** Read all folders - use the @forward rule to make variables etc available to other files **/
/** Place all variables here - @forward other files in folder as well **/
/** Use "@use 'path/variables' as *" to include variables where needed **/
/** COLORS */
/** FONTS */
/** BREAKPOINTS **/
/** Import all files in the folder **/
/** Read all folders - use the @forward rule to make variables etc available to other files **/
.container-header {
  color: #fff;
  position: fixed;
  width: 100%;
  padding: 0 64px;
  height: 96px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  mix-blend-mode: difference;
  z-index: 1;
}
.container-header .container-header-content .header-inner .container-header-logo {
  opacity: 1;
  width: 50px;
  height: 32px;
  vertical-align: middle;
  transition: opacity 1s;
}
.container-header .container-header-content .header-inner .container-header-logo a {
  color: currentColor;
  text-decoration: none;
  -webkit-tab-highlight-color: rgba(0, 0, 0, 0);
}
.container-header .container-header-content .header-inner .container-header-logo .header-logo-svg {
  fill: currentColor;
}
.container-header .container-header-content .header-inner .container-header-logo.hidden {
  opacity: 0;
}
@media only screen and (orientation: portrait) and (max-width: 640px) {
  .container-header {
    padding: 0 10vw;
  }
}
@media only screen and (orientation: portrait) and (max-width: 640px) and (max-width: 500px) {
  .container-header {
    height: calc(18vw + 8px);
  }
  .container-header .container-header-content .header-inner .container-header-logo {
    width: 10vw;
    height: unset;
  }
}

/** Read all folders - use the @forward rule to make variables etc available to other files **/
@font-face {
  font-family: "Stabil Grotesk";
  src: url("../font/StabilGrotesk-Regular.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Stabil Grotesk";
  src: url("../font/StabilGrotesk-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Stabil Grotesk";
  src: url("../font/StabilGrotesk-Black.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Stabil Grotesk";
  src: url("../font/StabilGrotesk-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Stabil Grotesk", Arial, Helvetica, sans-serif;
}

body {
  min-height: 100vh;
  background-color: #000;
  color: #fff;
  text-rendering: geometricPrecision;
  overscroll-behavior: none;
  font-family: "Stabil Grotesk", Arial, sans-serif, monospace;
  display: flex;
  flex-direction: column;
}

.container-inner-body {
  margin: auto 0;
}

/** Read all folders - use the @forward rule to make variables etc available to other files **/
.container-footer {
  position: relative;
  width: 100%;
  padding: 2vw 3vw;
}

.footer-wrapper {
  display: grid;
  grid-auto-flow: column;
  justify-content: space-between;
  align-items: end;
}
.footer-wrapper .footer-logo-svg {
  filter: invert(1);
  height: clamp(1.875rem, 0.2679rem + 8.0357vw, 7.5rem);
  width: auto;
}
.footer-wrapper .footer-copyright-text {
  color: #666;
  mix-blend-mode: difference;
  font-weight: 700;
  font-size: clamp(0.625rem, 0.5536rem + 0.3571vw, 0.875rem);
}

/* SCROLL EFFECTS START */
@supports (animation-timeline: view()) {
  p,
  h3,
  hr,
  h4,
  h5,
  a,
  .splash-button {
    opacity: 0;
    animation: fade-in linear forwards;
    animation-timeline: view();
    animation-range: 0vh 30vh;
  }
  .container-inner-body {
    margin-bottom: 35vh;
  }
  @keyframes fade-in {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
}
/* SCROLL EFFECTS END */
/** Read all folders - use the @forward rule to make variables etc available to other files **/
/** Add rules below **/
/** GENERAL STYLING **/
html {
  scroll-behavior: smooth;
}

a {
  text-decoration: underline;
  color: #fff;
}

/** GENERAL CLASSES **/
.text-align-center {
  text-align: center;
}

.text-algin-left {
  text-align: left;
}

.text-align-right {
  text-align: right;
}

.link-btn {
  background-color: #fff;
  display: grid;
  margin: auto;
  margin-top: 3rem;
  width: max-content;
  border-radius: 42px;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  border: 1px solid #000;
  text-align: center;
}
.link-btn a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: clamp(0.875rem, 0.8036rem + 0.3571vw, 1.125rem);
  font-weight: 700;
  color: #000;
  padding: 10px 3rem;
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
  border-radius: inherit;
}
@media screen and (max-width: 575.98px) {
  .link-btn a {
    padding: 10px 1rem;
  }
}
.link-btn:hover, .link-btn.selected {
  background-color: #000;
  border: 1px solid #fff;
}
.link-btn:hover a, .link-btn.selected a {
  color: #fff;
}
.link-btn.selected a {
  box-shadow: 0px 0px 10px 10px lightgray;
}

/** Include all files in the folder here **/
/** Read all folders - use the @forward rule to make variables etc available to other files **/
.contact-and-vision-container {
  display: grid;
  grid-template-columns: 3fr 8fr;
  grid-template-rows: 1fr;
  gap: 2vw;
  padding: 4vw 4vw 0;
}
.contact-and-vision-container .vision-container {
  font-size: calc(28px + (1vw - 3.75px) * 0.7766990291);
  line-height: 1.15em;
}
.contact-and-vision-container .contact-container {
  height: fit-content;
  display: grid;
  gap: 12px;
}
.contact-and-vision-container .contact-container * {
  font-weight: 400;
}
.contact-and-vision-container .contact-container .contact-group {
  font-weight: clamp(16px, (1vw - 3.75px) * 0.50890585 + 16px, 18px);
  margin-bottom: 6px;
}
.contact-and-vision-container .contact-container .contact-group-heading {
  color: gray;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1em;
  font-size: 14px;
}
.contact-and-vision-container .contact-container a.contact-maps-link {
  margin-bottom: 16px;
}
.contact-and-vision-container .contact-container a.contact-link {
  line-height: 1em;
}
.contact-and-vision-container .contact-container a.contact-link, .contact-and-vision-container .contact-container a.contact-maps-link {
  color: inherit;
  text-decoration: none;
}
.contact-and-vision-container .contact-container h5.contact {
  font-weight: 900;
  margin-bottom: 24px;
  text-transform: uppercase;
  font-size: clamp(1.75rem, 1.041rem + 1.4925vw, 3rem);
}
@supports (font-size: clamp(1rem, 1vw, 2rem)) {
  .contact-and-vision-container a.contact-link {
    font-size: clamp(16px, 16px + (1vw - 3.75px) * 0.5089058524, 18px);
  }
}
@media screen and (max-width: 764px) {
  .contact-and-vision-container {
    grid-template-columns: 1fr;
    grid-template-rows: 2;
    grid-auto-flow: row;
    gap: 6vw;
    padding: 6vw 5vw;
  }
  .contact-and-vision-container .vision-container {
    font-size: clamp(26px, 24px + (1vw - 7.68px) * 0.69, 38px);
  }
  .contact-and-vision-container .contact-container a.contact-maps-link {
    margin-bottom: 10px;
  }
  .contact-and-vision-container .contact-container h5.contact {
    font-size: clamp(24px, 24px + (1vw - 7.68px) * 0.6944444444, 32px);
    margin-bottom: 16px;
  }
  .contact-and-vision-container .contact-container a.contact-link, .contact-and-vision-container .contact-container a.contact-maps-link {
    line-height: 1.3333333333em;
  }
}
@media (min-width: 768px) {
  .contact-and-vision-container .vision-container {
    line-height: 1.3333333333em;
  }
}
@supports (font-size: clamp(1rem, 1vw, 2rem)) {
  .contact-and-vision-container .vision-container {
    font-size: clamp(28px, 28px + (1vw - 3.75px) * 0.7766990291, 40px);
  }
  .contact-and-vision-container .contact-container a.contact-link, .contact-and-vision-container .contact-container a.contact-maps-link {
    font-size: clamp(16px, 16px + (1vw - 3.75px) * 0.5089058524, 18px);
  }
}
@supports (font-size: max(1rem, 2rem)) {
  .contact-and-vision-container .vision-container {
    font-size: max(28px, 28px + (1vw - 3.75px) * 0.7766990291);
  }
}
@media screen and (min-width: 1024px) {
  .contact-and-vision-container .vision-container {
    line-height: 1.4em;
  }
  .contact-and-vision-container .contact-container h5.contact {
    line-height: 0.875em;
  }
}

/** Read all folders - use the @forward rule to make variables etc available to other files **/
.hero-container {
  display: grid;
  justify-items: center;
  overflow: hidden;
  margin-bottom: min(15vh, 5%);
}
.hero-container .video-container {
  display: grid;
  justify-items: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  height: auto;
}
.hero-container .looped-preview {
  width: 100vw;
  height: 100vh;
  grid-area: 1/1;
  object-fit: cover;
}
.hero-container .logo-text-container {
  position: absolute;
  width: 100%;
  height: 130vh;
  transform: translateY(-15vh);
  pointer-events: none;
}
.hero-container .logo-text-container .logo-container, .hero-container .logo-text-container .logo-container svg {
  height: 100%;
  width: 100%;
  pointer-events: none;
}
.hero-container .logo-text-container .text-container {
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translateY(-50%) translateX(-50%);
}
.hero-container .logo-text-container .text-container h1 {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-rendering: optimizeLegibility;
  text-size-adjust: 100%;
  text-transform: uppercase;
  -webkit-font-smooting: antialiased;
}
@media screen and (max-width: 767.98px) {
  .hero-container .logo-text-container .text-container {
    left: unset;
    right: 0;
    top: 23%;
    transform: translateX(0%);
  }
  .hero-container .logo-text-container .text-container h1 {
    font-size: 18px;
  }
}
.hero-container .logo-text-container .text-container-japan {
  position: absolute;
  top: 50%;
  right: 15%;
  transform: translateY(-50%) translateX(50%);
}
.hero-container .logo-text-container .text-container-japan h1 {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-rendering: optimizeLegibility;
  text-size-adjust: 100%;
  text-transform: uppercase;
  -webkit-font-smooting: antialiased;
}
@media screen and (max-width: 767.98px) {
  .hero-container .logo-text-container .text-container-japan {
    top: unset;
    right: unset;
    left: 4px;
    bottom: 23%;
    transform: translateY(0%) translateX(0%);
  }
  .hero-container .logo-text-container .text-container-japan h1 {
    font-size: 18px;
  }
}
.hero-container .logo-text-container.active {
  display: none;
}
.hero-container .view-hero-video {
  background-color: #fff;
  border-radius: 100%;
  font-weight: bold;
  text-transform: uppercase;
  width: 80px;
  height: 80px;
  display: grid;
  justify-items: center;
  align-items: center;
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translateX(-50%);
}
.hero-container .view-hero-video .floating-button {
  color: #000;
}
.hero-container .view-hero-video:hover {
  background-color: #000;
  -webkit-transition: background-color 0.4s ease-out;
  -moz-transition: background-color 0.4s ease-out;
  -o-transition: background-color 0.4s ease-out;
  transition: background-color 0.4s ease-out;
}
.hero-container .view-hero-video:hover .floating-button {
  color: #fff;
  -webkit-transition: color 0.25s ease-out;
  -moz-transition: color 0.25s ease-out;
  -o-transition: color 0.25s ease-out;
  transition: color 0.25s ease-out;
}
.hero-container .embed-container, .hero-container .view-hero-video {
  grid-area: 1/1;
}
.hero-container .view-hero-video {
  z-index: -2;
}
.hero-container .view-hero-video.active {
  z-index: 2;
}
.hero-container .embed-container {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  --header-size: calc(96px + ((1vw - 3.75px) * 3.3656957929));
  --grid-column-width: calc((100vw - var(--grid-gap) * (var(--grid-column-count) - 1) - var(--grid-gutter) * 2) / var(--grid-column-count));
  --foreground-color: $color-foreground;
  --background-color: $color-background;
  --grid-column-count: 12;
  --grid-gap: 2.7777777778vw;
  --grid-gutter: 3.3333333333vw;
  --vh: 13.36px;
  --vw: 20.69px;
  color: var(--foreground-color);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  --window-height: 1336px;
  box-sizing: inherit;
  position: absolute;
  height: 100%;
  width: 100%;
  display: grid;
  justify-items: center;
  visibility: hidden;
}
.hero-container .embed-container.active {
  visibility: inherit;
  background-color: #000;
}
.hero-container .embed-container iframe {
  visibility: inherit;
  width: 100%;
  height: 100%;
}
.hero-container .embed-container .embed-controls {
  position: absolute;
  width: 100%;
  height: 100%;
}
.hero-container .embed-container .embed-controls .embed-close {
  position: absolute;
  top: 5%;
  right: 5%;
  z-index: 3;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
.hero-container .embed-container .embed-controls .embed-playback-controls {
  position: absolute;
  height: 10%;
  width: 100%;
  padding: 0 5%;
  bottom: 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
  left: 50%;
  transform: translateX(-50%);
}
.hero-container .embed-container .embed-controls .embed-playback-controls .video-play {
  z-index: 1;
  font-size: calc(16px + 0 * (100vw - 375px) / 1545);
  margin-right: 1.5em;
}
.hero-container .embed-container .embed-controls .embed-playback-controls .video-play span {
  box-sizing: border-box;
  border-color: transparent transparent transparent currentColor;
  border-style: solid;
  border-width: 0.5em 0.5em 0.5em;
  height: 1em;
  display: block;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  will-change: border-width;
  width: 1.2em;
}
.hero-container .embed-container .embed-controls .embed-playback-controls .video-play.pause span {
  width: 0.8em;
  margin-right: 0.4em;
  border-width: 0 0.2em;
  border-right-color: currentColor;
}
.hero-container .embed-container .embed-controls .embed-playback-controls .video-play.pause span {
  width: 0.8em;
  border-width: 0 0.2em;
  border-right-color: currentColor;
}
.hero-container .embed-container .embed-controls .embed-playback-controls .video-volume {
  z-index: 1;
  fill: #fff;
  width: 2em;
  padding-top: 0.3em;
  cursor: pointer;
}
.hero-container .embed-container .embed-controls .embed-playback-controls .video-volume.mute .mute, .hero-container .embed-container .embed-controls .embed-playback-controls .video-volume.unmute .unmute {
  display: block;
}
.hero-container .embed-container .embed-controls .embed-playback-controls .video-volume.mute .unmute, .hero-container .embed-container .embed-controls .embed-playback-controls .video-volume.unmute .mute {
  display: none;
}
.hero-container .embed-container .embed-controls .embed-playback-controls .video-playback {
  z-index: 1;
  width: 100%;
  font-size: calc(12px + 0 * (100vw - 375px) / 1545);
  display: flex;
  flex-direction: row;
  padding: 1em 2em;
}
.hero-container .embed-container .embed-controls .embed-playback-controls .video-playback .current-time-progress {
  width: 100%;
  background-color: gray;
  border: 1px solid gray;
  margin: 0 1em;
  border-radius: 10px;
  position: relative;
  top: 0.25em;
  height: 0.5em;
}
.hero-container .embed-container .embed-controls .embed-playback-controls .video-playback .current-time-progress .progress-bar {
  position: relative;
  width: 0%;
  border-radius: 10px;
  height: 0.5em;
  border: 1px solid #fff;
  background-color: #fff;
}
.hero-container .embed-container .embed-controls .embed-playback-controls .video-playback .current-time-progress .progress-bar .progress-dot {
  width: 1em;
  height: 1em;
  position: relative;
  left: 100%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid gray;
  background-color: #fff;
  top: 0.125em;
  cursor: grab;
}
.hero-container .embed-container .embed-controls .embed-playback-controls .video-fullscreen {
  z-index: 1;
  fill: #fff;
  width: 2em;
  cursor: pointer;
}
.hero-container .embed-container .embed-controls .embed-playback-controls:before {
  pointer-events: none;
  position: absolute;
  content: "";
  height: 20rem;
  width: 100%;
  background: linear-gradient(0deg, #000 0, rgba(0, 0, 0, 0.987) 8.1%, rgba(0, 0, 0, 0.951) 15.5%, rgba(0, 0, 0, 0.896) 22.5%, rgba(0, 0, 0, 0.825) 29%, rgba(0, 0, 0, 0.741) 35.3%, rgba(0, 0, 0, 0.648) 41.2%, rgba(0, 0, 0, 0.55) 47.1%, rgba(0, 0, 0, 0.45) 52.9%, rgba(0, 0, 0, 0.352) 58.8%, rgba(0, 0, 0, 0.259) 64.7%, rgba(0, 0, 0, 0.175) 71%, rgba(0, 0, 0, 0.104) 77.5%, rgba(0, 0, 0, 0.049) 84.5%, rgba(0, 0, 0, 0.013) 91.9%, transparent);
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
}

/** Read all folders - use the @forward rule to make variables etc available to other files **/
.splash-video-section {
  display: grid;
  height: 75vh;
  position: relative;
}
@media only screen and (orientation: portrait) {
  .splash-video-section {
    height: 100vw;
  }
}
.splash-video-section .splash-container {
  grid-area: 1/1;
  display: grid;
  justify-items: center;
  align-items: center;
  text-align: center;
  height: 100%;
  width: 100%;
  display: grid;
  justify-items: center;
  align-items: center;
}
.splash-video-section .splash-text {
  font-size: clamp(1.875rem, 0.7386rem + 4.5455vw, 5rem);
}
.splash-video-section .splash-text h4 {
  padding-bottom: clamp(0.5625rem, 0.3482rem + 1.0714vw, 1.3125rem);
}
.splash-video-section .splash-text .splash-button {
  background-color: #fff;
  display: grid;
  margin: auto;
  width: max-content;
  border-radius: 42px;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  border: 1px solid #000;
}
.splash-video-section .splash-text .splash-button a {
  text-transform: uppercase;
  font-size: clamp(0.875rem, 0.8036rem + 0.3571vw, 1.125rem);
  font-weight: 700;
  color: #000;
  padding: calc(10px + (1vw - 3.75px) * 0) calc(48px + (1vw - 3.75px) * 0);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.splash-video-section .splash-text .splash-button:hover {
  background-color: #000;
  border: 1px solid #fff;
}
.splash-video-section .splash-text .splash-button:hover a {
  color: #fff;
}
.splash-video-section * {
  text-decoration: none;
  color: white;
}
.splash-video-section #space {
  background: radial-gradient(transparent 20%, #000 70%);
  overflow: hidden;
  height: 100%;
  grid-area: 1/1;
  display: grid;
}
.splash-video-section .stars {
  grid-area: 1/1;
  overflow: hidden;
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.splash-video-section .stars {
  height: inherit;
  background-image: radial-gradient(1px 1px at 20px 30px, #eee, rgba(0, 0, 0, 0)), radial-gradient(2px 2px at 40px 70px, #fff, rgba(0, 0, 0, 0)), radial-gradient(1px 1px at 50px 160px, #ddd, rgba(0, 0, 0, 0)), radial-gradient(2px 2px at 90px 40px, #fff, rgba(0, 0, 0, 0)), radial-gradient(1px 1px at 130px 80px, #ddd, rgba(0, 0, 0, 0)), radial-gradient(2px 2px at 160px 120px, #fff, rgba(0, 0, 0, 0));
  background-repeat: repeat;
  background-size: 200px 200px;
  animation: zoom 5s infinite;
  opacity: 0;
}
.splash-video-section .stars:nth-child(1) {
  background-position: 50% 50%;
  animation-delay: 4s;
}
.splash-video-section .stars:nth-child(2) {
  background-position: 20% 60%;
  animation-delay: 1s;
}
.splash-video-section .stars:nth-child(3) {
  background-position: -20% -30%;
  animation-delay: 2s;
}
.splash-video-section .stars:nth-child(4) {
  background-position: 40% -80%;
  animation-delay: 3s;
}
.splash-video-section .stars:nth-child(5) {
  background-position: 8% -8%;
  animation-delay: 0s;
}
@keyframes zoom {
  0% {
    opacity: 0;
    transform: scale(1);
    animation-timing-function: linear;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: scale(2);
  }
}

/** Read all folders - use the @forward rule to make variables etc available to other files **/
section.cases-listing.section {
  width: 100%;
  display: grid;
  justify-content: center;
  align-content: center;
  padding: 96px 64px;
}
@media only screen and (orientation: portrait) and (max-width: 640px) {
  section.cases-listing.section {
    padding: 96px 10vw;
  }
}
section.cases-listing.section .cases-listing-container {
  display: grid;
  gap: 2.7777778vw;
}
section.cases-listing.section .cases-listing-container .case-link {
  text-decoration: inherit;
  color: inherit;
  cursor: pointer;
}
section.cases-listing.section .cases-listing-container .case-link .case-container {
  background-color: #222;
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: 1fr 3fr;
  max-width: 1740px;
}
section.cases-listing.section .cases-listing-container .case-link .case-container .case-text-container {
  display: grid;
  align-content: space-between;
  padding: clamp(0.75rem, 0.2181rem + 2.4316vw, 2.25rem);
}
section.cases-listing.section .cases-listing-container .case-link .case-container .case-text-container .case-name-container,
section.cases-listing.section .cases-listing-container .case-link .case-container .case-text-container .case-client {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 700;
}
section.cases-listing.section .cases-listing-container .case-link .case-container .case-text-container .case-summary-container .case-short-description {
  font-size: 18px;
  padding: 12px 0;
}
section.cases-listing.section .cases-listing-container .case-link .case-container .case-text-container .case-summary-container .case-link-text {
  font-size: 14px;
  color: #fff;
  text-decoration: underline;
  font-weight: 700;
}
section.cases-listing.section .cases-listing-container .case-link .case-container .case-image-container {
  background-color: #666;
  width: 100%;
  height: 100%;
}
section.cases-listing.section .cases-listing-container .case-link .case-container .case-image-container .case-image-wrapper,
section.cases-listing.section .cases-listing-container .case-link .case-container .case-image-container .case-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: grid;
}
@media screen and (max-width: 1000px) {
  section.cases-listing.section {
    padding: 96px 0;
  }
  section.cases-listing.section .cases-listing-container {
    width: 100vw;
    gap: 30px;
  }
  section.cases-listing.section .cases-listing-container .case-container .case-text-container,
  section.cases-listing.section .cases-listing-container .case-container .case-image-container {
    grid-area: 1/1/2/3;
    min-height: 42vh;
  }
  section.cases-listing.section .cases-listing-container .case-container .case-text-container {
    background-color: unset;
    z-index: 1;
  }
  section.cases-listing.section .cases-listing-container .case-container .case-image-container .case-image-wrapper,
  section.cases-listing.section .cases-listing-container .case-container .case-image-container .case-image {
    object-fit: cover;
  }
}
@media screen and (max-width: 500px) {
  section.cases-listing.section {
    padding: calc(18vw + 6px) 0;
  }
}

/** Read all folders - use the @forward rule to make variables etc available to other files **/
.multiple-headings-section {
  display: grid;
  align-items: center;
  padding: 0 calc(5vw + 5vh) 5vh;
  max-width: 1440px;
  margin: 0 auto;
}
.multiple-headings-section div hr {
  border-width: 1px;
  margin-top: 0.4rem;
}
.multiple-headings-section .headings-list {
  display: grid;
  grid-auto-rows: 1fr;
}
.multiple-headings-section .heading-block {
  display: grid;
  align-content: space-evenly;
}
.multiple-headings-section .introduction-heading h4 {
  font-size: calc(24px + (1vw - 3.75px) * 0.7766990291);
  line-height: normal;
  font-weight: 700;
  text-transform: capitalize;
}
.multiple-headings-section .heading h3 {
  font-size: clamp(1.625rem, 1.0044rem + 2.8369vw, 3.375rem);
  text-transform: capitalize;
}
.multiple-headings-section .paragraph p {
  font-size: clamp(0.75rem, 0.5357rem + 1.0714vw, 1.5rem);
}

/** Read all folders - use the @forward rule to make variables etc available to other files **/
.hero-media {
  padding: 6vh 3vw;
}
.hero-media .single-case-container {
  display: grid;
  justify-items: center;
}
.hero-media .single-case-container .heading-text-wrapper .client-container h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(0.75rem, 0.5727rem + 0.8105vw, 1.25rem);
  font-weight: 700;
  line-height: 100%;
}
.hero-media .single-case-container .heading-text-wrapper .case-name-container h1 {
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(2rem, 0.1537rem + 8.4404vw, 7.75rem);
  font-weight: 800;
  line-height: 100%;
  padding: clamp(0.1875rem, -0.2589rem + 2.2321vw, 1.75rem) 0;
}
.hero-media .single-case-container .heading-text-wrapper .case-short-description {
  text-align: center;
  font-size: clamp(0.875rem, 0.6534rem + 1.0132vw, 1.5rem);
  padding-bottom: 3vw;
  font-weight: 400;
}
.hero-media .single-case-container .case-video, .hero-media .single-case-container .hero-image {
  display: grid;
  justify-items: center;
  width: 94vw;
  height: 52.875vw;
  max-width: 1203.2px;
  max-height: 676.8px;
}
.hero-media .single-case-container .case-video iframe, .hero-media .single-case-container .case-video img, .hero-media .single-case-container .hero-image iframe, .hero-media .single-case-container .hero-image img {
  width: 100%;
  height: 100%;
}
.hero-media .single-case-container .intro-text {
  text-align: center;
  font-size: clamp(1.125rem, 0.7261rem + 1.8237vw, 2.25rem);
  padding: 8vw 0;
  font-weight: 500;
  width: 90%;
}
.hero-media .single-case-container .intro-image {
  width: 75%;
  height: auto;
}
.hero-media .single-case-container .intro-image img {
  width: 100%;
  height: 100%;
}
.hero-media .single-case-container .text-blocks {
  display: grid;
  gap: clamp(1.25rem, 0.1327rem + 5.5866vw, 7.5rem);
}
.hero-media .single-case-container .text-blocks .text-block-wrapper {
  margin: auto;
  width: 75%;
  padding-top: clamp(1.25rem, 0.1327rem + 5.5866vw, 7.5rem);
}
.hero-media .single-case-container .text-blocks .text-block-wrapper .text-block-small-heading h4 {
  text-transform: uppercase;
  font-size: clamp(0.5rem, 0.367rem + 0.6079vw, 0.875rem);
  padding: 0 2vw;
  font-weight: 700;
  line-height: 100%;
}
.hero-media .single-case-container .text-blocks .text-block-wrapper .text-block-large-heading h3 {
  text-transform: uppercase;
  font-size: clamp(1.625rem, 1.0044rem + 2.8369vw, 3.375rem);
  padding: 1vh 2vw;
  font-weight: 800;
  line-height: 100%;
}
.hero-media .single-case-container .text-blocks .text-block-wrapper .text-block-paragraph {
  font-size: clamp(0.875rem, 0.6534rem + 1.0132vw, 1.5rem);
  padding: 0 2vw 0;
  font-weight: 500;
}
.hero-media .single-case-container .text-blocks .text-block-wrapper div.text-block-image {
  width: 100%;
  height: 100%;
}
.hero-media .single-case-container .text-blocks .text-block-wrapper div.text-block-image img {
  width: 100%;
  height: 100%;
}

/** Read all folders - use the @forward rule to make variables etc available to other files **/
.text-blocks {
  display: grid;
  width: 100%;
}
.text-blocks .text-block-wrapper {
  margin: auto;
  width: 75%;
}
.text-blocks .text-block-wrapper .text-block-small-heading h4 {
  text-transform: uppercase;
  font-size: clamp(0.5rem, 0.367rem + 0.6079vw, 0.875rem);
  padding: 0 2vw;
  font-weight: 700;
  line-height: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.text-blocks .text-block-wrapper .text-block-large-heading h3 {
  margin: 0 auto;
  text-transform: uppercase;
  font-size: clamp(1.625rem, 1.0044rem + 2.8369vw, 3.375rem);
  padding: 2rem 2vw;
  font-weight: 800;
  line-height: 110%;
  max-width: 800px;
}
.text-blocks .text-block-wrapper .text-block-paragraph {
  margin: 0 auto;
  font-size: clamp(0.875rem, 0.6534rem + 1.0132vw, 1.5rem);
  padding: 0 2vw;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 140%;
  max-width: 800px;
}
.text-blocks .text-block-wrapper .text-block-image {
  margin-top: 2rem;
}
.text-blocks .text-block-wrapper .text-block-image img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.text-blocks .text-block-wrapper .text-block-image.fullwidth {
  width: 100vw;
  margin-left: calc(-12.5% - 6vw);
  height: 100%;
  aspect-ratio: 16/9;
}
.text-blocks .text-block-wrapper .text-block-image.small {
  width: 100%;
  aspect-ratio: 16/9;
}
.text-blocks .text-block-wrapper .text-block-image.squared {
  width: 100%;
  margin-block: 1rem;
  aspect-ratio: 1;
}
@media screen and (min-width: 575.98px) {
  .text-blocks .text-block-wrapper .text-block-image.squared {
    width: 60%;
    margin: 1rem auto;
  }
}
.text-blocks .text-block-wrapper .link-button-wrapper {
  margin-top: 2rem;
}

body > div.container-inner-body > section:nth-child(2) > div.text-blocks > div:nth-child(1) div.text-block-paragraph.text-align-center > div.speakers-bullets-wrapper {
  display: grid;
  justify-items: center;
}
body > div.container-inner-body > section:nth-child(2) > div.text-blocks > div:nth-child(1) div.text-block-paragraph.text-align-center > div.speakers-bullets-wrapper .speakers-bullets-list {
  display: grid;
  height: 106%;
  width: 80%;
  text-align: left;
}
body > div.container-inner-body > section:nth-child(2) > div.text-blocks > div:nth-child(1) div.text-block-paragraph.text-align-center > div.speakers-bullets-wrapper .speakers-bullets-list li {
  padding: 0.5rem 0;
}

.text-blocks {
  display: grid;
}
.text-blocks .text-block-wrapper {
  margin: auto;
  width: 75%;
}
.text-blocks .text-block-wrapper .text-block-small-heading.text-align-center h4 {
  text-transform: uppercase;
  font-size: calc(20px + (1vw - 3.75px) * 0.7767);
  padding: 0;
  font-weight: 700;
  line-height: 100%;
}

body > div.container-inner-body > section:nth-child(4) > div.text-blocks div > div.text-block-paragraph.text-align-center {
  padding-bottom: 4vh;
}
body > div.container-inner-body > section:nth-child(4) > div.text-blocks div:nth-child(1) > div.text-block-paragraph.text-align-center {
  padding: 2vh 2vw;
}
body > div.container-inner-body > section:nth-child(4) > div.text-blocks div:nth-child(8) > div.text-block-paragraph.text-align-center > div.link-button-wrapper.link-btn {
  margin-top: 2%;
  margin-bottom: 4%;
}

/** Read all folders - use the @forward rule to make variables etc available to other files **/
.registration-form {
  width: 100%;
  margin: auto;
  padding: clamp(1.25rem, 0.1327rem + 5.5866vw, 7.5rem) 0;
  background-color: #fff;
  color: #000;
}
.registration-form #event-register {
  width: 75%;
  margin: auto;
}
.registration-form .registration-header {
  text-transform: uppercase;
  font-size: clamp(1.625rem, 1.0044rem + 2.8369vw, 3.375rem);
  padding: 3vh 2vw;
  font-weight: 800;
  line-height: 100%;
  width: 100%;
  margin: auto;
  text-align: center;
}
.registration-form .registration-form-wrapper {
  display: none;
  width: 100%;
  max-width: 1440px;
  margin: auto;
  font-family: "Stabil Grotesk", Arial, sans-serif, monospace;
  font-size: clamp(0.875rem, 0.6534rem + 1.0132vw, 1.5rem);
}
.registration-form .registration-form-wrapper .input-text {
  margin: 1rem auto;
  text-align: center;
  width: calc(75% - 2rem);
}
.registration-form .registration-form-wrapper .input-text input {
  padding: 0.5rem;
  text-align: center;
  margin: auto;
  font-family: "Stabil Grotesk", Arial, sans-serif, monospace;
  font-size: clamp(0.875rem, 0.6534rem + 1.0132vw, 1.5rem);
  width: 100%;
}
@media screen and (max-width: 575.98px) {
  .registration-form .registration-form-wrapper .input-text {
    width: calc(100% - 2rem);
  }
}
.registration-form .registration-form-wrapper .consent-wrapper {
  max-width: 75%;
  margin: auto;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 575.98px) {
  .registration-form .registration-form-wrapper .consent-wrapper {
    max-width: 100%;
  }
}
.registration-form .registration-form-wrapper .consent-wrapper .input-checkbox {
  font-size: clamp(0.875rem, 0.6534rem + 1.0132vw, 1.5rem);
  display: flex;
  flex-direction: row;
  margin: 1rem;
}
.registration-form .registration-form-wrapper .consent-wrapper .input-checkbox input {
  margin: 0.3rem 1rem 0.3rem 0rem;
  min-width: calc(clamp(0.875rem, 0.6534rem + 1.0132vw, 1.5rem) * 1.3);
  min-height: calc(clamp(0.875rem, 0.6534rem + 1.0132vw, 1.5rem) * 1.3);
  align-self: flex-start;
  accent-color: #000;
  outline: 1px solid #fff;
  cursor: pointer;
}
.registration-form .registration-form-wrapper .consent-wrapper .input-checkbox label {
  cursor: pointer;
}
.registration-form .registration-form-wrapper .validation-error-wrapper {
  text-align: center;
  margin: 2rem 1rem -2rem;
  color: red;
}
.registration-form .registration-form-wrapper .validation-error-wrapper .validation-error {
  text-align: center;
}
.registration-form .registration-form-wrapper .actions-wrapper {
  text-align: center;
}
.registration-form .spinning-loader-wrapper {
  display: none;
}
.registration-form .spinning-loader-wrapper .spinning-loader {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(min(1vh, 1vw) * 25);
  height: calc(min(1vh, 1vw) * 25);
  border: calc(min(1vh, 1vw) * 2) solid #444;
  border-right-color: transparent;
  border-radius: 50%;
  box-shadow: 0 0 25px 2px #bbb;
  animation: spin 1s linear infinite;
  display: block;
}
@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0.2;
  }
  50% {
    transform: translate(-50%, -50%) rotate(180deg);
    opacity: 1;
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
    opacity: 0.2;
  }
}
.registration-form .thank-you-message-wrapper {
  display: none;
  text-align: center;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  max-width: 75%;
}
.registration-form .thank-you-message-wrapper .thank-you-message {
  width: 100%;
  text-align: center;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.registration-form .thank-you-message-wrapper .thank-you-message h3 {
  font-size: clamp(1.625rem, 1.0044rem + 2.8369vw, 3.375rem);
}
.registration-form .presence-buttons {
  display: flex;
  justify-content: center;
  flex-direction: row;
}
.registration-form .presence-buttons .presence-button-wrapper {
  margin: 1.5rem 1.5rem;
}
.registration-form .presence-buttons .presence-button-wrapper a {
  width: 100%;
}
@media screen and (max-width: 575.98px) {
  .registration-form .presence-buttons {
    flex-direction: column;
  }
  .registration-form .presence-buttons .presence-button-wrapper {
    width: calc(100% - 3rem);
  }
}

/** Read all folders - use the @forward rule to make variables etc available to other files **/
.speakers {
  display: grid;
}
.speakers .speakers-image {
  width: 75%;
  margin: auto;
}
.speakers .speakers-image img {
  width: 100%;
  height: auto;
}
.speakers .speakers-large-heading {
  width: 75%;
  margin: auto;
  margin-bottom: 1rem;
}
.speakers .speakers-large-heading h2 {
  text-transform: uppercase;
  font-size: clamp(1.625rem, 1.0044rem + 2.8369vw, 3.375rem);
  padding: 1vh 2vw;
  font-weight: 800;
  line-height: 100%;
}
.speakers .speakers-list {
  margin: 2vh 0;
}
.speakers .link-button-wrapper {
  margin-top: calc(4.5rem - clamp(1.25rem, 0.1327rem + 5.5866vw, 7.5rem));
}

/** Read all folders - use the @forward rule to make variables etc available to other files **/
/** Add rules below **/
/** Import all files in the folder **/
/** Read all folders - use the @forward rule to make variables etc available to other files **/
.link-button-wrapper {
  background-color: #fff;
  display: grid;
  margin: auto;
  margin-top: 3rem;
  width: max-content;
  border-radius: 42px;
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
  border: 1px solid #000;
}
.link-button-wrapper a {
  text-transform: uppercase;
  font-size: clamp(0.875rem, 0.8036rem + 0.3571vw, 1.125rem);
  font-weight: 700;
  color: #000;
  padding: calc(10px + (1vw - 3.75px) * 0) calc(48px + (1vw - 3.75px) * 0);
  -webkit-transition: 0.25s ease-in-out;
  -moz-transition: 0.25s ease-in-out;
  -o-transition: 0.25s ease-in-out;
  transition: 0.25s ease-in-out;
}
.link-button-wrapper:hover {
  background-color: #000;
  border: 1px solid #fff;
}
.link-button-wrapper:hover a {
  color: #fff;
}

/** Read all folders - use the @forward rule to make variables etc available to other files **/
.speaker-block-wrapper {
  margin: auto;
  width: 75%;
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 575.98px) {
  .speaker-block-wrapper {
    flex-direction: column;
  }
}
.speaker-block-wrapper .speaker-block-image {
  flex: 1;
  width: 100%;
  height: 100%;
}
.speaker-block-wrapper .speaker-block-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 14rem;
}
.speaker-block-wrapper .speaker-text-wrapper {
  flex: 3;
}
.speaker-block-wrapper .speaker-text-wrapper .speaker-block-first-heading h3 {
  font-size: clamp(1.1rem, 0.67rem + 1.9vw, 2.25rem);
  padding: 0 2vw 1vh;
  font-weight: 800;
  line-height: 100%;
}
.speaker-block-wrapper .speaker-text-wrapper .speaker-block-second-heading h4 {
  text-transform: uppercase;
  font-size: clamp(1rem, 0.734rem + 1.2158vw, 1.75rem);
  padding: 0 2vw;
  font-weight: 700;
  line-height: 100%;
  margin-top: 0.5rem;
}
.speaker-block-wrapper .speaker-text-wrapper .speaker-block-third-heading h5 {
  text-transform: uppercase;
  font-size: clamp(0.5rem, 0.367rem + 0.6079vw, 0.875rem);
  padding: 0 2vw;
  font-weight: 600;
  line-height: 100%;
  margin-top: 0.5rem;
}
.speaker-block-wrapper .speaker-text-wrapper .speaker-block-paragraph {
  font-size: clamp(0.875rem, 0.6534rem + 1.0132vw, 1.5rem);
  padding: 0 2vw clamp(1.25rem, 0.1327rem + 5.5866vw, 7.5rem);
  font-weight: 500;
  margin-top: 0.5rem;
}
.speaker-block-wrapper .link-button-wrapper {
  margin-top: calc(1.5rem - clamp(1.25rem, 0.1327rem + 5.5866vw, 7.5rem));
}

/** Read all folders - use the @forward rule to make variables etc available to other files **/
/** Add rules below **/
/** Import all files in the folder **/
/** Read all folders - use the @forward rule to make variables etc available to other files **/
.single-case {
  padding: 6vh 3vw;
  overflow: hidden;
}
.single-case .single-case-container {
  display: grid;
  justify-items: center;
}
.single-case .single-case-container .heading-text-wrapper .client-container h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(0.75rem, 0.5727rem + 0.8105vw, 1.25rem);
  font-weight: 700;
  line-height: 100%;
}
.single-case .single-case-container .heading-text-wrapper .case-name-container h1 {
  text-align: center;
  text-transform: uppercase;
  font-size: clamp(2rem, 0.1537rem + 8.4404vw, 7.75rem);
  font-weight: 800;
  line-height: 100%;
  padding: clamp(0.1875rem, -0.2589rem + 2.2321vw, 1.75rem) 0;
}
.single-case .single-case-container .heading-text-wrapper .case-short-description {
  text-align: center;
  font-size: clamp(0.875rem, 0.6534rem + 1.0132vw, 1.5rem);
  padding-bottom: 3vw;
  font-weight: 400;
}
.single-case .single-case-container .case-video, .single-case .single-case-container .hero-image {
  display: grid;
  justify-items: center;
  width: 94vw;
  height: 52.875vw;
}
.single-case .single-case-container .case-video iframe, .single-case .single-case-container .case-video img, .single-case .single-case-container .hero-image iframe, .single-case .single-case-container .hero-image img {
  width: 100%;
  height: 100%;
}
.single-case .single-case-container .intro-text {
  text-align: center;
  font-size: clamp(1.125rem, 0.7261rem + 1.8237vw, 2.25rem);
  padding: 8vw 0;
  font-weight: 500;
  width: 90%;
}
.single-case .single-case-container .intro-image {
  width: 75%;
  height: auto;
}
.single-case .single-case-container .intro-image img {
  width: 100%;
  height: 100%;
}
.single-case .single-case-container .text-blocks .text-block-wrapper {
  padding-top: clamp(1.25rem, 0.1327rem + 5.5866vw, 7.5rem);
}
.single-case .single-case-container .stats-container {
  margin-block: 3rem;
  display: inline-flex;
  flex-direction: column;
  gap: 10vw;
}
@media screen and (min-width: 575.98px) {
  .single-case .single-case-container .stats-container {
    flex-direction: row;
  }
}
.single-case .single-case-container .stats-container .stat-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.single-case .single-case-container .stats-container .stat-number {
  font-family: "Stabil Grotesk";
  font-weight: 800;
  font-size: clamp(3.125rem, 2.7261rem + 1.8237vw, 6.25rem);
  text-align: center;
}
.single-case .single-case-container .stats-container .stat-description {
  font-size: clamp(0.875rem, 0.7261rem + 1.8237vw, 1.25rem);
  font-weight: 500;
  text-align: center;
}

.single-case.theme-white {
  background-color: white;
  color: black;
}

/** Read all folders - use the @forward rule to make variables etc available to other files **/
/** Add rules below **/

/*# sourceMappingURL=style.css.map */
