        @font-face {
            font-family: 'Monigue';
            src: url('../fonts/Monigue/Monigue.ttf');
            font-weight: 400;
            font-style: normal;
        }

        @font-face {
            font-family: 'BlauerNue';
            src: url('../fonts/BlauerNue/BlauerNue-Thin.ttf') format('truetype');
            font-weight: 100;
            font-style: normal;
        }

        @font-face {
            font-family: 'BlauerNue';
            src: url('../fonts/BlauerNue/BlauerNue-Thin_Italic.ttf') format('truetype');
            font-weight: 100;
            font-style: italic;
        }

        @font-face {
            font-family: 'BlauerNue';
            src: url('../fonts/BlauerNue/BlauerNue-Light.ttf') format('truetype');
            font-weight: 300;
            font-style: normal;
        }

        @font-face {
            font-family: 'BlauerNue';
            src: url('../fonts/BlauerNue/BlauerNue-Light_Italic.ttf') format('truetype');
            font-weight: 300;
            font-style: italic;
        }

        @font-face {
            font-family: 'BlauerNue';
            src: url('../fonts/BlauerNue/BlauerNue-Regular.ttf') format('truetype');
            font-weight: 400;
            font-style: normal;
        }

        @font-face {
            font-family: 'BlauerNue';
            src: url('../fonts/BlauerNue/BlauerNue-Regular_Italic.ttf') format('truetype');
            font-weight: 400;
            font-style: italic;
        }

        @font-face {
            font-family: 'BlauerNue';
            src: url('../fonts/BlauerNue/BlauerNue-Medium.ttf') format('truetype');
            font-weight: 500;
            font-style: normal;
        }

        @font-face {
            font-family: 'BlauerNue';
            src: url('../fonts/BlauerNue/BlauerNue-Medium_Italic.ttf') format('truetype');
            font-weight: 500;
            font-style: italic;
        }

        @font-face {
            font-family: 'BlauerNue';
            src: url('../fonts/BlauerNue/BlauerNue-SemiBold.ttf') format('truetype');
            font-weight: 600;
            font-style: normal;
        }

        @font-face {
            font-family: 'BlauerNue';
            src: url('../fonts/BlauerNue/BlauerNue-SemiBold_Italic.ttf') format('truetype');
            font-weight: 600;
            font-style: italic;
        }

        @font-face {
            font-family: 'BlauerNue';
            src: url('../fonts/BlauerNue/BlauerNue-Bold.ttf') format('truetype');
            font-weight: 700;
            font-style: normal;
        }

        @font-face {
            font-family: 'BlauerNue';
            src: url('../fonts/BlauerNue/BlauerNue-Bold_Italic.ttf') format('truetype');
            font-weight: 700;
            font-style: italic;
        }

        @font-face {
            font-family: 'BlauerNue';
            src: url('../fonts/BlauerNue/BlauerNue-ExtraBold.ttf') format('truetype');
            font-weight: 800;
            font-style: normal;
        }

        @font-face {
            font-family: 'BlauerNue';
            src: url('../fonts/BlauerNue/BlauerNue-ExtraBold_Italic.ttf') format('truetype');
            font-weight: 800;
            font-style: italic;
        }

        @font-face {
            font-family: 'BlauerNue';
            src: url('../fonts/BlauerNue/BlauerNue-Heavy.ttf') format('truetype');
            font-weight: 900;
            font-style: normal;
        }

        @font-face {
            font-family: 'BlauerNue';
            src: url('../fonts/BlauerNue/BlauerNue-Heavy_Italic.ttf') format('truetype');
            font-weight: 900;
            font-style: italic;
        }

        :root {
            --primary-purple: #8427ed;
            --black: #181818;
            --white: #f5f5f5;
        }

        html {
            scroll-behavior: smooth;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        ::-moz-selection {
            color: var(--black);
            background: var(--white);
        }

        ::selection {
            color: var(--black);
            background: var(--white);
        }

        html {
            scrollbar-width: none;
            overflow-y: scroll;
        }

        .ball {
            display: none;

            @media (hover: hover) {
                display: block;
                width: 1rem;
                height: 1rem;
                position: absolute;
                top: 0;
                left: 0;
                border-radius: 50%;
                pointer-events: none;
                backdrop-filter: invert(1) grayscale(1);
                transition: width 0.3s ease,
                    height 0.3s ease,
                    background-size 0.3s ease,
                    background-position 0.3s ease;
                z-index: 999;
            }

            ;
        }

        ::-webkit-scrollbar {
            display: none;
        }

        #custom-scrollbar {
            position: fixed;
            right: 10px;
            top: 0;
            width: 6px;
            height: 50px;
            border-radius: 10px;
            opacity: 0;
            pointer-events: pointer;
            backdrop-filter: invert(1) grayscale(1);
        }

        body {
            font-family: 'BlauerNue', sans-serif;
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            background-repeat: no-repeat;
            height: 100%;
            background-color: var(--black);
            color: var(--white);
            overflow-x: hidden;
        }

        h1,
        h2,
        h3 {
            font-family: 'monigue', serif;
            font-weight: 400;
        }

        h1,
        h2,
        h3,
        p {
            font-weight: 400;
            color: var(--white);
        }

        ul,
        li {
            margin: 0;
            padding: 0;
            list-style-type: none;
        }

        #page-transition-overlay {
            text-transform: uppercase;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 5rem;
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: var(--black);
            z-index: 9999;
            pointer-events: none;
        }

        /* ** BACKGROUND ** */

        .background-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-size: cover;
            background-position: center;
            filter: brightness(0.4) grayscale(100);
            z-index: -2;
        }

        .background-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--black);
            opacity: 0;
            z-index: -1;
        }

        /* ** MENU ** */

        .cta-button-header {
            mix-blend-mode: difference;
            position: fixed;
            top: 32px;
            left: 32px;
            text-transform: uppercase;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 30px;
            border: 4px solid var(--white);
            border-radius: 8rem;
            color: var(--white);
            text-decoration: none;
            font-size: 12px;
            transition: 0.3s ease;
            height: 60px;
            cursor: pointer;
            z-index: 2;
        }

        .cta-button-header svg {
            width: 20px;
            height: 20px;
        }

        @media (hover:hover) {

            .cta-button-header:hover {
                transition: 0.3s ease;
                padding: 0 45px;
            }

        }

        .menu-toggle {
            position: fixed;
            top: 32px;
            right: 32px;
            width: 120px;
            height: 60px;
            background: var(--black);
            border-radius: 8rem;
            transition: width 0.3s ease-in-out;
            cursor: pointer;
            z-index: 2;
        }

        .menu-toggle.opened {
            width: 60px;
        }

        .menu-copy {
            position: absolute;
            top: 50%;
            left: 30px;
            transform: translateY(-50%);
            color: var(--white);
            transition: left .3s ease-in-out;
            z-index: 1;
        }

        .menu-copy p {
            text-transform: uppercase;
            font-family: 'BlauerNue';
            font-size: 12px;
            margin: 0;
            padding: 0;
        }

        .menu-toggle:hover .menu-copy {
            @media (hover:hover) {
                left: 20px;
            }
        }

        .menu-toggle.opened .menu-copy {
            opacity: 0;
        }

        .menu-toggle-icon {
            position: absolute;
            right: 0;
            width: 60px;
            height: 60px;
            border-radius: 100%;
            clip-path: circle(10% at 50% 50%);
            background-color: var(--white);
            transition: all .3s ease-in-out;
            z-index: 10;
            overflow: hidden;
        }

        .menu-toggle:hover .menu-toggle-icon {
            @media (hover:hover) {
                clip-path: circle(35% at 50% 50%);
            }
        }

        .menu-toggle.opened .menu-toggle-icon {
            clip-path: circle(50% at 50% 50%);
            transform: scale(1.125);
        }

        .hamburger {
            position: absolute;
            top: 60%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 30px;
            height: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all .3s ease-in-out;
            opacity: 0;
        }

        @media (hover:hover) {
            .menu-toggle:hover .hamburger {
                top: 50%;
                opacity: 1;
            }
        }

        .menu-toggle.opened .hamburger {
            top: 50%;
            opacity: 1;
        }

        .menu-bar {
            position: absolute;
            width: 15px;
            height: 2px;
            background: var(--black);
            transition-property: transform;
            transition: all .25s ease-in-out
        }

        .menu-bar[data-position="top"] {
            transform: translateY(-3px);
        }

        .menu-bar[data-position="bottom"] {
            transform: translateY(3px);
        }

        .menu-toggle.opened .menu-bar[data-position="top"] {
            transform: translateY(0) rotate(45deg) scaleX(1.05);
        }

        .menu-toggle.opened .menu-bar[data-position="bottom"] {
            transform: translateY(0) rotate(-45deg) scaleX(1.05);
        }

        .menu {
            z-index: 1;
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            display: flex;
            background-color: var(--black);
            pointer-events: none;
            transform-style: preserve-3d;
            perspective: 1000px;
            clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
        }

        .col-col-1 {
            flex: 1;
        }

        .col-col-2 {
            flex: 2;
        }

        .col-col-1,
        .col-col-2 {
            position: relative;
            height: 100%;
            padding: 10rem 2rem 2rem 2rem;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: flex-end;
        }

        .link {
            font-family: 'BlauerNeu';
            font-weight: 100;
            position: relative;
            transform: translateY(30px);
            opacity: 0;
            display: flex;
            gap: 3rem;
            align-items: center;
        }

        .link span {
            display: none;
        }

        @media (hover:hover) {
            .link span {
                width: 30px;
                height: 30px;
                border-radius: 50%;
                display: flex;
                justify-content: center;
                align-items: center;
                color: var(--white);
                transition: .3s ease-in-out;
            }
        }

        .link span svg {
            width: 2.5rem;
            height: 2.5rem;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: .3s ease-in-out;
        }

        .link a {
            font-family: 'BlauerNue';
            text-transform: uppercase;
            text-decoration: none;
            color: var(--white);
            font-size: 3rem;
            transition: .3s ease-in-out;
        }

        .link:hover a {
            transition: .3s ease-in-out;
        }

        .video-wrapper {
            width: 100%;
            aspect-ratio: 16/9;
            background-color: var(--black);
            overflow: hidden;
            padding: 2rem;
            clip-path: polygon(0% 100%, 100% 100%, 100% 100%, 0% 100%);
        }

        .video-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .socials {
            width: 50%;
            display: flex;
            gap: 2rem;
        }

        .socials .sub-col {
            display: flex;
            flex-direction: column;
            gap: 0.25rem;
            flex: 1;
        }

        .socials .sub-col p,
        .socials .sub-col a {
            text-decoration: none;
            position: relative;
            color: var(--white);
            transform: translateY(30px);
            opacity: 0;
            text-transform: uppercase;
            font-size: 12px;
            transition: .3s ease-in-out;
            width: fit-content;
        }

        .socials .sub-col a:hover {
            color: var(--primary-purple);
        }

        .header h1 {
            color: var(--white);
            text-transform: uppercase;
            font-size: 14rem;
            line-height: 15rem;
        }

        .header h1 span {
            position: relative;
            display: inline-block;
            line-height: 15rem;
            transform: scale(0.75) translateY(500px) rotateY(90deg);
            transform-origin: bottom;
        }

        /* ** HERO ** */

        .hero {
            height: 100vh;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .hero-content h1 {
            line-height: 16rem;
            color: var(--white);
            text-transform: uppercase;
            font-size: 25rem;
        }

        .hero-content p {
            color: var(--primary-purple);
            font-family: 'BlauerNue';
            font-weight: 900;
            text-transform: uppercase;
            font-size: 2rem;
            margin-bottom: 26px;
        }

        .cta-button {
            text-transform: uppercase;
            padding: 15px 30px;
            border: 4px solid var(--white);
            border-radius: 50px;
            color: var(--white);
            text-decoration: none;
            font-size: 12px;
            transition: 0.3s ease;
        }

        .cta-button:hover,
        .cta-button:focus {
            padding: 15px 60px;
            border-radius: 0px;
        }

        /* ** FAVORITE PROJECTS ** */

        .portfolio {
            height: 100vh;
            padding: 80px 20px;
            text-align: center;
        }

        .portfolio h1 {
            font-size: 8rem;
            color: var(--white);
            text-align: left;
            margin-bottom: 50px;
            text-transform: uppercase;
        }

        .portfolio-container {
            margin: 60px 0 0;
            padding: 0 30px;
        }

        .portfolio-container ul {
            text-align: left;
            width: 100%;
            margin: 0 auto;
        }

        .img-fluid {
            max-width: 100%;
            height: auto;
        }

        .portfolio-container ul li {
            text-transform: uppercase;
            cursor: pointer;
            position: relative;
            display: flex;
            display: -webkit-flex;
            align-items: center;
            flex-wrap: wrap;
            margin: 0 -12px;
            font-size: 1.25rem;
            border-bottom: 2px solid white;
            transition: opacity .3s ease-in-out;

        }

        .portfolio-container ul li p,
        .portfolio-container ul li h2 {
            opacity: 0.6;
            transition: opacity 0.3s ease-in-out;
        }

        .portfolio-container ul li:hover p,
        .portfolio-container ul li:hover h2 {
            opacity: 1;
        }

        .portfolio-container ul:has(> li:hover) li:not(:hover) p,
        .portfolio-container ul:has(> li:hover) li:not(:hover) h2 {
            transition: opacity .3s ease-in-out;
            opacity: 0.2;
        }

        li .project-index {
            width: calc((100% / 12));
        }

        .project-index p {
            font-family: 'BlauerNue';
            font-weight: 100;
            font-style: italic;
        }

        li .project-year {
            width: calc((100% / 12) * 2);
        }

        .project-year p {
            font-family: 'BlauerNue';
            font-weight: 100;
            font-style: italic;

        }

        li .project-client {
            width: calc((100% / 12) * 4);
        }

        .project-client h2 {
            font-family: 'BlauerNue';
            font-weight: 900;
            font-size: 1.75rem;

        }

        li .project-tag {
            width: calc((100% / 12) * 4);
        }

        .project-tag p {
            font-family: 'BlauerNue';
            font-weight: 100;
            font-style: italic;

        }

        li .project-link {
            padding: 26px 0;
            width: calc((100% / 12) * 1);
        }

        li .project-link a {
            width: 30px;
            height: 30px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            background-color: var(--white);
            transition: .3s ease-in-out;
            color: var(--black);
        }

        li .project-link a:hover,
        li .project-link a:focus {
            transform: rotate(-90deg) scale(1.5);
            background-color: var(--black);
            transition: .3s ease-in-out;
            color: var(--primary-purple);
        }

        li .project-link a i {
            width: 30px;
            height: 30px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
        }

        /* ** HORIZONTAl ABOUT ** */

        .horizontal-about img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .horizontal-about h1 {
            pointer-events: none;
            text-transform: uppercase;
            width: 100%;
            color: var(--white);
            font-size: 48vw;
            text-align: center;
            margin: 0;
        }

        .horizontal-about {
            position: relative;
            width: 100%;
            height: 500vh;
        }

        .about {
            display: flex;
            align-items: center;
            position: absolute;
            top: 0;
            width: 400vw;
            height: 100vh;
            will-change: transform;
        }

        .card {
            position: absolute;
            width: 25rem;
            height: 25rem;
            border-radius: 20px;
            overflow: hidden;
        }

        #card-1 {
            top: 50%;
            left: 20%;
        }

        #card-2 {
            top: 25%;
            left: 40%;
        }

        #card-3 {
            top: 45%;
            left: 60%;
        }

        #card-4 {
            top: 15%;
            left: 80%;
        }

        #card-5 {
            top: 55%;
            left: 110%;
        }

        .about-me {
            position: absolute;
            top: 400vh;
            width: 100%;
            height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }


        .about-me p {
            width: 70%;
            padding: 2rem 0;
            font-family: 'BlauerNue';
            font-size: 6rem;
            text-align: center;
        }

        /* ** PROJECTS PAGE ** */

        .projects-hero {
            height: 80vh;
            position: relative;
            display: flex;
            padding-inline: 4rem;
            align-items: center;
            text-align: center;
        }

        .projects-hero h1 {
            font-size: 18rem;
            text-transform: uppercase;
            position: relative;
        }

        .projects-hero h1 span {
            position: absolute;
            top: -5%;
            color: var(--primary-purple);
            font-family: 'BlauerNue';
            font-weight: 700;
            font-style: italic;
            font-size: 25%;
        }

        .project-filters {
            height: 20vh;
        }

        .filter-toggle-btn {
            display: none;
            background-color: transparent;
            color: var(--white);
            border: none;
            font-size: 2rem;
            text-align: left;
            padding: 4rem;
            cursor: pointer;
            text-transform: uppercase;
            width: 100%;
            height: 20vh;
        }

        .project-filters ul {
            display: flex;
            align-items: center;
            justify-content: space-around;
            gap: 2rem;
            height: 100%;
        }

        .project-filters ul li,
        .project-filters ul button {
            font-family: 'BlauerNue';
            font-weight: 100;
            display: flex;
            cursor: pointer;
            position: relative;
            text-transform: uppercase;
            font-size: 1.5rem;
            color: var(--white);
            transition: .3s ease-in-out;
            border: none;
            background: none;
        }

        .project-filters ul button:hover,
        .project-filters ul li:hover {
            transition: .3s ease-in-out;
        }

        .project-filters ul li.active,
        .project-filters ul button.active {
            font-family: 'BlauerNue';
        }

        .filter-toggle {
            position: relative;
            width: 40px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .filter-toggle-icon {
            display: flex;
            justify-content: center;
            align-items: center;
            position: absolute;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            clip-path: circle(10% at 50% 50%);
            background-color: var(--white);
            transition: all 0.3s ease-in-out;
            overflow: hidden;
        }

        .project-filters ul li:hover .filter-toggle-icon,
        .project-filters ul button:hover .filter-toggle-icon {
            clip-path: circle(30% at 50% 50%);
        }

        .project-filters ul li.opened .filter-toggle-icon,
        .project-filters ul button.opened .filter-toggle-icon {
            clip-path: circle(30% at 50% 50%);
        }

        .filter-bar {
            position: absolute;
            width: 8px;
            height: 2px;
            background: var(--primary-purple);
            transition: all 0.3s ease-in-out;
            transform-origin: center;
            opacity: 0;
        }

        .filter-bar[data-position="top"] {
            transform: rotate(45deg);
        }

        .filter-bar[data-position="bottom"] {
            transform: rotate(-45deg);
        }

        .filter-toggle.opened .filter-bar {
            opacity: 1;
            width: 12px;
        }

        .filter-toggle:hover .filter-bar {
            opacity: 0;
        }

        .filter-toggle.opened .filter-bar[data-position="top"] {
            opacity: 1;
        }

        .filter-toggle.opened .filter-bar[data-position="bottom"] {
            opacity: 1;
        }

        .project-filters ul li {
            position: relative;
        }

        .project-filters ul button {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .project-filters ul button span.count {
            transform: translate(-6px, -14px);
            font-size: 80%;
            color: var(--primary-purple);
            font-family: 'BlauerNue';
            font-weight: 700;
            font-style: italic;
        }

        .projects {
            display: flex;
            flex-wrap: wrap;
        }

        /* ! GENERAL STYLING CARDS ! */

        .project-card {
            text-decoration: none;
            overflow: hidden;
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: space-between;
            padding: 1.5rem;
            width: 50%;
            height: 100vh;
            border: 1px solid var(--white);
        }

        .project-card .content h1,
        .project-card .content h2 {
            color: var(--white);
            text-transform: uppercase;
            text-align: center;
        }

        .project-card .content h1 {
            font-weight: 900;
            font-family: 'BlauerNue';
        }

        .project-card .content h2 {
            font-weight: 100;
            font-size: 1.5rem;
            font-family: 'BlauerNue';
        }

        .project-card .info {
            text-transform: uppercase;
            justify-content: space-between;
            width: 90%;
            display: flex;
            font-family: 'BlauerNue';
        }

        .project-card .image {
            height: 80%;
            width: 70%;
            position: relative;
        }

        .project-card .image h1 {
            font-size: 3rem;
            text-transform: uppercase;
            color: var(--white);
            text-align: center;
            opacity: 0;
            font-family: 'BlauerNue';
            font-weight: 900;
            font-style: italic;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            position: absolute;
            transition: .3s ease-in-out;
        }

        .project-card img {
            object-fit: cover;
            height: 100%;
            width: 100%;
        }

        /* ! STYLE FOR 4 MOST CARDS ! */

        .project-card.first-four {
            gap: 1rem;
            width: 50%;
            height: 100vh;
            flex-direction: column;
        }

        .project-card.first-four .small-card-content {
            mix-blend-mode: difference;
            display: flex;
            flex-direction: column-reverse;
            justify-content: space-between;
            height: 100%;
            width: 100%;
        }

        .project-card.first-four .content {
            width: 100%;
        }

        .project-card.first-four .content h1,
        .project-card.first-four .content h2 {
            text-align: center;
        }

        .project-card.first-four .content h2 {
            font-size: 1.2rem;
        }

        .project-card.first-four .info {
            width: 100%;
        }

        .project-card.first-four .image {
            width: 70%;
            position: relative;
        }

        /* ! STYLE FOR 5 - 12 CARDS ! */

        .project-card.five-to-twelve {
            gap: 1rem;
            width: 50%;
            height: 25vh;
            flex-direction: row;
        }

        .project-card.five-to-twelve .small-card-content {
            mix-blend-mode: difference;
            display: flex;
            flex-direction: column-reverse;
            justify-content: space-between;
            height: 100%;
            width: 75%;
        }

        .project-card.five-to-twelve .content {
            width: 100%;
        }

        .project-card.five-to-twelve .content h1,
        .project-card.five-to-twelve .content h2 {
            text-align: left;
        }

        .project-card.five-to-twelve .content h2 {
            font-size: 1rem;
        }

        .project-card.five-to-twelve .info {
            width: 100%;
        }

        .project-card.five-to-twelve .image {
            height: 100%;
            width: 25%;
            position: relative;
        }

        .project-card.five-to-twelve .background {
            position: absolute;
            top: -50vh;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--white);
            z-index: -1;
        }

        /* ! STYLE FOR 13+ CARDS ! */

        .project-card.thirteen-plus {
            gap: 1rem;
            width: 100%;
            height: 12.5vh;
            flex-direction: row;
        }

        .project-card.thirteen-plus .small-card-content {
            mix-blend-mode: difference;
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 10rem;
            justify-content: space-between;
            height: 100%;
            width: 100%;
        }

        .project-card.thirteen-plus .content h1,
        .project-card.thirteen-plus .content h2 {
            width: 20vw;
            text-align: left;
        }

        .project-card.thirteen-plus .small-card-content .content h2 {
            font-size: 1rem;
        }

        .project-card.thirteen-plus .small-card-content .content,
        .project-card.thirteen-plus .small-card-content .info {
            justify-content: space-between;
            display: flex;
            align-items: center;
            flex-direction: row;
            width: 100%;
        }

        .project-card.thirteen-plus .background {
            position: absolute;
            top: -12.5vh;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--white);
            z-index: -1;
        }

        .project-card.full-width {
            width: 100%;
            flex-direction: column;
        }

        .project-card .background {
            position: absolute;
            top: -100vh;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--white);
            z-index: -1;
        }

        /* ** ABOUT PAGE ** */

        .about-hero {
            height: 80vh;
            position: relative;
            display: flex;
            padding-inline: 4rem;
            align-items: center;
            text-align: center;
        }

        .about-hero h1 {
            font-size: 18rem;
            text-transform: uppercase;
            position: relative;
        }

        .infinite-scroll-container {
            width: 100%;
            height: 20vh;
            overflow: hidden;
            position: relative;
            display: flex;
            align-items: center;
        }

        .infinite-scroll {
            display: flex;
            align-items: center;
            white-space: nowrap;
            gap: 30px;
            font-size: 2rem;
            font-weight: bold;
            text-transform: uppercase;
            color: var(--white);
            animation: scrollAnimation linear infinite 20s;
        }

        .scroll-item {
            display: inline-block;
            transition: .3s ease-in-out;
        }

        .infinite-scroll svg {
            display: inline-block;
            width: 24px;
            height: 24px;
            color: var(--primary-purple);
        }

        .about-section {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100vh;
            padding: 5vw;
            position: relative;
            overflow: hidden;
        }

        .about-text {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 50%;
            font-size: 1.5rem;
            color: var(--white);
            height: 100vh;
        }

        .about-images {
            width: 50%;
            height: 100vh;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-images .card {
            position: absolute;
            will-change: transform;
            width: 75%;
            height: 50%;
            pointer-events: none;
        }

        .about-images .card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }


        /* ** PROJECT PAGE ** */

        .project {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: space-around;
            padding: 5vw;
        }

        .project h1 {
            margin: 1rem 0;
            line-height: 12.5rem;
            font-size: 12vw;
            text-transform: uppercase;
            font-family: 'BlauerNue';
            font-weight: 900;
            font-style: italic;
        }

        .project .info {
            border-top: 1px solid var(--white);
            padding: 1rem 0;
            display: flex;
            justify-content: space-between;
            width: 100%;
            margin-bottom: 6rem;
        }

        .project .info .short-description {
            text-transform: uppercase;
            font-family: 'BlauerNue';
            font-weight: 700;
        }

        .project .info p {
            text-transform: uppercase;
            font-family: 'BlauerNue';
        }

        .project .project-image {
            padding: 2.5rem 0;
            width: 100%;
            height: 100vh;
            position: relative;
        }

        .project-image svg {
            cursor: pointer;
            position: absolute;
            top: 50%;
            transform: translate(0, -50%);
            color: var(--white);
            width: 40px;
            height: 40px;
            filter: drop-shadow(0px 0px 10px var(--black));
        }

        .project-image svg[data-lucide='chevron-left'] {
            left: 2%;
        }

        .project-image svg[data-lucide='chevron-right'] {
            right: 2%;
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .indicator-container {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin: 2rem 0;
        }

        .indicator-dot {
            width: 10px;
            height: 10px;
            background-color: gray;
            border-radius: 50%;
            transition: background-color 0.3s;
            cursor: pointer;
        }

        .indicator-dot.active {
            background-color: white;
            transform: scale(1.2);
        }

        .project .project-text {
            padding: 2rem 0 0;
            width: 50%;
        }

        .project-text p {
            font-size: 1.5rem;
        }

        .project-text .icons {
            display: flex;
            align-items: center;
            height: 2rem;
            gap: 1rem;
            margin: 1rem 0;
        }

        .project-text .icons i {
            color: var(--white);
            transition: .3s ease-in-out;
        }

        .project-text .icons i:hover {
            transition: .3s ease-in-out;
            color: var(--primary-purple);
        }

        #imageOverlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            justify-content: center;
            align-items: center;
            z-index: 1000;
        }

        #expandedImage {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
            cursor: pointer;
        }

        #leftChevronOverlay,
        #rightChevronOverlay {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            font-size: 3rem;
            color: white;
            cursor: pointer;
            z-index: 2000;
        }

        #leftChevronOverlay {
            left: 10px;
        }

        #rightChevronOverlay {
            right: 10px;
        }

        /* ** FOOTER ** */

        .footer {
            width: 100%;
            height: 85vh;
            background-color: var(--white);
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            padding: 0 5rem;
        }

        .footer-header h1 {
            display: flex;
            justify-content: center;
            color: var(--black);
            text-transform: uppercase;
            font-size: 30vw;
            padding-bottom: 32px;
        }

        .footer-header h1 span {
            position: relative;
            display: inline-block;
            transform: scale(0.75) translateY(500px) rotateY(90deg);
            transform-origin: bottom;
        }

        .footer-wrapper {
            width: 90%;
            display: flex;
            justify-content: space-between;
        }

        .footer-socials {
            display: flex;
            flex-direction: column;
            text-align: right;
            gap: 1rem;
            justify-content: space-between;
        }

        .footer-socials p,
        .footer-socials a {
            color: var(--black);
            text-decoration: none;
            transition: .3s ease-in-out;
        }

        .footer-socials a:hover {
            color: var(--primary-purple);
            transition: .3s ease-in-out;

        }

        .footer-socials-group {
            display: flex;
            flex-direction: column;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
        }

        .footer-links p,
        .footer-links a {
            color: var(--black);
            text-decoration: none;
            transition: .3s ease-in-out;
        }

        .footer-links a:hover {
            color: var(--primary-purple);
            transition: .3s ease-in-out;

        }

        @media (max-width: 1280px) {

            html {
                font-size: 14px;
            }

            /* ! STYLE FOR 5 - 12 CARDS ! */

            .project-card.five-to-twelve {
                gap: 1rem;
                width: 100%;
                height: 12.5vh;
                flex-direction: row;
            }

            .project-card.five-to-twelve .small-card-content {
                mix-blend-mode: difference;
                display: flex;
                flex-direction: row;
                align-items: center;
                gap: 10rem;
                justify-content: space-between;
                height: 100%;
                width: 100%;
            }

            .project-card.five-to-twelve .content h1,
            .project-card.five-to-twelve .content h2 {
                width: 20vw;
                text-align: left;
            }

            .project-card.five-to-twelve .small-card-content .content h2 {
                font-size: 1rem;
            }

            .project-card.five-to-twelve .small-card-content .content,
            .project-card.five-to-twelve .small-card-content .info {
                justify-content: space-between;
                display: flex;
                align-items: center;
                flex-direction: row;
                width: 100%;
            }

            .project-card.five-to-twelve .background {
                position: absolute;
                top: -12.5vh;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: var(--white);
                z-index: -1;
            }

            .project-card.five-to-twelve .background {
                position: absolute;
                top: -50vh;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: var(--white);
                z-index: -1;
            }

            .project-card.full-width {
                width: 100%;
                flex-direction: column;
            }

            .project-card .background {
                position: absolute;
                top: -100vh;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: var(--white);
                z-index: -1;
            }

            .project-card.five-to-twelve .image {
                display: none;
            }

        }

        @media (max-width: 1024px) {

            html {
                font-size: 12px;
            }

            .project-card.first-four {
                height: 50vh;
            }

        }

        @media (max-width: 920px) {

            html {
                font-size: 10px;
            }

            .menu {
                flex-direction: column;
            }

            .col-col-1,
            .col-col-2 {
                height: 25%;
                align-items: flex-start;
            }

            .socials {
                width: 100%;
            }

            .link a {
                font-size: 4rem;
            }

            .video-wrapper {
                display: none;
            }

            .header h1 {
                font-size: 24rem;
            }

            .about-text p {
                font-size: 1.5rem;
            }

            .project-filters {
                transition-behavior: allow-discrete;
                height: 30vh;
            }

            .project-filters ul {
                padding: 0 4rem 4rem;
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                justify-content: center;
                gap: 0;
                height: 100%;
            }

            .project-filters ul li,
            .project-filters ul button {
                font-size: 2rem;
            }

            .footer-socials p,
            .footer-socials a,
            .footer-links p,
            .footer-links a {
                font-size: 1.5rem;
            }

        }

        @media (max-width: 780px) {

            html {
                font-size: 8px;
            }

            .col-col-1 {
                flex: 1;
                padding: 10rem 3rem 3rem 3rem;
            }

            .col-col-2 {
                flex: 1;
                padding: 10rem 3rem 3rem 3rem;
            }

            .link a {
                font-size: 8rem;
            }

            .header {
                display: none;
            }

            .project .info .year, .project .info .filter {
                display: none;
            }

            .project .info p {
                font-size: 2rem;
            }

            .project .project-image {
                height: 75vh;
            }

            .project .project-text {
                padding: 3rem 0 0;
                width: 75%;
            }

            .project-text p {
                font-size: 2rem;
            }

            .project-text .icons {
                margin: 2rem 0;
                height: 3rem;
            }

            .project-text .icons i {
                font-size: 3rem !important;
            }

            .about-section {
                flex-direction: column;
                padding: 4rem;
            }

            .about-images {
                height: 40vh;
                width: 75%;
                margin-bottom: 4rem;
            }

            .about-images .card {
                width: 75%;
                height: 90%;
                pointer-events: none;
            }

            .about-text {
                margin-top: 4rem;
                height: 60vh;
                width: 100%;
            }

            .about-text p {
                text-align: justify;
                font-size: 2.5rem;
                width: 75%;
            }

            .footer-wrapper {
                width: 95%;
                flex-direction: column;
                justify-content: space-around;
                height: 60%;
            }

            .footer-header h1 {
                padding: 0;
            }

            .footer-socials p,
            .footer-socials a,
            .footer-links p,
            .footer-links a {
                text-align: left;
                font-size: 2.5rem;
            }
        }

        @media (max-width: 620px) {

            html {
                font-size: 6px;
            }

            .hero .cta-button {
                display: none;
            }

            .col-col-1 {
                justify-content: center;
            }

            li .project-index {
                display: none;
            }

            li .project-year {
                display: none;
            }

            li .project-client {
                width: calc((100% / 12) * 6);
            }

            .project-client h2 {
                font-size: 3rem;

            }

            li .project-tag {
                width: calc((100% / 12) * 5);
            }

            .project-tag p {
                font-size: 2rem;
            }

            .project-card.first-four {
                padding: 4rem;
                height: 100vh;
                width: 100%;
            }

            .project-card .content h1 {
                font-size: 3.5rem;
            }

            .project-card.first-four .content h2 {
                font-size: 2.5rem;
            }

            .project-card.first-four .info p {
                font-size: 2rem;
            }

            .project-card.five-to-twelve .small-card-content .content h1 {
                font-size: 2.5rem;
            }

            .project-card.five-to-twelve .small-card-content .content h2 {
                font-size: 1.5rem;
            }

            .project-card.five-to-twelve .info p {
                font-size: 1.5rem;
            }

        }

        @media (max-width: 420px) {

            html {
                font-size: 4px;
            }

            .cta-button-header {
                display: none;
            }

            .about-hero,
            .projects-hero {
                justify-content: center;
            }

            .filter-toggle-btn {
                height: 20vh;
            }

            .socials {
                gap: 4rem;
                flex-direction: column;
            }

            .scroll-item {
                font-size: 2.5rem;
            }

            .about-text {
                height: 60vh;
            }

            .about-text p {
                font-size: 3.5rem;
            }

            .filter-toggle-btn {
                font-size: 3.5rem;
            }

            .project-filters ul li,
            .project-filters ul button {
                font-size: 3.5rem;
            }

            .project-card.first-four {
                padding: 4rem;
                height: 50vh;
                width: 100%;
            }

            .project .info p {
                font-size: 3rem;
            }

            .project .project-text {
                padding: 5rem 0 0;
                width: 90%;
            }

            .project-text p {
                font-size: 3rem;
            }

            .project-text .icons i {
                font-size: 5rem !important;
            }

            .project-text .icons {
                margin: 4rem 0;
                height: 5rem;
            }

            .footer-links p,
            .footer-links a,
            .footer-socials p,
            .footer-socials a {
                font-size: 3.5rem;
            }
        }