/* ==============================================
     ROOT
============================================== */

:root {
    --white: #ffffff;
    --black: #0A0A0A;
    --pink: #C31D9F;
    --grey: #5A5A5A;
    --midgrey: #373737;
    --darkgrey: #101010;
    --primary-font:'Acumin Pro Extra Condensed', sans-serif;
    --secondary-font:'OpenSauceOne', sans-serif;
    --underline-motion: fadein 2.5s 1s cubic-bezier(.59,0,0,.97); 
    --cursor-timing: all 0.4s cubic-bezier(0.52, 0.02, 0, 0.99);
    --work-hover-motion: 1s cubic-bezier(.36,0,0,.99);
    --grid-gap: 3.819vw;
  }
  
  
  
  .pink {
    color: var(--pink);
  }
  
  
  
  /* ==============================================
         Hide Scrollbar
  ============================================== */
    
  body::-webkit-scrollbar{display: none;} /* Chrome, Safari, Opera */
  body {-ms-overflow-style: none;} /* IE & Edge */
  html {scrollbar-width: none;} /* Firefox */
  
  
  /* ==============================================
         Page Styles
  ============================================== */
  
  html, body {
    -webkit-font-smoothing: antialiased;
    font-size:1vw;
    line-height:1;
    font-family: var(--secondary-font);
    background: var(--white);
    color: var(--black);
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    width:100%;
    padding:0;
    margin:0 auto;
    /*
    min-height:100vh;
    */
    scroll-behavior: auto;
    overflow:hidden;
      height:auto;
    min-height:100dvh;
  }
  
  html {
    touch-action: manipulation;
  }
  
  input, textarea, select, button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-size: 16px; /* Ensures the text size is not small, preventing zooming */
  }
  
  #page-wrapper {
    
    height:auto;
    min-height:100%;
  
  }
  
  /* ==============================================
         CSS Reset
  ============================================== */
  
  *, *:after, *:before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }
  li, ul, figure { padding: 0; margin: 0; list-style: none;}
  
  
  .w-inline-block {
    all:unset;
  }
  
  svg {
     max-width: none;
     height: auto;
     box-sizing: border-box;
  }
  
  audio, iframe, img, svg, video, picture, figure {
     vertical-align: middle;
      -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
    user-drag: none;
  }
  
  
  
  h1, h2, h3, h4, h5, h6, p, a, li, ul, ol, span, strong, em, figcaption, .w-form, .w-radio {padding: 0; margin: 0; }
  
  
  span {
    line-height:unset;
    padding:0;
    margin:0;
  }
  
  
  :focus {
    outline: none;
  }
  
  strong {
    display:inline-flex;
    font-weight: inherit;
  }
  
  .hide {
    display:none;
  }
  
  .divs-hide {
    display:none;
  }
  
  
  .w-webflow-badge {
    display:none!important;
  }
  
  .unicorn {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important; /* Keep it centered */
    position: fixed;
    min-width: 100vw !important;
    max-width: 100vw !important;
    max-height: 100vh !important;
    min-height: 100vh !important;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: difference !important;
    opacity: 1;
  
  }
  
  @media (max-width: 500px) {
    .unicorn {
      display:none;
      max-height: 50vh !important;
      min-height: 50vh !important;
      top: 9%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
  }
  
  .w-dyn-list {
   padding:unset;
    margin:unset;
    line-height:unset;
    height:unset;
    min-height:unset;
    width:unset;
    min-width:unset;
  }
  
  
  
  /* ==============================================
      Page Transition Logic
   ============================================== */
    
  
  .page-overlay-first,  .page-overlay-second {
    display:none;
  }
   .page-overlay-first {
    width: 100%;
    height: 100.5svh;
    background: var(--white);
    position: fixed;
    top: 0; 
    left: 0;
    pointer-events: none;
    z-index: 9999999;
    transform-origin: bottom; 
  }
  
  .page-overlay-second {
    width:100%;
    height:100vh;
    background:var(--midgrey);
    position:fixed;
    top:0;
    left:0;
    opacity:0;
    pointer-events:none;
    z-index:999999;
  }
  
  .page-overlay-video {
    width:100%;
    height:100vh;
    background:var(--white);
    position:fixed;
    top:0;
    left:0;
    opacity:0;
    pointer-events:none;
    z-index:999;
  }
  
  
      
  
  /* ==============================================
         Cursor Style
  ============================================== */
  
  #cursor {
    position: fixed;
    z-index: 99999999999999!important;
    left: 0;
    top: 0;
    border-radius: 100%;
    pointer-events: none;
    will-change: transform;
    opacity:0;
    
  }
  
  @media (hover: hover) and (pointer: fine) {
    .cursor__circle {
      width: 3.3vw;
      height: 3.3vw;
      border-radius: 100%;
      border: solid 0.12vw var(--black);
      transition: var(--cursor-timing);
      background:transparent;
    }
  
    #cursor.change .cursor__circle {
      width: 0.2vw;
      height: 0.2vw;
      background-color: var(--black);
      border-color: transparent;
    }
  
    #cursor.explore .cursor__circle {
      border: solid 0.12vw var(--black);
          width: 4vw;
          height: 4vw;
      top: 150%;
          left: 50%;
          transition: var(--cursor-timing);
  
      }
      #cursor.explore .cursor__circle::after {
          content: "↔";
          display: block;
          position: absolute;
          top: 50%;
          left: 50%;
       margin-top:3vw;
          transform: translate(-50%, -50%);
          font-size: 1.5vw;
          line-height: 1;
          transition: var(--cursor-timing);
      text-align: center;
      }
    
    #cursor.drag .cursor__circle {
      border: solid 0.12vw var(--black);
          width: 8vw;
          height: 8vw;
      top: 150%;
          left: 50%;
          transition: var(--cursor-timing);
  
      }
      #cursor.drag .cursor__circle::after {
          content: "↕";
          display: block;
          position: absolute;
          top: 50%;
          left: 50%;
       margin-top:0vw;
          transform: translate(-50%, -50%);
          font-size: 1.5vw;
          line-height: 1;
          transition: var(--cursor-timing);
      text-align: center;
      }
  
    #cursor.hiding .cursor__circle {
      opacity:0!important;
  
      }
      #cursor.hiding .cursor__circle::after {
       opacity:0!important;
      }
    
  }
  
  @media (max-width: 500px) {
  
    #cursor {
      display: none;
    }
  }
  
  
  /* ==============================================
         Reset Styles
  ============================================== */
  
  
  h1, h2, h3, h4, h5, h6  {
    margin: 0;
    padding: 0;
    font-weight: normal;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
    border: none;
    margin: 0;
    padding: 0;
  }
  
  a, button {
    text-decoration: none!important;
    color: inherit;
    background: none;
    margin: 0;
    padding: 0;
    border: none;
    cursor: pointer!important;
  }
  
  a:focus, a:active {
    outline: none;
  }
  
  .btn {
    text-decoration: underline;
    text-underline-offset: 0.8vw;
  }
  
  
  
  
  /* ==============================================
       Fonts
  ============================================== */
  
  
  @font-face {
    font-family: 'AcuminVariableConcept';
    src: url('fonts/acumin-pro-extra-condensed-bold.otf') format('opentype');
    text-transform: uppercase;
  }
  
  @font-face {
    font-family: 'OpenSauceOne';
    src: url('fonts/OpenSauceOne-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
  }
  
  /* ==============================================
         Typogoraphy
  ============================================== */
  
  h1, h2 {
    font-family: var(--primary-font);
    text-transform: uppercase;
    line-height: 0.85;
  }
  
  h1 {
    font-size: 12vw;
    letter-spacing: -0.3vw;
  }
  
  h2 {
    font-size: 6vw;
    letter-spacing: -0.15vw;
    margin-bottom:-0.6vw;
  }
  
  h3 {
    font-size: 1.6vw;
    line-height: 1.38;
  }
  
  h4 {
    font-size: 1.1vw;
    line-height: 1.5;
  }
  
  h5 {
    font-size:0.9vw;
  }
  
  h6 {
    font-size: 0.752vw;
    line-height: 1.7;
  }
  
  p {
    font-size: 1vw;
    line-height:1.5;
  }
  
  .project-info p {
    font-size: 1.6vw;
    line-height: 1.38;
  }
  
  .project-credits p {
    font-size: 1.1vw;
    line-height: 1.5;
  }
  /*
  @media (max-height: 920px) or (min-width:1920px) {
    h1 {
      font-size: 23vh;
    }
    h2 {
      font-size: 12.7vh;
      letter-spacing: -0.2vh;
    }
    h3 {
      font-size: 3.05vh;
      line-height: 1.38;
    }
    h4 {
      font-size: 1.95vh;
      line-height: 1.5;
    }
    h5 {
      font-size:1.88vh;
    }
  }
  */
  
  @media (max-width: 500px) {
    h1 {
      font-size: 17vw;
    }
    h2 {
      font-size: 15vw;
      letter-spacing:-0.5vw;
        margin-bottom:-1vw;
    }
    .hero h2 {
      font-size:16vw;
    }
    h3 {
      font-size: 5.5vw;
      line-height: 1.38;
    }
    h4, h5, .btn {
      font-size: 4vw;
    }
    h6 {
      font-size: 3vw;
      line-height: 1.7;
    }
    .project-info p {
      font-size: 5.5vw;
      line-height: 1.38;
  }
  
  .project-credits p {
      font-size: 4vw;
  }
  }
  
  
  
  /* ==============================================
         Grid Settings
  ============================================== */
  
  .grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 3.819vw;
    padding: 3.819vw;
    margin: 0 auto;
  }
  
  .grid-overlay {
    position: fixed;
    top: 3.819vw;
    left: 3.819vw; 
    width: calc(100% - 7.638vw); 
    height: calc(100% - 7.638vw); 
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-gap: 3.819vw; 
    z-index: 999999999999999;
    pointer-events: none;
  }
  
  .grid-overlay div {
    background: rgba(255, 0, 0, 0.1);
  }
  
  @media (max-width: 500px) {
    .grid {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr)); 
      grid-gap: 8vw; 
      padding: 8vw; 
      width: calc(100% - 16vw); 
      /*
      overflow: hidden; 
      */
    }
  
    .grid-overlay {
      position: fixed;
      top: 8vw;
      left: 8vw;
      width: calc(100% - 16vw); 
      height: calc(100% - 16vw);
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr)); 
      grid-gap: 8vw;
      overflow: hidden;
      white-space: nowrap; 
    }
  
    .grid-overlay div {
      height: 100vh;
    }
  }
  
  
  /* ==============================================
         Header
  ============================================== */
  
  .header {
    width:100%;
    position:fixed;
    top:0;
    height:8vw;
    transition:top 0.5s cubic-bezier(.22,.19,0,.99);
    z-index:999;
  }
  
  .header.scroll {
    top: -10vw;
    transition:top 0.8s cubic-bezier(.22,.19,0,.99);
  }
  
  .header .logo {
    grid-column: 1 / 3;
    overflow: hidden;
    position: absolute;
    margin-top: -0.5vw;
    z-index:99;
  }
  
  .header .grid {
    width:100%;
  }
  
  .logo img {
    min-width: 10.194vw;
    max-width: 10.194vw;
    top: -1vw;
    left: 0;
  }
  
  
  .nav a {
    width:10vw;
    opacity: 1;
    font-size: 1vw;
    transition: opacity 0.3s ease;
  }
  
  .nav a:hover {
    opacity: 0.5;
  }
  
  #theme-toggle {
    margin-left: 20vw;
  }
  
  .toggle-switch {
    background: var(--black);
    width: 1.2vw;
    height: 1.2vw;
    border-radius:50vw;
  }
  
  .nav .current {
    pointer-events: none;
    position: relative;
    top:0.3vw;
  }
  
  .btn, .current {
    width:fit-content!important;
  }
  
  .btn:after, .current {
    display: block;
    content: "";
    border-bottom: solid 0.099vw var(--black);
    transform: scaleX(1);
    transition: transform 500ms cubic-bezier(.59,0,0,.97);
    transform-origin: 0 50%;
    padding-bottom: 0.7vw;
  
    /* Hide with opacity initially */
    opacity: 0;
    animation: fadein 2.5s 1s cubic-bezier(.59,0,0,.97) forwards;
  }
  
  /* Reveal and animate with clip-path */
  @keyframes fadein {
    0% { 
      opacity: 1;
      clip-path: inset(0 100% 0 0%);
    }
    50% { clip-path: inset(0 100% 0 0%); }
    100% { 
      opacity: 1;
      clip-path: inset(0 0 0 0); 
    }
  }
  
  
  .btn:hover:after {
    transform: scaleX(0);
    transform-origin: 100% 0%;
  
  }
  
  
  @media (max-width: 500px) {
    .nav a {
      display:none;
    }
    .btn:after, .current {
      margin-top:2vw;
      border-bottom: solid 0.3vw var(--black);
    }
  }
  
  .header .nav {
    grid-column: 7 / 13;
    width:100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  @media (max-width: 500px) {
    .header .logo {
      grid-column: 1 / 3;
    }
    .logo img {
      min-width: 30vw;
      max-width: 30vw;
    }
    .header .nav {
      grid-column: 4 / 7;
      justify-content: end;
    }
    .header.scroll {
      top: -16vw;
      transition:top 0.5s cubic-bezier(.22,.19,0,.99);
    }
    .toggle-switch {
      width: 4vw;
      height: 4vw;
      margin-top: 1vw;
    }
    #theme-toggle {
      margin-left: -21vw;
      z-index:99;
      position:relative;
    }
  }
  
  /* ==============================================
         Home Page
  ============================================== */
  
  
  
  .works-slider {
    grid-column: 1 / 13;
    width:100%;
    position: fixed;
    top: 7.8vw;
    z-index:0;
    cursor:grabbing;
  }
  
  .works-container {
    display:flex;
    width: 100vw;
  }
  
  .work-slide {
    min-width:38vh;
    margin-right: 6dvh;
    grid-gap: 1vw;
    display: grid;
    position:relative;
  }
  
  .work-slide .image {
    overflow: hidden;
  }
  .work-slide img {
    width: 100%;
    height: 25vh;
    object-fit:cover;
  
  }
  .work-slide h5 {
    margin-bottom:1vw;
  }
  
  
  @media (max-width: 500px) {
    .work-slide {
      min-width:28vh;
      margin-right: 3.5vh;
    }
    .work-slide img {
      height: 20vh;
    }
    .work-slide h5 {
      font-size:3vw;
      margin-top:2vw;
      margin-bottom:1vw;
    }
  }
  
  
  
  @media (max-height: 600px) and (max-width:500px) {
    .work-slide {
      min-width:26vh;
      margin-right: 3.5vh;
    }
    .work-slide img {
      height: 18vh;
    }
  }
  
  .hero .grid {
    position: relative;
    height: 100dvh;
    width:100%;
    align-items: center;
    justify-content: center;
    align-items:end;
    position: relative;
  }
  
  .hero .grid .scroll {
    position: absolute;
    bottom: 3.819vw;
    right: 3.819vw;
  }
  
  
  .hero .video-thumb {
    position:absolute;
    bottom: 3.819vw;
    left: 3.819vw;
    border-radius:0.1vw;
    overflow: hidden;
    cursor: pointer;
    z-index:9999;
  }
  
  .hero .video-thumb video {
    width: 20.2vw;
    height:12vw;
    object-fit: cover;
    z-index: 99999999999!important;
  }
  .video-thumb .play-reel {
    display:flex;
    grid-gap:0.4vw;
    margin-bottom:1.5vw;
  }
  
  .video-thumb .play-reel-icon {
    clip-path: polygon(20% 0, 20% 100%, 100% 50%);
    width: 0.6vw;
    height: 0.7vw;
    background: var(--black);
    position:relative;
    top:0.28vw;
    
  }
  
  .hero .hero-headline {
    grid-column: 7 / 13;
    display: grid;
    grid-gap: 1.3vw;
  }
  
  .hero .hero-headline .btn {
    margin-top:3vh;
  }
  
  
  
  @media (max-width: 500px) {
    
    .works-slider {
      margin:unset;
      top:12dvh;
    }
    
    .hero .hero-headline {
      grid-column: 1 / 7;
      display: grid;
      grid-gap: 5vw;
      margin-bottom:21vw;
    }
    
    .hero .hero-headline .btn {
      margin-top:8vw;
    }
  
    .hero .grid .scroll {
      bottom: 8vw;
      left: 8vw;
    }
    
    .hero .video-thumb {
      position:absolute;
      bottom:8vw;
      right:0vw;
      left:unset;
      min-width: 38.133vw;
      min-height:22.528vw;
      grid-column: 4 / 7;
    }
    .hero .video-thumb video {
      width:100%;
      height:21.5vw;
    }
  
    .video-thumb .play-reel-icon {
      width: 2vw;
      height: 2vw;
      top: 1.5vw;
      left: 1vw;
    }
    
    .unmute-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) translateY(100px);
      font-size: 24px;
      color: #fff;
      cursor: pointer;
      z-index: 10; 
      opacity: 0; 
    }
    .unmute-text span {
      overflow:clip;
    }
  
  }
  
  
  @media (max-height: 700px) and (max-width:500px) {
    .hero .hero-headline .btn {
      margin-top:3vw;
      margin-bottom:-1vw;
    }
  }
  
  
  #video-container {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  #project-videos video {
    min-width:100%;
    max-width:100%;
    max-height:45vw;
    object-fit:cover;
  }
  
  #project-videos {
    display: grid;
    grid-gap: 3.819vw;
  }
  
  .video-overflow {
    overflow:hidden;  
      min-width:100%;
    max-width:100%;
    max-height:45vw;
  }
  
  #project-video-wrapper {
  max-height:45vw;
    overflow:hidden;
  }
  
  #project-video-wrapper video {
   width:100%;
    height:100%;
    object-fit:cover;
  }
  
  #video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent */
    z-index: 1; /* Make sure it’s above the iframe */
    cursor: pointer; /* Show cursor pointer */
  }
  
  
  /* ==============================================
         Studio Page
  ============================================== */
  
  .studio section {
    margin-bottom: 8vw;
  }
  
  .studio-hero .grid {
    height:100dvh;
  }
  
  .studio-headline {
    grid-column: 3 / 11;
    display: flex;
    grid-gap: 2vw;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    margin-top:2vw;
  }
  
  .studio-hero img {
    mix-blend-mode:difference;
    width: 14.525vw;
  }
  
  .section-indicator {
    display: flex;
    grid-gap: 0.4vw;
    align-self: start!important;
    align-items: center;
  }
  
  .section-indicator img {
    width: 0.81vw;
    height: 0.81vw;
    position:relative;
  
  }
  
  @media (max-width: 500px) {
    .section-indicator {
      grid-gap: 3vw;
    }
    .section-indicator img {
      width:3vw;
      height:3vw;
    }
  }
  
  .our-motto {
    grid-column: 2 / 12;
    display: flex;
    flex-direction: column;
    grid-gap: 4vw;
  
  }
  
  .our-motto-indent-space {
    margin-left:25vw;
  }
  
  .line-down {
    display:inline-flex;
    width:100%;
  }
  
  .slider {
    grid-column: 1 / 13;
    cursor: grab;
    width: 100%;
    margin-top: 17.13vw;
  }
  
  .slider-wrapper {
    display: flex;
    grid-gap: 3vw;
  }
  
  .slider-item  {
    min-width:50vw;
    max-width:50vw;
    min-height:60dvh;
    max-height:60dvh;
  }
  
  .slider-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
  
  .meet-the-team {
    grid-column: 4 / 13;
  }
  
  .meet-the-team h3 {
    max-width: 28.356vw;
    margin-top: 4.861vw;
  }
  
  .team-gallery {
    grid-column: 4 / 13;
    display: flex;
    grid-gap: 3.77vw;
    flex-wrap: wrap;
    margin-top: 11.574vw;
    position:relative;
    z-index:2;
  }
  
  .member {
    display: flex;
    flex-direction: column;
    grid-gap: 2vw;
  }
  
  .member-details {
    display: flex;
    flex-direction: column;
    grid-gap: 0.8vw;
  }
  
  .member-details h6 {
    color: var(--grey);
  }
  
  .member-image {
    width: 20.255vw;
    height: 20.255vw;
    border: 0.07vw solid var(--darkgrey);
  }
  
  .our-friends {
    grid-column: 1 / 13;
    align-items: center;
    text-align: center;
    justify-content: center;
  }
  
  .our-friends .section-indicator {
    justify-content:center;
    margin-bottom: 4.861vw;
  }
  
  .logos-slider {
    margin-top:8vw;
    display: flex;
    flex-direction: column;
    grid-gap: 3.8vw;
    margin-bottom:15vw;
  }
  
  .partners-logos {
    display:flex;
  }
  
  .prizes-logos {
    display:flex;
  }
  
  .slider-collection {
    display:flex;
  }
  
  .logos-grid {
    display:flex;
  }
  
  .partner-logo {
    border:0.07vw solid #2F2F2F;
    border-radius: 0.1vw;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5.5vw 5.5vw;
    margin-left: 3.8vw;
    position: relative;
    overflow:visible!important;
    background: var(--white);
  }
  
  .partner-logo .image {
    filter: invert(1);
    mix-blend-mode: difference;
  }
  
  .partner-logo .image img {
    width: 10vw;
    height: 5vw;
  }
  
  @keyframes marquee {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(calc(-100% - 1rem));
    }
  }
  
  .corners {
    width: 100%;
    height: 100%;
    position: absolute;
  }
  
  .corners img {
    width: 1vw;
    position: absolute;
  }
  
  .corners img:nth-of-type(1) {
    top:-0.75vw;
    left:-0.75vw;
  }
  
  .corners img:nth-of-type(2) {
    bottom:-0.75vw;
    right:-0.75vw;
  }
  
  .corners img:nth-of-type(3) {
    top:-0.75vw;
    right:-0.75vw;
  }
  
  .corners img:nth-of-type(4) {
    bottom:-0.75vw;
    left:-0.75vw;
  }
  
  .marquee-content {
    min-width:unset;
  }
  
  .partners-logos .marquee {
    animation: marquee 80s linear infinite;
    animation-direction: reverse;
  }
  
  .prizes-logos .marquee {
    animation: marquee 20s linear infinite;
    
  }
  
  .footer-cta {
    width:fit-content;
    margin: auto;
    align-items:center;
    justify-content:center;
    padding-top:2vw;
    padding-bottom:7vw;
  }
  
  
  @media (max-width: 500px) {
    .studio-headline {
      grid-column: 1 / 7;
      grid-gap: 5vw;
    }
    .studio-hero img {
      width: 35vw;
    }
    .studio-hero .grid {
      padding-left:0;
      padding-right:0;
    }
    .studio-gallery .grid, .studio-team .grid, .studio-clients .grid {
      padding:unset;
      display:flex;
      flex-direction:column;
    }
    .our-motto {
      grid-column: 1 / 7;
      grid-gap: 10vw;
    }
    .our-motto-indent-space {
      margin-left: unset;
    }
    .meet-the-team h3 {
      max-width:unset;
    }
    .slider {
      margin-bottom: 20vw;
    }
    .slider-wrapper {
      grid-gap: 7vw;
    }
    .slider-item  {
      min-width:70vw;
      min-height:70vw;
    }
    .meet-the-team {
      display:grid;
      grid-gap: 7vw;
    }
    .team-gallery {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      grid-gap:8vw;
      margin-top:15vw;
      margin-bottom:25vw;
    }
    .member {
      width:100%;
      height:100%;
    }
    .member-image {
      width: 100%;
      height: 100%;
    }
    .our-friends {
      display: grid;
      grid-gap: 7vw;
    }
    .partner-logo .image img {
      width: 20vw;
      height: 15vw;
    }
    .our-friends .footer-cta {
      padding-top: 15vw;
      padding-bottom:25vw;
    }
  }
  
  /* ==============================================
         Work Page
  ============================================== */
  
  
  .works-hero .grid {
    height:unset;
    padding-top: 12vw;
  }
  
  .works-headline {
    grid-column: 2 / 7;
    display: flex;
    grid-gap: 2vw;
    justify-content: start;
    align-items: start;
    text-align: left;
    flex-direction: column;
  }
  
  .works-filters {
    grid-column: 7 / 12;
    margin-top: 3.5vw;
    position: relative;
  }
  
  .works-filters .all-tags  {
    display: flex;
    flex-direction: row;
    grid-gap: 0.5vw;
    grid-row-gap: 0.7vw;
    flex-wrap:wrap;
  }
  
  .fs-cmsfilter-active {
    background:var(--black);
    color:var(--white);
    pointer-events:none;
  }
  
  
  .works-filters .all-tags .tag, .all-cases-radio {
    border-radius: 10vw;
    border: 0.07vw solid var(--black);
    padding: 0.7vw 1vw;
    text-wrap:nowrap;
    justify-self:start;
    
    opacity: 1;
    transition: opacity 0.3s ease;
  }
  
  .works-filters .all-tags .tag:hover, .all-cases-radio:hover {
    opacity: 0.5;
  }
  
  
  .grid-change {
    grid-column: 2 / 12;
    position: relative;
    display: flex;
    justify-content: end; 
    height:auto;
  }
  
  .grid-slider-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 3.819vw;
    grid-row-gap:6vw;
    height:auto;
    margin-bottom:5vw;
  }
  
  .grid-slider-gallery#slider-mode .image-container:last-of-type .work-info{
    margin-bottom:5vw;
  }
  
  .image-container {
    position: relative;
    width: 36.227vw;
    display: flex;
    flex-direction: column;
    border-radius: 0.05vw;
    max-width: 100%;
    justify-self: end; 
    color:var(--black);
    opacity: 1;
    transition: oapcity 0.3 ease;
    cursor: pointer;
  }
  
  .box-link {
    position: absolute;
    top:0;
    left:0;
    width:100vw;
    height:100%;
    z-index:2;
  }
  
  .image-container .work-image {
    width: 36.227vw!important;
    height: 26vw!important;
    overflow: hidden;
  }
  
  .image-container .work-info {
    display:flex;
    flex-direction:column;
    grid-gap:1vw;
    margin-top:2vw;
  }
  
  .image-container .work-image img {
    transform:scale(1);
    transition: all 1s cubic-bezier(.36,0,0,.99);
  }
  
  .image-container:hover .work-image img {
    transform:scale(1.3) rotate(3deg);
  }
  
  .tags-list {
    display: flex;
    grid-gap: 0.3vw;
  }
  
  .tags-list h6 {
    border: 0.07vw solid var(--black);
    border-radius: 5vw;
    padding: 0.2vw 0.6vw;
  }
  
  .next-project .tags-list h6 {
    border: 0.07vw solid white;
  }
  
  .image-container img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .toggle-btn  {
    font-size: 1vw;
    color: var(--black);
    
    text-decoration: underline 0.07vw var(--black)!important;
    text-underline-offset: 0.9vw;
  
    cursor: pointer;
    position:relative;
    z-index:999999;
    
  }
  
  
  
  @media (max-width: 500px) {
    
    .works-hero .grid  {
      padding:unset;
      padding-top:25vw;
      display:flex;
      flex-direction:column;
    }
    .works-headline {
      grid-gap: 7vw;
    }
    .toggle-btn {
      display:none;
    }
    .works-filters .all-tags {
      font-size:4.5vw;
      grid-gap:2vw;
    }
    .works-filters .all-tags .tag, .all-cases-radio {
        padding: 1.3vw 2vw;
    }
    .works-gallery {
      margin-top: 7vw;
    }
    .works-gallery .grid {
      padding:unset;
      display:flex;
      flex-direction:column;
    }
    .grid-change {
      grid-column: 1 / 7;
      justify-content: space-between; 
    }
    .grid-slider-gallery {
      display:flex;
      flex-direction:column;
      width:100%;
    }
    .image-container {
      display: grid;
      grid-gap: 4vw;
    }
    .image-container .work-info {
      grid-gap: 2.5vw;
    }
    .image-container .work-image {
      width:100%!important;
      height:55vw!important;
    }
    .image-container {
      width:100%;
    }
    
  
  
    .work-tags .tags-list {
      grid-gap:1vw;
        display: flex;
    flex-wrap: wrap;
    }
    .work-tags .tags-list h6 {
      padding:0.5vw 2vw;
    }
    
    .next-project .box-link {
      margin-top:-18dvh;
      height:100dvh;
    }
  }
  
  
  /* ==============================================
         Project
  ============================================== */
  
  .project-hero .grid {
    position:relative;
  }
  
  .project-hero .project-headline {
    grid-column: 2 / 12;
    display: flex;
    flex-direction: column;
    grid-gap: 6vw;
    margin-top:8vw;
  }
  .project-hero .back-button {
    display:flex;
    grid-gap:0.5vw;
  }
  
  .project-hero .back-button img {
    mix-blend-mode:difference;
    filter: invert(1);
    min-width:1vw;
    max-width:1vw;
  }
  
  .project-hero .project-cover {
    grid-column: 2 / 12;
    margin-top: 2vw;
    height:40vw;
    width:100%;
    overflow:hidden;
  }
  
  .project-hero .project-cover img {
    object-fit:cover;
    width:100%;
    height:100%;
  }
  
  .project-info {
    margin: 7vw 0vw;
  }
  
  .project-info .section-indicator {
    grid-column: 2 / 4;
  }
  
  .project-info .project-intro {
    grid-column: 7 / 12;
  }
  
  .gallery-container {
    grid-column: 2 / 12;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr); /* Always two columns */
    gap: 3.819vw; /* Spacing between items */
  }
  
  .gallery-grid div {
    display: block;
  }
  
  .gallery-container .gallery-grid img {
    max-height: 100dvh;
    min-height: 100dvh;
    object-fit: contain;
    margin:auto;
  }
  
  /*
  .gallery-grid .image {
    overflow: hidden;
    height:100%;
    max-height:fit-content;
    grid-column: span 1;
  }
  
  .gallery-grid .image img {
    display: block;
    object-fit: cover;
    width: 100%;
    height:100%;
    min-height:50vw;
    border-radius: 8px;
  }
  */
  .gallery-grid .image h5 {
    color: var(--black);
  }
  
  .project-gallery .work-video {
    grid-column: 2 / 12;
  }
  
  .project-gallery .section-note {
    grid-column: 2 / 12;
  }
  
  .project-gallery .video-gallery {
    grid-column: 2 / 12;
  }
  
  .project-gallery .work-video video {
    min-width:100%;
    max-width:100%;
  }
  
  .project-credits .section-indicator {
    grid-column: 2 / 4;
  }
  
  .project-credits .credits {
    grid-column: 7 / 12;
  }
  
  .project-credits h4 span {
    color: var(--grey)
  }
  
  .next-project {
    margin-top:8vw;
    width: 100%;
    height:40vw;
    padding: 15vw 0vw;
    position: relative;
    align-items:center;
    display: flex;
    overflow:hidden;
    cursor:pointer;
  }
  
  .next-project .grid {
    padding-top:15vw;
    padding-bottom:15vw;
  }
  
  .next-project .next-link {
    width:100%;
    height:100%;
    position:absolute;
    z-index:9;
    top:0;
    left:0;
  }
  
  .next-project::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    pointer-events: none;
  }
  
  .next-project .next-project-image img {
    object-fit:cover;
    width: 100vw;
    height: 100%;
    transform:scale(1);
    transition: transform var(--work-hover-motion), filter var(--work-hover-motion);
  }
  
  
  .next-project:hover .next-project-image img {
    transform:scale(1.3) rotate(5deg);
    filter: brightness(150%);
  }
  
  .next-project .grid {
    position:absolute;
    z-index:1;
  }
  
  .next-project .next-project-text {
    grid-column: 2 / 7;
    display: flex;
    flex-direction: column;
    grid-gap: 3vw;
    color:white!important;
  }
  
  .project-video {
    grid-column: 2 / 12;
     height: 43vw;
  }
  
  .project-video video {
    width:100%;
    height: 100%;
  }
  
  @media (max-width: 500px) {
    .project-hero .grid  {
      padding:unset;
      padding-top:25vw;
      display:flex;
      flex-direction:column;
    }
    .project-hero .back-button img {
      min-width: 3vw;
      max-width: 3vw;
    }
    .project-hero .project-headline {
      grid-gap: 15vw;
    }
    .project-hero .project-cover {
      min-height:80vw;
    }
    .project-hero .project-cover img{
      left:0;
      width:100%;
      height:100%;
      object-fit:cover;
      position:relative;
    }
    .project-info .grid, .project-gallery .grid, .project-credits .grid {
      padding:unset;
      padding-top:15vw;
      display:flex;
      flex-direction:column;
    }
    .gallery-grid {
      grid-template-columns: repeat(1, 1fr);
      gap:unset;
          grid-row-gap: 8vw;
      width:100%;
    }
    /*
    .gallery-grid .image img {
      min-width:100%;
      height:100%;
      object-fit:cover;
    }
    */
    
    .gallery-container .gallery-grid img {
      min-width:100%;
      max-height: unset;
      min-height: unset;
    }
    .next-project {
      height: 120vw;
      margin-top:15vw;
    }
    .next-project .next-project-text {
      grid-column: 1 / 7;
    }
    .next-project .next-project-image img {
      min-height:100dvh;
    }
  }
  
  
  /* ==============================================
         Footer
  ============================================== */
  
  
  footer .grid{
    grid-column: 1 / 13;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .social-links {
    display: flex;
    grid-gap: 1vw;
      justify-content: space-between;
    align-items: center;
  }
  
  .social-links img {
    width: 1.764vw;
    height: 1.563vw;
    filter: invert(1);
    mix-blend-mode: difference;
    opacity: 1;
    transition: opacity 0.5s ease;
  }
  
  .social-links img:hover {
    opacity: 0.3;
  }
  
  @media (max-width: 500px) {
    footer {
      position: relative;
      padding-top:10vw;
      margin-top:25vw;
    }
    .social-links {
     position:absolute;
      top:10%;
      left:50%;
      transform: translate(-50%, -50%);
    }
    .social-links img {
      width:9vw;
      height:5vw;
    }
    footer .grid  {
      padding-left:0;
      padding-right:0;
    }
  
  }
  
  /* ==============================================
         Contact
  ============================================== */
  
  .contact-hero {
    min-height:100dvh;
  }
  
  .contact-hero .grid {
    position:relative;
    min-height:100dvh;
  }
  
  .contact-hero .contact-image {
    grid-column: 2 / 6;
    align-self: center;
    justify-self: center;
  }
  
  .contact-hero .scroll {
    display: flex;
    align-self: end;
    justify-self: end;
    text-align: right;
    bottom: 0;
    right: 0;
  }
  
  .contact-hero .contact-image img {
    height:65dvh;
    width: 45vw!important;
    object-fit:cover!important;
  }
  
  .contact-hero .contact-hero-text {
    grid-column: 7 / 12;
    display: flex;
    flex-direction: column;
    grid-gap: 2vw;
    padding-right:4vw;
    align-self:center;
    margin-top:33vh;
  }
  
  .contact-hero h1 {
    text-wrap:nowrap;
    padding-left:3vw;
    align-self:center;
  }
  .contact-hero .marquee {
    animation: marquee 3s linear infinite;
    animation-direction: reverse;
  }
  
  .contact-section {
    margin: 8vw 0vw;
  }
    
  .contact-section .heading-block {
    align-self:start;
    grid-column: 2 / 6;
    display: grid;
    grid-gap: 4.861vw;
    
  }
  
  .contact-section .offices-list {
    margin-top:6vw;
    grid-column: 7 / 11;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: var(--grid-gap);
    align-items:start;
    justify-content: start;
  }
  
  .contact-section .offices-list .place {
    display: grid;
    grid-gap: 1vw;
  }
  
  .contact-section .offices-list .place h6 {
    color:var(--grey);
  }
  
  .contact-section .contact-form {
    grid-column: 7 / 12;
  }
  
  .w-input, .w-select {
    all:unset;
    width: 100%;
    color:var(--grey);
    margin-bottom: 2vw;
    padding: 1vw 0vw;
    font-size: 14px;
    line-height: 1.42857;
    display: block;
    border-bottom: 0.07vw solid var(--grey)!important;
  }
  
  .w-button {
    all:unset;
    font-size: 1.622vw;
    line-height: unset;
    letter-spacing: -0.05vw;
    width:unset;
    cursor: pointer;
  }
  
  
  .marquee-new {
    position: absolute;
    top:25vh;
    width: 100vw;
    max-width: 100%;
    height: 200px;
    overflow: hidden;
  }
  
  .track {
    padding-top:2vw;
    position: absolute;
    white-space: nowrap;
    will-change: transform;
  
    display:flex;
    animation: marquee-new 20s reverse linear infinite;
  }
  
  
  
  @keyframes marquee-new {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }
  
  
  @media (max-width: 500px) {
    .contact-hero {
      min-height:unset;
    }
    .contact-hero .grid {
      min-height:unset;
      margin-top:15vw;
      grid-gap:20vw;
    }
    .contact-hero h1 {
      font-size: 30vw;
    }
    .contact-hero .contact-image {
      align-self:start;
    }
    .contact-hero .contact-image img {
      height:100%;
      width:54vw!important;
    }
    .contact-hero .contact-hero-text {
      margin-top:unset;
      grid-gap: 10vw;
    }
    .contact-section .grid, .contact-hero .grid {
      padding:unset;
      padding-top:15vw;
      display:flex;
      flex-direction:column;
    }
    .contact-section .heading-block {
      grid-gap: 10vw;
    }
    label {
      font-size: 4vw;
      font-weight:normal;
    }
    .w-input, .w-select {
      padding:3vw 0vw;
      margin-bottom:8vw;
      font-size:6vw;
          text-wrap:wrap;
      width:100%;
    }
    textarea.w-input {
      min-height: 40vw;
      word-wrap: break-word;
      white-space: pre-wrap;
      width: 100%;
      overflow:scroll
    }
   input.w-button {
      font-size: 7vw;
      text-decoration:none!important;
    }
    html.w-mod-touch * {
       text-decoration:none!important;
    }
  }
  
  
  
  /* ==============================================
         Mobile Menu
  ============================================== */
  
  @media (min-width: 500px) {
    .burger, .mobile-menu {
      display: none;
    }
  }
  .menu-toggle {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    width: 12vw;
    height: 8vw;
    background:transparent;
    top: 7vw;
    right: 8vw;
    border: hidden;
    transition: all 0.5s cubic-bezier(0,.18,0,.99);
    cursor: pointer;
    z-index: 9999;
  
  }
  
  .menu-bar {
    position: absolute;
    width: 12vw;
    height: 0.45vw;
    background: var(--black);
    transition-property: transform;
    transition: all 250ms ease-out;
  }
  
  .menu-toggle.clicked {
    mix-blend-mode:normal;
  }
  
  .menu-toggle.clicked .menu-bar{
    mix-blend-mode:normal;
    background: var(--black);
  }
  
  
  .menu-bar:nth-of-type(1) {
    transform: translateY(-1.2vw);
  }
  
  .menu-bar:nth-of-type(2) {
    transform: translateY(1.2vw);
  }
  
  .mobile-menu {
    display:none;
    position:fixed;
    top:0;
    left:0;
    height:100dvh;
    width:100%;
    background:var(--white);
    z-index:2;
  }
  
  .mega-menu-overlay {
    height:100dvh;
    width:100%;
    background:var(--midgrey);
    opacity:0;
    position:fixed;
    z-index:1;
    pointer-events:none;
  }
  
  .mobile-menu .burger {
    position:fixed;
    top:0vw;
    right:0vw;
  }
  
  .mobile-menu .nav {
      all: unset;
      display: flex;
      flex-direction: column;
      justify-content: end;
      align-items: start;
      text-align: left;
      position: absolute;
      bottom: 20vw;
      left: 6vw;
  }
  
  .mobile-menu .nav .link {
    all:unset;
    font-family:var(--primary-font);
  
    font-size: 22vw;
    letter-spacing:-0.5vw;
    grid-gap:4vw;
    line-height: 0.85;
    text-transform: uppercase;
  }
  
  .mobile-menu .nav .link span {
    all:unset;
  }
  
  .mobile-menu-container {
    display: grid;
    grid-gap:5vw;
  }
  .mobile-menu-container .social-links {
    all: unset;
    align-self: end;
    position: relative;
    left: 6vw;
    bottom: 8vw;
    display: flex;
    grid-gap:2vw;
    background: var(--white);
  }
  
  