/* ~~~~~~~~~~~~ */
/* ~~~ TYPE ~~~ */
/* ~~~~~~~~~~~~ */

@font-face {
    font-family: 'basic-sans';
    src: url("https://use.typekit.net/af/721f9c/00000000000000007735abf2/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff2");
    font-style:normal;
    font-weight:400; 
    font-display: auto;
  }
  
  /* ~~~~~~~~~~~~~~~~~ */
  /* ~~~ ROOT VARS ~~~ */
  /* ~~~~~~~~~~~~~~~~~ */
  :root {
     --cBlack: #1E1E1E;
     --cWhite: #FFFFFF;
     --cGreen: #c1ff66;
     --iTrue: 1;
     --iFalse: 0;
     --mLighten: lighten;
  }
  
  
  /* ~~~~~~~~~~~~~~~~~~ */
  /* ~~~ BASE RULES ~~~ */
  /* ~~~~~~~~~~~~~~~~~~ */
  *, *::after, *::before { box-sizing: border-box; }
  
  
  html {
     font-family: 'basic-sans', sans-serif;
     margin: 0; padding: 0;
     scroll-behavior: smooth;
  }
  
  body { 
     background: var(--cBlack); 
     color: var(--cWhite); font-size: 20rem; 
     padding: 0; margin: 0; 
     overflow-x: hidden; 
     transition: background 0.2s linear, color 0.2s linear;
     cursor: default;
  }
  
  details { margin-right: 0; }
  summary { 
    list-style: none;
    background-color: transparent;
    color: inherit; cursor: pointer;
  }
  
  em { visibility: hidden; }
  img { width: 100%; height: auto; }
  
  ::selection {
    background: var(--cWhite);
    color: var(--cBlack);
  }
  
  
  /* ~~~~~~~~~~~~~~~~~~ */
  /* ~~~ TYPOGRAPHY ~~~ */
  /* ~~~~~~~~~~~~~~~~~~ */
  .txt-huge, 
  .txt-huge p {
      font-size: calc(6.0rem + (275 - 60) * ((100vw - 300px) / (1920 - 300)));
      line-height: calc(5.0rem + (230 - 50) * ((100vw - 300px) / (1920 - 300)));
      letter-spacing: -0.5rem;
  }
  
  .txt-big,
  .txt-big p {
     font-size: calc(3.6rem + (140 - 36) * ((100vw - 300px) / (1920 - 300)));
     line-height: calc(3.6rem + (130 - 36) * ((100vw - 300px) / (1920 - 300)));
  }
  
  .txt-medium,
  .txt-medium p {
    font-size: calc(2.4rem + (48 - 24) * ((100vw - 300px) / (1920 - 300)));
    line-height: calc(2.4rem + (60 - 24) * ((100vw - 300px) / (1920 - 300)));
  }
  
  .txt-small,
  .txt-small p {
    font-size: calc(1.4rem + (26 - 14) * ((100vw - 300px) / (1920 - 300)));
    line-height: calc(1.8rem + (26 - 18) * ((100vw - 300px) / (1920 - 300)));
  }
  
  .txt-xsmall,
  .txt-xsmall p {
    font-size: calc(1.2rem + (18 - 12) * ((100vw - 300px) / (1920 - 300)));
    line-height: calc(1.4rem + (24 - 14) * ((100vw - 300px) / (1920 - 300)));
  }

  .txt-tiny { font-size: 1rem; line-height: 1.4rem; }
  
  h1, h2, h3 { margin: 0; font-weight: 400; font-size: inherit; }

  .underline { text-decoration: underline; }
  .no-underline { text-decoration: none; }
  .txt-center { text-align: center; }
  
  /* ~~~~~~~~~~~~~~~~~~ */
  /* ~~~   ATOMIC   ~~~ */
  /* ~~~~~~~~~~~~~~~~~~ */
  
    section { margin: 12rem 0; }

    ul { list-style-type: none; padding: 0; margin: 0; }
    .text-left { text-align: left; }
    .text-right { text-align: right; }
    .text-center { text-align: center; }

    .opacity-0 { opacity: 0; }
    .opacity-1 { opacity: 1; }
    .transition-opacity { transition: opacity 0.25s ease; }

    .pointer { cursor: pointer; }

    .color-black { color: var(--cBlack); }
    .color-white { color: var(--cWhite); }
    .color-green { color: var(--cGreen); }
    .color-inherit { color: inherit; }
    .bg-color-black { background-color: var(--cBlack); }
    .bg-color-white { background-color: var(--cWhite); }
    .bg-color-green { background-color: var(--cGreen); }
    .bg-transparent { background-color: transparent; }
    .bg-none { background: none; }
    .highlight { background-color: var(--cWhite); color: var(--cBlack); }

    .flex { display: flex; }
    .flex-col { flex-direction: column; }
    .flex-row { flex-direction: row; }
    .flex-wrap { flex-wrap: wrap; }
    .flex-no-wrap { flex-wrap: nowrap; }
    .flex-1 { flex: 1; }
    .align-items-center { align-items: center; }
    .align-items-start { align-items: flex-start; }
    .align-items-end { align-items: flex-end; }
    .justify-content-center { justify-content: center; }
    .justify-content-between { justify-content: space-between; }

    .gap-0 { gap: 0; }
    .gap-5 { gap: 5%; }
    .gap-10 { gap: 10%; }
    .gap-20 { gap: 20%; }
    .gap-30 { gap: 30%; }
    .gap-40 { gap: 40%; }
    .gap-50 { gap: 50%; }
    .gap-60 { gap: 60%; }
    .gap-70 { gap: 70%; }
    .gap-80 { gap: 80%; }
    .gap-90 { gap: 90%; }
    .gap-100 { gap: 100%; }
    .gap-1r { gap: 1rem; }
    .gap-5r { gap: 5rem; }

    .relative { position: relative; }
    .absolute { position: absolute; }
    .fixed { position: fixed; }
    .sticky { position: sticky; }
    .top-0 { top: 0; }
    .bottom-0 { bottom: 0; }
    .left-0 { left: 0; }
    .right-0 { right: 0; }

    .rotate-90 { transform: rotate(90deg); }

    .none { display: none; }
    .block { display: block; }
    .inline-block { display: inline-block; }

    .z--1 { z-index: -1; }
    .z-1 { z-index: 1; }
    .z-2 { z-index: 2; }
    .z-3 { z-index: 3; }
    .z-4 { z-index: 4; }
    .z-5 { z-index: 5; }
    .z-6 { z-index: 6; }
    .z-7 { z-index: 7; }
    .z-8 { z-index: 8; }
    .z-9 { z-index: 9; }
    .z-10 { z-index: 10; }

    .w-auto { width: auto; }
    .w-fit { width: fit-content; }
    .w-100 { width: 100%; }
    .w-90 { width: 90%; }
    .w-75 { width: 75%; }
    .w-60 { width: 60%; }
    .w-50 { width: 50%; }
    .w-45 { width: 45%; }
    .w-40 { width: 40%; }
    .w-33 { width: 33.33%; }
    .w-25 { width: 25%; }
    .w-20 { width: 20%; }
    .w-10 { width: 10%; }
    .w-5 { width: 5%; }
    
    .h-fit { height: fit-content; }
    .h-100 { height: 100%; }
    .h-50 { height: 50%; }
    .h-20 { height: 20%; }
    .h-1r { height: 1rem; }
    .h-2r { height: 2rem; }
    .h-3r { height: 3rem; }
    .h-4r { height: 4rem; }
    .h-5r { height: 5rem; }
    .h-10r { height: 10rem; }
    .h-100vh { height: 100vh; }
    .h-50vw { height: 50vw; }

    .border-top { border-top: 2px solid var(--cWhite); }
    .border-bottom { border-bottom: 2px solid var(--cWhite); }
    .border-left { border-left: 2px solid var(--cWhite); }
    .border-right { border-right: 2px solid var(--cWhite); }
    .border { border: 2px solid var(--cWhite); }
    .border-none { border: none; }

    .max-w-50r { max-width: 50rem; }
    .max-w-100r { max-width: 100rem; }
    .max-w-120r { max-width: 120rem; }

    .mrg-0 { margin: 0; }
    .mrg-0-auto { margin: 0 auto; }
    .mrg-t-0 { margin-top: 0; }
    .mrg-b-0 { margin-bottom: 0; }
    .mrg-l-0 { margin-left: 0; }
    .mrg-l-40 { margin-left: 40%; }
    .mrg-r-0 { margin-right: 0; }
    .mrg-l-1r { margin-left: 1rem; }
    .mrg-l-2r { margin-left: 2rem; }
    .mrg-l-3r { margin-left: 3rem; }
    .mrg-r-1r { margin-right: 1rem; }
    .mrg-r-2r { margin-right: 2rem; }
    .mrg-r-3r { margin-right: 3rem; }
    .mrg-t-1r { margin-top: 1rem; }
    .mrg-t-2r { margin-top: 2rem; }
    .mrg-t-3r { margin-top: 3rem; }
    .mrg-t-5r { margin-top: 5rem; }
    .mrg-b-1r { margin-bottom: 1rem; }
    .mrg-b-2r { margin-bottom: 2rem; }
    .mrg-b-3r { margin-bottom: 3rem; }
    .mrg-b-5r { margin-bottom: 5rem; }
    .mrg-b-10r { margin-bottom: 10rem; }

    .pdg-0 { padding: 0; }
    .pdg-1r { padding: 1rem; }
    .pdg-2r { padding: 2rem; }
    .pdg-h-1r { padding-left: 1rem; padding-right: 1rem; }
    .pdg-h-2r { padding-left: 2rem; padding-right: 2rem; }
    .pdg-v-1r { padding-top: 1rem; padding-bottom: 1rem; }
    .pdg-v-2r { padding-top: 2rem; padding-bottom: 2rem; }
    .pdg-t-0 { padding-top: 0; }
    .pdg-b-0 { padding-bottom: 0; }
    .pdg-l-0 { padding-left: 0; }
    .pdg-r-0 { padding-right: 0; }
    .pdg-l-1r { padding-left: 1rem; }
    .pdg-l-2r { padding-left: 2rem; }
    .pdg-l-3r { padding-left: 3rem; }
    .pdg-r-1r { padding-right: 1rem; }
    .pdg-r-2r { padding-right: 2rem; }
    .pdg-r-3r { padding-right: 3rem; }
    .pdg-t-1r { padding-top: 1rem; }
    .pdg-t-2r { padding-top: 2rem; }
    .pdg-t-3r { padding-top: 3rem; }
    .pdg-t-5r { padding-top: 5rem; }
    .pdg-b-1r { padding-bottom: 1rem; }
    .pdg-b-2r { padding-bottom: 2rem; }
    .pdg-b-3r { padding-bottom: 3rem; }
    .pdg-b-5r { padding-bottom: 5rem; }
    .pdg-b-10r { padding-bottom: 10rem; }

    .opacity-0 { opacity: 0; }
    .opacity-1 { opacity: 1; }
    .opacity-02 { opacity: 0.2; }
    .mix-lighten { mix-blend-mode: var(--mLighten); }


    @media (max-width: 767px) {

        .sm-none { display: none; }
    
        .sm-flex-col { flex-direction: column; }
        .sm-flex-row { flex-direction: row; }
        .sm-flex-scroller { flex: 0 0 80vw; max-width: 100vw;}
        .sm-gap-1 { gap: 1%; }
        .sm-gap-1r { gap: 1rem; }

        .sm-w-100 { width: 100%; }
        .sm-w-90 { width: 90%; }
        .sm-w-75 { width: 75%; }
        .sm-w-60 { width: 60%; }
        .sm-w-50 { width: 50%; }
        .sm-w-40 { width: 40%; }
        .sm-w-33 { width: 33.33%; }
        .sm-w-25 { width: 25%; }
        .sm-w-20 { width: 20%; }
        .sm-w-10 { width: 10%; }
        .sm-w-5 { width: 5%; }

        .sm-h-fit { height: fit-content; }

        .sm-mrg-0 { margin: 0; }
        .sm-mrg-b-1r { margin-bottom: 1rem; }
        .sm-pdg-v-2r { padding-top: 2rem; padding-bottom: 2rem; }

        .sm-overflow-scroll { overflow: scroll; }

        .sm-border-right-none { border-right: none; }
        .sm-border-top { border-top: 2px solid var(--cWhite); }


    }

    @media (min-width: 1800px) {
      
      .lg-w-50 { width: 50%; }
      .lg-w-25 { width: 25%; } 
      .lg-w-20 { width: 20%; } 

      .lg-gap-2 { gap: 2%; }
      .lg-flex-1 { flex: 1; }
      
    }
  
  
  /* ~~~~~~~~~~~~ */
  /* ~~~ a11y ~~~ */
  /* ~~~~~~~~~~~~ */
  .visually-hidden,
  .visually-hidden:not(:focus):not(:active) {
    position: absolute !important; overflow: hidden; 
    height: 1px; width: 1px; 
    margin: -1px; padding: 0; 
    border: 0; 
    clip: rect(0 0 0 0); white-space: nowrap; word-wrap: normal !important;  
  }
  *:focus-visible { outline: 0.4rem solid orangered; outline-offset: 0.5rem; }
  
  
  /* ~~~~~~~~~~~~~~~~~~~~~~ */
  /* ~~~ THEME SWITCHER ~~~ */
  /* ~~~~~~~~~~~~~~~~~~~~~~ */
  [data-theme="light"] {
     --cBlack: #FFFFFF;
     --cWhite: #1E1E1E;
     --iFalse: 1;
     --iTrue: 0;
     --mLighten: none;
  }
  
  .theme-switch-wrapper {
     display: flex; align-items: center; z-index: 100;
     position: fixed; top: 0.4rem; right: 1vw;
  }
  
  .theme-switch-wrapper input {
     position: absolute; inset: 0;
     border: 0; background: transparent;
  }
  
  .theme-switch-wrapper label {
     display: inline-block; position: relative;
     width: 60px; height: 34px;
  }
  
  .theme-switch-wrapper .slider {
     background-color: #909090; cursor: pointer; 
     position: absolute; inset: 0;
     transition: background 0.2s linear; 
  }
  
  .slider::before {
     content: ""; background-color: #fff;
     position: absolute; bottom: 4px; left: 4px; 
     height: 26px; width: 26px;
     transition: transform 0.2s linear; 
  }
  
  .theme-switch-wrapper input[data-theme="light"] + .slider { background-color: var(--cWhite); }
  .theme-switch-wrapper input[data-theme="light"] + .slider::before { transform: translateX(26px); }
  
  .slider.round { border-radius: 34px; }
  .slider.round::before { border-radius: 50%; }
  
  
  /* ~~~~~~~~~~~~~~~~~~ */
  /* ~~~ HIDE STUFF ~~~ */
  /* ~~~~~~~~~~~~~~~~~~ */
  .none, 
  .hidden,
  .no-js-hidden { display: none; }
  
  
  /* ~~~~~~~~~~~~~~~~~~~ */
  /* ~~~~~~ CURSOR ~~~~~ */
  /* ~~~~~~~~~~~~~~~~~~~ */
  
  #custom-cursor {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--cWhite);
    pointer-events: none; 
    transition: width 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), height 0.3s cubic-bezier(0.25, 0.1, 0.25, 1), transform 0.1s ease-out;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    transform-origin: center center;
  }
  
  #custom-cursor.link-hover {
    background-color: var(--cBlack);
    width: 60px;
    height: 60px;
  }
  
  #custom-cursor.project-hover {
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
    z-index: -1;
  }
  
  #custom-cursor.fullscreen {
    animation: expandAndCenter 0.3s ease-in-out forwards;
  }
  
  @keyframes expandAndCenter {
    0% {
      width: 20rem;
      height: 20rem;
      transform: translate(var(--cursor-x), var(--cursor-y)) scale(1);
      opacity: 1;
    }
    99% {
      opacity: 1;
    }
    100% {
      width: 0vw;
      height: 0vw;
      transform: translate(50vw,50vh) scale(1);
      opacity: 0;
    }
  }
  
  
  .cross {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    pointer-events: none;
  }
  
  .cross::before,
  .cross::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background-color: var(--cWhite);
    top: 0;
    left: 50%;
  }
  
  .cross::before {
    transform: rotate(90deg);
  }
  
  .cross::after {
    transform: rotate(0deg);
  }
  
  #custom-cursor.link-hover .cross {
    display: block;
  }
  
  button {
    background: none;
    color: var(--cWhite);
    border: none;
    box-shadow: none;
    cursor: pointer;
  }
  
  
  a {
      background-color: transparent;
      color: inherit;
      cursor: pointer;
    text-decoration: underline;
  }
  
  a::before, summary::before {  
    transform: scaleX(0);
    transform-origin: bottom right;
  }
  
  a:hover::before, summary:hover::before {
    transform: scaleX(1);
    transform-origin: bottom left;
    
  }
  
  a:hover, summary:hover {
      color: var(--cBlack);
  }
  
  a::before, summary::before {
    content: " ";
    display: block;
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    inset: 0 0 0 0;
    background: var(--cWhite);
    z-index: -1;
    transition: transform .3s ease;
  }

    a, 
    summary { position: relative; }
 
  
  .btn-close  {
    font-size: 3rem; text-align: right;
    width: 50px; height: 50px; 
    position: fixed; right: 20px; z-index: 10;
    padding: 0; line-height: 0; top: 3rem;
  }
  
  
  img[data-theme="dark"] { filter: invert(1) grayscale(1); }
  img[data-theme="light"] { filter: invert(0) grayscale(1); }

  
  footer { margin-top: 20vh; }
  
  
  .overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    /*backdrop-filter: blur(2px);*/
    z-index: 1;
  }
  
  header { 
    position: sticky;
    top: 0;
    transition: opacity 1s ease;
  }
  
  
  header.scrolled {
      opacity: 0.05; 
  }
  
  
  @media (max-width: 767px) {
  
    #custom-cursor { display: none; }
    .btn-close { right: 10px; top: 3rem; }
  
  }

  /* ~~~~~~~~~~~~~~~~~~~ */
  /* ~~~~~~  BLOB  ~~~~~ */
  /* ~~~~~~~~~~~~~~~~~~~ */

  .blob-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
  }

  .blob-container::before,
  .blob-container::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
    mix-blend-mode: lighten;
  }

  .blob-container::before {
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--cWhite) 0%, transparent 70%);
    top: -20vw;
    left: -10vw;
    animation: blob-float-1 30s ease-in-out infinite;
  }

  .blob-container::after {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--cWhite) 0%, transparent 70%);
    bottom: -15vw;
    right: -10vw;
    animation: blob-float-2 35s ease-in-out infinite;
  }

  @keyframes blob-float-1 {
    0%, 100% {
      transform: translate(0, 0) scale(1);
    }
    33% {
      transform: translate(15vw, 20vh) scale(1.1);
    }
    66% {
      transform: translate(-10vw, 10vh) scale(0.9);
    }
  }

  @keyframes blob-float-2 {
    0%, 100% {
      transform: translate(0, 0) scale(1);
    }
    33% {
      transform: translate(-20vw, -15vh) scale(0.9);
    }
    66% {
      transform: translate(10vw, -25vh) scale(1.15);
    }
  }

  @media (max-width: 767px) {
    .blob-container::before,
    .blob-container::after {
      filter: blur(60px);
      opacity: 0.1;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .blob-container::before,
    .blob-container::after {
      animation: none;
    }
  }


  /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
  /* ~~~~~~  IMAGE ANIMATION  ~~~~~ */
  /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

    .big-text-mask {
        width: 100%;
        overflow: hidden;
        margin-bottom: -1.5vw;
        pointer-events: none;
    }

    .big-text {
        text-align: center;
        display: block;
        position: relative;
        height: 100%;
        margin-bottom: 1.5vw;
        transform: translate(0%, 130%); 
        opacity: 0; 
        transition: transform 1s ease-out, opacity 1s ease-out; 
    }

    .in-view {
        transform: translate(0%, 0%);
        opacity: 1;
    }

    .background-section {
        position: relative;
        width: 100vw;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        overflow: hidden;
    }
  
    .background-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        mix-blend-mode: lighten;
        z-index: 1;
    }
  
    .img-01.background-section::before  {
        background-image: url('/assets/abstract_01.jpg');
        background-image: -webkit-image-set(url('/assets/abstract_01.jpg') 1x);
    }
    .img-02.background-section::before  {
        background-image: url('/assets/abstract_02.jpg');
        background-image: -webkit-image-set(url('/assets/abstract_02.jpg') 1x);
    }

    @media screen and (-webkit-min-device-pixel-ratio: 0) and (max-width: 1024px) {
      .background-section::before {
        background-attachment: scroll;
      }
    }

  /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
  /* ~~~~~~    DETAILS MISC   ~~~~~ */
  /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

  .details-rotate summary {
    min-height: 10rem;
  }

  .details-rotate[open] .arrow {
    transform: rotate(90deg);
  }

  .details-rotate[open] summary {
    background-color: var(--cWhite);
    color: var(--cBlack);
  }

  .arrow {
    transition: transform 0.3s ease;
  }

  details summary::-webkit-details-marker {
    display: none;
  }

  details > summary {
    list-style: none;
  }    

  /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */
  /* ~~~~~~  TEXT ANIMATION   ~~~~~ */
  /* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

    .animate-h1 {
        opacity: 0;
        transform: translateY(50px);
        animation: fadeInUp 2s ease-out forwards;
    }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .subtitle {
        opacity: 0;
        transform: translateY(-20px);
        transition: opacity 0.5s ease-out, transform 0.5s ease-out, visibility 0s 0.5s;
        visibility: hidden;
    }

    .subtitle.visible {
        opacity: 1;
        transform: translateY(0);
        visibility: visible; 
        transition: opacity 0.5s ease-out, transform 0.5s ease-out, visibility 0s 0s;
    }

    @media (max-width: 767px) {
        .subtitle {
          font-size: 1rem;
          word-wrap: break-word;
          width: 50%;
        }
    }


  /* ~~~~~~~~~~~~~~~~~~~~~ */
  /* ~~~~~~   TABS   ~~~~~ */
  /* ~~~~~~~~~~~~~~~~~~~~~ */

    .tabs {
        position: relative;  
        margin: 3rem 0;
        height: auto;
    }

    .tabs input {
        position: absolute;
        opacity: 0;
        z-index: -1;
    }

    .tabs ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        border-top: solid 2px var(--cWhite);
        border-bottom: solid 2px var(--cWhite);
        gap: 2rem;
    }

    .tabs ul li {
        text-align: left;
    }

    .tabs ul li label {
        display: block;
        padding: 1rem 1rem 1rem 0;
        cursor: pointer;
        color: var(--cWhite);
    }

    .tabs ul li label:hover {
        text-decoration: underline;
    }

    .tabs .tabs-content {
        padding-top: 2rem;
        color: var(--cWhite);
        min-height: 50vh;
    }
    
    .tabs .tabs-content div {
        display: none;
    }
    
    .tabs input:checked + label {
    color: var(--cGreen);
    }

    #tab1:checked ~ ul li:nth-of-type(1) label,
    #tab2:checked ~ ul li:nth-of-type(2) label,
    #tab3:checked ~ ul li:nth-of-type(3) label,
    #tab4:checked ~ ul li:nth-of-type(4) label,
    #tab5:checked ~ ul li:nth-of-type(5) label {
    text-decoration: underline;
    }

    #tab1:checked ~ .tabs-content div:nth-of-type(1),
    #tab2:checked ~ .tabs-content div:nth-of-type(2),
    #tab3:checked ~ .tabs-content div:nth-of-type(3),
    #tab4:checked ~ .tabs-content div:nth-of-type(4),
    #tab5:checked ~ .tabs-content div:nth-of-type(5) {
        display: block;
    }

  /* ~~~~~~~~~~~~~~~~~~~~~ */
  /* ~~~~~~   TLDR   ~~~~~ */
  /* ~~~~~~~~~~~~~~~~~~~~~ */

    input[name="version"]:checked + label {
        text-decoration: underline;
    }

  /* ~~~~~~~~~~~~~~~~~~~~~ */
  /* ~~~~~~  MARQUEE ~~~~~ */
  /* ~~~~~~~~~~~~~~~~~~~~~ */

    .marquee a { text-decoration: none; }
    .marquee {
      --gap: 1rem;
      position: relative;
      display: flex;
      overflow: hidden;
      user-select: none;
      gap: var(--gap);
      color: var(--cGreen);
    }

    .marquee__content {
      flex-shrink: 0;
      display: flex;
      justify-content: space-around;
      gap: var(--gap);
      min-width: 100%;
    }

    @keyframes scroll {
      from {
        transform: translateX(0);
      }
      to {
        transform: translateX(calc(-100% - var(--gap)));
      }
    }

    /* Enable animation */
    .marquee__content {
      animation: scroll 60s linear infinite;
      animation-direction: reverse;

    }

    .marquee--fit-content {
      max-width: fit-content;
    }

    .marquee--pos-absolute .marquee__content:last-child {
      position: absolute;
      top: 0;
      left: 0;
    }

    .marquee--pos-absolute .marquee__content:last-child {
      animation-name: scroll-abs;
    }

    /* Pause on hover */
    .marquee--hover-pause:hover .marquee__content {
      animation-play-state: paused;
    }

    @keyframes scroll-abs {
      from {
        transform: translateX(calc(100% + var(--gap)));
      }
      to {
        transform: translateX(0);
      }
    }



  /* ~~~~~~~~~~~~~~~~~~~~~~~~~ */
  /* ~~~~~~ CARDS SCROLL ~~~~~ */
  /* ~~~~~~~~~~~~~~~~~~~~~~~~~ */


    .scroll-effect-container {
        margin: 5rem auto;
    }

    .scroll-effect-item {
        background-size: 150%;
        background-position: 100% 10%;
        background-repeat: no-repeat;
        transition: background-position 0.5s ease-out;
        filter: invert(var(--iFalse));
        max-height: 50rem;
    }

    .scroll-effect-item * {
        filter: invert(var(--iTrue)); 
        color: var(--cBlack);
        mix-blend-mode: none;
    }

    .scroll-effect-item h3 {
        min-height: 5rem;
    }

    @media (min-width: 1800px) {
      .scroll-effect-item {
        background-size: 200%;
      }
    }
    


  /* ~~~~~~~~~~~~~~~~~~~~~ */
  /* ~~~~~~   MISC   ~~~~~ */
  /* ~~~~~~~~~~~~~~~~~~~~~ */


  .content {
      position: relative;
      color: var(--cWhite);
      text-align: center;
      z-index: 2;
  }

  .modal-content li {
    margin-bottom: 2rem;
  }

  .logo-max {
    max-width: 15rem;
    max-height: 15rem;
    width: auto;
    height: auto;
    transition: transform 0.3s ease;
  }

  a:has(.logo-max)::before {
    display: none;
  }

  a:has(.logo-max):hover .logo-max {
    transform: scale(1.05);
  }

  @media (max-width: 767px) {
    .logo-max {
      max-width: 12rem;
      max-height: 12rem;
    }
  }