/* ROOT */

@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&amp;family=Sora:wght@100..800&amp;display=swap");

:root {
  --mtc-black: #000000;
  --mtc-midgrey: #616161;
  --mtc-grey: #e1e1e1;
  --mtc-white: #ffffff;
  --mtc-darkgrey: #484848;
  --mtc-green: #e1e1e1;
  --mtc-softgrey: #797979;
}
* {
  outline: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.reel-link .w-inline-block .w-lightbox {
  height: 0 !important;
}

html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}
html,
body {
  overflow: hidden !important;
  height: 100;
  margin: 0;
}
.no-pointer-events {
  pointer-events: none;
}
.loading-bar,
.cursor {
  display: block !important;
}
.unicorn-script-container {
  opacity: 0;
}
body {
  background: var(--mtc-darkgrey);
  font-family: "Sora", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-transform: uppercase;
  cursor: default;
  font-weight: 450;
  color: var(--mtc-white);
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}
.content_wrapper {
  min-height: 100svh;
}
.home,
.about {
  background: var(--mtc-black);
  overflow: hidden !important;
}
.work {
  background: var(--mtc-white);
  overflow: hidden !important;
}
.case {
  overflow: auto !important;
  overflow: hidden !important;
}

::-webkit-scrollbar {
  -ms-overflow-style: none;
  display: none;
  overflow: -moz-scrollbars-none;
  -ms-overflow-style: none;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
img {
  user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
  -webkit-touch-callout: none;
}

/* TYPOGRAPHY */

h1,
h2,
h3,
h4,
h5 {
  padding: 0;
  margin: 0;
}
h1 {
  font-family: "Humane";
  font-style: normal;
  font-weight: 400 !important;
  line-height: 80%;
  margin-bottom: 1vw !important;
  font-size: 20vw;
  line-height: 77%;
  padding-top: 2vw !important;
}
.split-parent {
  overflow: hidden;
  padding-top: 0.1vw;
}
h1 .split-child {
  padding-top: 1vw;
}
h2 {
  font-family: "Humane";
  font-weight: 500 !important;
  font-size: 5.208vw;
  line-height: 80%;
}
h4 {
  font-size: 0.68vw;
  font-style: normal;
  font-weight: 400;
  line-height: 173%;
  text-transform: uppercase;
}
h5 {
  font-family: "Abermono";
  font-size: 0.694vw;
  line-height: 1;
  font-weight: 400;
  color: var(--mtc-softgrey);
}
h6 {
  font-size: 0.75vw;
  line-height: 1;
  font-weight: 450;
}
p {
  font-size: 0.8vw;
  line-height: 2.15;
  font-weight: 450 !important;
}

/* BASICS */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100svh;
  background: black;
  z-index: 9999999 !important;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo-loader img {
  margin-right: 0;
  min-width: 3.2vw;
  max-width: 3.2vw;
}
.loading-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 4px;
  background-color: var(--mtc-white) !important;
  z-index: 9999999999999999999999 !important;
}
.section {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: auto;
  height: 100vh;
  width: 100%;
  padding: 16vh;
}
.hero-text {
  display: flex;
  flex-direction: column;
  z-index: 999;
}
.logo {
  font-size: 1.2vw;
  font-weight: 400;
  position: relative;
  z-index: 99999;
}
.logo img {
  margin-right: 2vw;
  min-width: 2.56vw;
  max-width: 2.56vw;
}
.email {
  display: flex;
  justify-content: start;
  align-items: start;
  grid-gap: 0.5vw;
  /*
  text-decoration-line: underline;
  text-decoration-thickness: 0.5px;
  text-underline-offset: 8px;
  text-decoration-color: var(--mtc-darkgrey);
  */
}
.dot {
  min-width: 0.45vw;
  min-height: 0.45vw;
  border-radius: 100%;
  background: var(--mtc-grey);
  margin-right: -0.15vw;
  margin-bottom: 0.1vw;
}
.email .dot {
  animation: 2s 2s blink ease infinite;
  margin-top: 0.55vw;
}
.link {
  font-size: 0.69vw;
  font-weight: 450;

  color: var(--mtc-grey);
}
::selection {
  background: #c2f703;
}
@keyframes "blink" {
  from,
  to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  from,
  to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@-webkit-keyframes "blink" {
  from,
  to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@-o-keyframes "blink" {
  from,
  to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
p a {
  display: inline-block;
}
p a:after {
  display: block;
  content: "";
  border-bottom: solid 0.05vw var(--mtc-black);
  transform: scaleX(1);
  transition: transform 500ms cubic-bezier(0.34, 0, 0, 0.99);
  transform-origin: 0 50%;
  margin-top: -0.1vw;
}
p a:hover:after,
.link-frame p a:hover:after {
  transform: scaleX(0);
  transform-origin: 100% 0%;
}
.link-frame p a:after {
  display: block;
  content: "";
  border-bottom: solid 0.05vw var(--mtc-midgrey);
  transform: scaleX(1);
  transition: transform 500ms cubic-bezier(0.34, 0, 0, 0.99);
  transform-origin: 0 50%;
  margin-top: -0.1vw;
}
.navigation {
  position: fixed;
  bottom: 4vw;
  left: 4vw;
  display: flex;
  justify-content: start;
  align-items: center;
  grid-gap: 0.6vw;
  z-index: 99999;
  mix-blend-mode: difference;
}
.nav-btn {
  display: flex;
  justify-content: start;
  align-items: center;
  color: var(--white);
  grid-gap: 0.8vw !important;
  text-decoration: none;
  z-index: 999999999 !important;
  border: 0.085vw solid white;
  border-radius: 50vw;
  padding-left: 0.8vw;
  padding-top: 0.2vw;
  padding-bottom: 0.1vw;
  cursor: pointer !important;
  text-wrap: nowrap;
  height: 2.2vw;
}
.nav-btn h6 {
  overflow: hidden;
  height: 0.8vw;
  padding-top: 0vw;
  padding-right: 0.8vw;
}
.nav-btn h6 span {
  height: 0.8vw;
  text-shadow: 0 0.8vw 0 rgba(255, 255, 255, 1);
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.28, 0, 0, 1);
}
.nav-btn:hover h6 span {
  transform: translateY(-100%);
}
.link-disabled {
  pointer-events: none;
}
.nav-btn {
  opacity: 1;
}
a {
  color: inherit;
  text-decoration: inherit;
}
.space-bg {
  position: absolute;
  right: 0;
  bottom: 0.1svw;
  min-width: 50vw;
  max-width: 50vw;
  z-index: 999 !important;
  pointer-events: none;
  animation: blur 6s ease-in-out infinite;
  transform: scale(1);
}
@keyframes blur {
  0%
  {
    filter: blur(0px);
  }
  5%
  {
filter: blur(4px);
  }
  25%
  {
filter: blur(0px);
transform: scale(1.015);
  }
  50%
  {
filter: blur(0px);
transform: scale(1);
  }
  75%
  {
filter: blur(4px);
transform: scale(1.010);
  }
	95%
  {
filter: blur(0px);
  }
  100%
  {
filter: blur(0px);

  }
}
.hero-animation {
  min-width: 96vh;
  max-width: 96vh;
  height: 96vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.hero-animation img {
  pointer-events: none;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.home {
  background: var(--mtc-black);
}
.work {
  background: var(--mtc-white);
}
.work * {
  color: var(--mtc-black);
}
.w-webflow-badge {
  display: none !important;
}

.play-show-reel {
  position: fixed;
  top: 4vw;
  left: 4vw;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  grid-gap: 2vw;
  mix-blend-mode: difference;
  font-size: 0.75vw;
  font-weight: 450;
  cursor: pointer;
}
.play-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.playpausechange {
  overflow: hidden;
  height: 1.7vw;
}
#video-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  min-height: 101svh;
  overflow: hidden;
  z-index: 99999;
  padding: 0;
  margin: 0;
}
#showreel-video {
  width: 100%;
  height: 101svh;
  background: var(--mtc-black);
  padding: 0;
  margin: 0;
}
.text-inside-play {
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  line-height: 1.7vw;
}
.play-button img:nth-of-type(1) {
  width: 2.8vw;
}
.play-button img:nth-of-type(2) {
  width: 0.4vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.project-name h1 {
  font-size: 18.211vw;
  margin: 0;
  margin-top: -2vw !important;
  margin-bottom: -3vw !important;
  padding: 0;
  line-height: 1;
  height: 22vw;
}
.project-number {
  display: flex;
  color: var(--mtc-black);
  position: relative;
  top: 0.6vw;
  left: -1.5vw;
  font-size: 1vw;
  font-weight: 450;
}
.big-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  top: -6vw;
}

.marquee-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}

.big-marquee h1 {
  font-size: 25vw;
  text-transform: uppercase;
  margin: 0;
}

.track-horizontal {
  position: absolute;
  white-space: nowrap;
  will-change: transform;
  animation: marquee-horizontal 50s linear infinite;
}

@keyframes marquee-horizontal {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.track-horizontal img {
  min-width: 100vw;
  max-width: 100vw;
}

/* Create a seamless loop */
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Duplicate the content for a seamless loop */
.marquee-content::after {
  content: "";
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.marquee-content::after {
  content: attr(data-duplicate);
  display: inline-block;
  visibility: hidden;
}
.about-us-text {
  display: flex;
  flex-direction: column;
  align-items: start;
  grid-gap: 2vw;
  position: absolute;
  right: 5vw;
  bottom: 4vw;
  width: 39.6vw;
  text-wrap: pretty;
}
.about-us-text img {
  min-width: 2.3vw;
  max-width: 2.3vw;
}
#cursor {
  position: fixed;
  z-index: 999999 !important;
  left: 0;
  top: 0;
  border-radius: 100%;
  pointer-events: none;
  will-change: transform;
  mix-blend-mode: difference;
}
@media (hover: hover) and (pointer: fine) {
  .cursor__circle {
    width: 4vw;
    height: 4vw;
    border-radius: 100%;
    border: solid 1.5px var(--mtc-white);
    transition: all 0.4s cubic-bezier(0.52, 0.02, 0, 0.99);
  }
  #cursor.change .cursor__circle {
    width: 0.5vw;
    height: 0.5vw;
    background-color: var(--mtc-white);
    border-color: transparent;
  }
  #cursor.scroll .cursor__circle {
    background: var(--mtc-white);
    border-color: transparent;
    width: 10.995vw;
    height: 2.894vw;
    border-radius: 1.736vw !important;
    transition: all 0.4s cubic-bezier(0.52, 0.02, 0, 0.99);
  }
  #cursor.scroll .cursor__circle::after {
    content: "SCROLL TO EXPLORE";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: black;
    font-size: 0.669vw;
    white-space: nowrap;
    line-height: 1;
    transition: all 0.4s cubic-bezier(0.52, 0.02, 0, 0.99);
  }
  #cursor.playpause .cursor__circle {
    background: var(--mtc-white);
    border-color: transparent;
    width: 10.995vw;
    height: 2.894vw;
    border-radius: 1.736vw !important;
    transition: all 0.4s cubic-bezier(0.52, 0.02, 0, 0.99);
  }
  #cursor.playpause .cursor__circle::after {
    content: "Play/Pause";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: black;
    font-size: 0.669vw;
    white-space: nowrap;
    line-height: 1;
    transition: all 0.4s cubic-bezier(0.52, 0.02, 0, 0.99);
  }
}

/* ALL WORKS PAGE */

.menu.is-dragging {
  cursor: grabbing;
}

.menu-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.menu-item {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  will-change: transform;
}

.case .menu-item {
  width: 50vw;
}

.frame {
  width: 100%;
  height: 100svh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  top: 0;
  left: 0;
}

.contact-page,
.case-link,
.frame,
.split-case-content {
  transform: translateY(20vw);
  animation: slideUp 1.1s cubic-bezier(0.74, 0, 0, 0.99) forwards 0s;
}

@keyframes slideUp {
  to {
    transform: translateY(0vw);
  }
}

.section {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  animation: FadeIn 1.6s cubic-bezier(0.39, 0, 0, 0.99) forwards 0.2s;
}

@keyframes FadeIn {
  to {
    opacity: 1;
  }
}

/* CASE PAGE */

.split-case-page {
  display: flex;
  width: 100%;
  height: 100svh;
  overflow: hidden;
  position: relative;
  align-self: start;
  justify-self: start;
}

.split-case-content {
  width: 50vw;
  background: var(--mtc-white);
  padding: 4vw 4.4vw;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  position: absolute;
  top: 0;
  right: 0;
  height: 100svh;
}

.split-case-image {
  width: 50vw !important;
  background: var(--mtc-black);
  height: 100vh;
  pointer-events: none !important;
  overflow: scroll !important;
  background: var(--mtc-darkgrey);
}
.split-case-image img {
  object-fit: cover;
  height: 100svh;
  width: 100%;
}
.split-case-content {
  z-index: 1;
}
.split-case-content h4 img {
  min-width: 0.6vw;
  max-width: 0.6vw;
  min-height: 0.6vw;
  max-height: 0.6vw;
}
.case-menu {
  display: flex;
  flex-direction: row-reverse;
  justify-self: end;
  align-self: end;
  grid-gap: 1vw;
  position: absolute;
  top: 4vw;
  right: 4vw;
  z-index: 999;
}
.case-close-button h5 {
  overflow: hidden;
  height: 0.8vw;
}
.case-close-button h5 span {
  height: 1vw;
  text-shadow: 0 1vw 0 rgba(0, 0, 0, 1);
  display: inline-block;
  transition: transform 0.4s cubic-bezier(0.28, 0, 0, 1);
}
.case-close-button h5:hover span {
  transform: translateY(-100%);
}
.project-read-more {
  display: none;
}
.split-case-content h1 {
  margin-top: 2vw;
  margin-left: -0.2vw;
}
.case-head {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.case-head p {
  margin-bottom: 0vw;
}
.case-head h4 {
  border: 0.085vw solid var(--mtc-black);
  align-self: start;
  display: inline;
  border-radius: 50vw;
  padding: 0.4vw 1vw;
}
.case-head img {
  height: 26vw;
  width: 100%;
  object-fit: cover;
}
.mobile-header-gradient,
.mobile-footer-gradient {
  display: none;
}
.canvas {
  pointer-events: none;
}
.work-info {
  display: flex;
  flex-direction: column;
  grid-gap: 2vw;
  margin-bottom: 0.5vw;
}
.w-richtext figure img {
  all: unset;
  width: 55vw;
  object-fit: cover;
}

/* CONTACT PAGE */

.contact-page {
  display: grid;
  grid-template-columns: repeat(12, 12fr);
  padding: 0vw 4.63vw;
  padding-top: 20vh;
  width: 100%;
  height: 100vh;
}
.contact-block {
  display: flex;
  flex-direction: column;
  grid-gap: 2vw;
}
.contact-block h1 {
  font-size: 25vw;
}
.contact-page div:nth-of-type(1) {
  grid-column: 2 / span 2;
}
.contact-page div:nth-of-type(2) {
  grid-column: 6 / span 2;
}
.contact-page div:nth-of-type(3) {
  grid-column: 10 / span 2;
}
.contact-page div:nth-of-type(4) {
  display: flex;
  position: absolute;
  left: 42.4vw;
  bottom: 1vw;
}

.not-found {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.not-found h1 {
  font-size: 35vh;
}

@media only screen and (max-width: 767px) {
  /* ROOTS */

  .content_wrapper {
    overflow-x: hidden;
    min-height: 100svh;
  }

  .about,
  .work {
    overflow-y: auto;
    min-height: 100svh;
  }

  .home,
  .contact {
    height: 100svh;
  }

  /* FONTS */

  h1 {
    font-family: Humane;
    font-style: normal;
    font-weight: 400 !important;
    line-height: 80%;
    margin-bottom: 1vw !important;
    font-size: 20vw;
    line-height: 77%;
    padding-top: 2vw !important;
  }

  .split-parent {
    overflow: hidden;
    padding-top: 0.1vw;
  }
  h1 .split-child {
    padding-top: 1vw;
  }
  h2 {
    font-size: 1.1vw;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    text-transform: uppercase;
    mix-blend-mode: difference;
  }
  h4 {
    font-size: 2vw;
    font-style: normal;
    font-weight: 400;
    line-height: 173%;
    text-transform: uppercase;
  }
  h5 {
    font-size: 2.2vw;
    line-height: 1;
    margin-bottom: 2vw;
  }
  h6 {
    font-size: 2.1vw;
    line-height: 1;
    font-weight: 450;
  }
  p {
    font-size: 2.5vw;
    line-height: 2.15;
  }

  /* GENERAL */

  .section {
    padding: 17vh !important;
    max-height: 100svh !important;
  }
  /*
    .hero-animation, .hero-animation img {
        min-width: 130vw !important;
        max-width: 130vw !important;
        max-height: 130vw !important;
        min-height: 130vw !important;
    }
    */
  .hero-animation,
  .hero-animation img {
    min-width: 63vh;
    max-width: 63vh;
    max-height: 63vh;
    min-height: 63vh;
  }
  .play-show-reel {
    top: 8vw;
    left: 8vw;
    grid-gap: 5.2vw;
    font-size: 2.1vw;
  }
  .play-button img:nth-of-type(1) {
    width: 8.3vw;
  }
  .play-button img:nth-of-type(2) {
    width: 1.3vw;
  }
  .playpausechange {
    height: 4vw;
  }
  .text-inside-play {
    line-height: 4vw;
  }
  .navigation {
    bottom: 8vw;
    left: 8vw;
    grid-gap: 2vw;
  }
  .logo-loader img {
    min-width: 11vw;
    max-width: 11vw;
  }
  .logo {
    font-size: 3.3vw;
  }
  /*
    .logo div {
      position:relative;
      top:6vh;
    }
    */
  .logo img {
    margin-right: 4.5vw;
    min-width: 8vw;
    max-width: 8vw;
  }
  .email {
    position: relative;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    grid-gap: 0.5vw;
    text-decoration-line: underline;
    text-decoration-thickness: 0.5px;
    text-underline-offset: 8px;
    text-decoration-color: var(--mtc-darkgrey);
  }
  /*
    .home .email {
      position:relative;
      top:-17vw;
    }
    */
  .dot {
    width: 1.3vw;
    height: 1.3vw;
    margin-right: 1vw;
    border-radius: 100%;
    background: var(--mtc-grey);
  }
  .email .dot {
    margin-right: 1vw;
    margin-top: -2.5vw;
  }
  .link {
    font-size: 2vw;
  }
  .nav-btn {
    padding-left: 3vw;
    padding-top: 0.2vw;
    padding-bottom: 0.1vw;
    height: 7vw;
  }
  .nav-btn h6 {
    overflow: hidden;
    height: 2vw;
    padding-top: 0vw;
    padding-right: 3.8vw;
  }
  .nav-btn h6 span {
    height: 2vw;
    text-shadow: 0 2vw 0 rgba(255, 255, 255, 1);
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.28, 0, 0, 1);
  }

  /* ABOUT PAGE */

  .big-marquee {
    position: relative;
    top: -33vw;
  }
  .big-marquee h1 {
    font-size: 40vw;
  }
  .big-marquee img {
    min-width: 180vw;
    max-width: 180vw;
  }

  .about-us-text {
    right: 6vw;
    bottom: 30vw;
    width: 70vw;
    padding-right: 5vw;
  }
  .about-us-text img {
    min-width: 5vw;
    max-width: 5vw;
    margin-bottom: 3vw;
  }
  .about-us-text .email {
    margin-top: 6vw;
  }
  p a:after,
  .link-frame p a:after {
    margin-top: -0.5vw;
  }
  /* WORK PAGE */

  /*
    .projects-list {
      padding-top:15vw;
      padding-bottom:6vw;
      width:100%;
    }
    */
  .project-number {
    top: 0vw;
    font-size: 2.3vw;
  }
  .menu-item h1 {
    font-size: 35vw;
  }

  /* CASE PAGE */

  .split-case-page {
    background: var(--mtc-black);
  }
  .split-case-content {
    position: absolute;
    width: 100%;
    padding: 25vw 8vw;
    align-items: start;
    justify-content: start;
    clip-path: inset(100% 0 0 0);
    pointer-events: auto;
  }
  .split-case-content h1 {
    margin-top: 5vw;
  }
  .split-case-content h4 img {
    min-width: 1.8vw;
    max-width: 1.8vw;
    min-height: 1.8vw;
    max-height: 1.8vw;
  }
  .case-menu {
    top: 11.5vw;
    grid-gap: 5vw;
    right: 8vw;
    mix-blend-mode: difference !important;
    color: var(--mtc-white);
  }
  .case-menu h5 {
    mix-blend-mode: difference !important;
    color: var(--mtc-white);
  }
  .case-close-button h5 {
    overflow: visible !important;
    height: 3vw;
    mix-blend-mode: difference !important;
    color: var(--mtc-white);
  }
  .case-close-button h5 span {
    height: 3vw;
    text-shadow: none;
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.28, 0, 0, 1);
    mix-blend-mode: difference !important;
    color: var(--mtc-white);
  }
  .case-close-button h5:hover span {
    transform: unset;
  }
  .project-read-more {
    display: block;
  }
  .split-case-image {
    min-width: 100vw;
    z-index: 0;
  }
  .split-case-image img {
    min-width: 100vw;
  }
  .case-head h1 {
    font-size: 35vw;
  }
  .case-head img {
    height: 26vw;
    width: 100%;
    object-fit: cover;
  }
  .case-head h4 {
    padding: 1vw 2vw;
  }
  .mobile-header-gradient,
  .mobile-footer-gradient {
    display: block;
  }
  .work-info {
    grid-gap: 8vw;
  }
  .work-info h4 {
    font-size: 3vw;
  }
  .mobile-header-gradient {
    background: rgb(0, 0, 0);
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.8) 100%
    );
    height: 50vw;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
  }
  .mobile-footer-gradient {
    background: rgb(0, 0, 0);
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.8) 100%
    );
    height: 50vw;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
  }
  /* CONTACT PAGE */

  .contact-page {
    padding: 30vw 0vw;
    padding-top: 40vw;
    grid-gap: 5vw;
  }
  .contact-block h1 {
    font-size: 55vw;
  }
  .contact-page div:nth-of-type(1) {
    grid-column: 2 / span 5;
  }
  .contact-page div:nth-of-type(2) {
    grid-column: 7 / span 4;
  }
  .contact-page div:nth-of-type(3) {
    grid-column: 2 / span 5;
  }
  .contact-page div:nth-of-type(4) {
    grid-column: 2 / span 2;
    position: unset;
  }

  .not-found h1 {
    font-size: 25vh;
  }
}
