body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(16px, calc(16px + 2vw), 24px);
    max-width: 100vw;
    min-width: 100vw;
    width: 100vw;
    max-height: 100vh;
    min-height: 100vh;
    height: 100vh;
    overflow: hidden;

    h1 {
        font-family: "Roboto Mono", Arial, Helvetica, serif;
        font-optical-sizing: auto;
        font-weight: 700;
        font-style: normal;
        font-size: clamp(38px, calc(24px + 2vw), 55px);
    }
}

#page-wrapper {
    background: #FFE9C5;
    width: 100vw;
    min-width: 100%;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden;
    position: relative;
    z-index: 0;

    .home-background {
        background: linear-gradient(to bottom, #FFE9C5, #EB6383);
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -100;
        pointer-events: none;

        &.intro-animation {
            animation: backgroundScrollUp 5s forwards;
        }
    }

    .white-diamond {
        background: transparent;
        max-height: 55vh;
        height: auto;
        max-width: 55vh;
        width: 100%;
        aspect-ratio: 1/1;
        border: clamp(10px, 2rem, 25px) solid #ffffff;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(45deg);
        z-index: -99;
        pointer-events: none;

        &.intro-animation {
            animation: whiteDiamond 5s forwards;
        }
    }

    .circle {
        max-height: 65vh;
        height: auto;
        max-width: 65vh;
        width: 100%;
        aspect-ratio: 1/1;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: -98;
        overflow: hidden;
        perspective: 1000px;
        border-radius: 100%;
        background: linear-gradient(to bottom, #C060A1, #00005C);
        pointer-events: none;

        .circle-bg {
            width: 120%;
            height: 120%;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            opacity: 0.2;
        }

        &.intro-animation {
            animation: circleGrow 5s forwards;
        }
    }

    .foliage-2 {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 45vw;
        height: auto;
        min-height: 100vh;
        z-index: -97;
        pointer-events: none;
        transition: all 0.35s ease-in-out;

        &.intro-animation {
            animation: foliage-2 2.5s forwards 6s;
            animation-fill-mode: backwards, forwards;
        }

        &.exit-animation {
            animation: foliage-2Exit 1.25s forwards 2s;
        }
    }

    .foliage-1 {
        position: absolute;
        top: calc(100% - 25vw);
        right: -25vw;
        z-index: 105;
        width: 100%;
        max-width: 75vw;
        pointer-events: none;
        transition: all 0.35s ease-in-out;

        &.intro-animation {
            animation: foliage-1 2.5s forwards 12.5s;
            animation-fill-mode: backwards, forwards;
        }

        &.exit-animation {
            animation: foliage-1Exit 1.25s forwards 1.75s;
        }
    }

    .head-hand-top,
    .head-hand-bottom {
        width: auto;
        height: 100%;
        max-height: 477px;
        position: absolute;
        top: -300px;
        left: calc(50% - 285px);
        transform: translate(-50%, -50%) rotate(30deg);
        pointer-events: none;

        &.intro-animation {
            animation: handDown 5s forwards, handShake 7.5s forwards 4.5s, handUp 5s forwards 6s;
        }

        &.exit-animation {
            animation: handDownExit 2.5s forwards, handUpExit 2.5s forwards 2.5s;
        }
    }

    .head-hand-bottom {
        z-index: 91;
    }

    .head,
    .lazer-eyes {
        position: absolute;
        top: 50%;
        left: calc(50% - 300px);
        transform: translate(-50%, -50%);
        width: 300px;
        height: auto;
        transition: all 0.35s ease-in-out;
        pointer-events: none;

        &.intro-animation {
            animation: headDown 5s forwards, headShake 0.75s forwards 4.5s;
        }
        &.exit-animation {
            animation: headUp 2s forwards 2.75s;
        }
    }

    .head {
        z-index: 92;
    }

    .lazer-eyes {
        z-index: 93;
        opacity: 0;
        transition: opacity 0s ease;
    }

    .line {
        position: absolute;
        height: 2px;
        background-color: red;
        transform-origin: top left;
        z-index: 1005;
        pointer-events: none;
    }

    .head-hand-top {
        z-index: 94;
    }

    .screen-hand-top,
    .screen-hand-bottom {
        width: auto;
        height: 100%;
        max-height: 500px;
        position: absolute;
        left: calc(50% + 270px);
        top: calc(100% + 315px);
        transform: translate(-50%, -50%);
        pointer-events: none;

        &.intro-animation {
            animation: screenHandUp 5s forwards 7.5s, screenHandShake .75s forwards 12s, screenHandDown 5s forwards 13.5s;
        }
        &.exit-animation {
            animation: screenHandUpExit 2.5s forwards, screenHandDownExit 2.5s forwards 2.75s;
        }
    }

    .screen-hand-top {
        z-index: 103;
    }

    .screen-hand-bottom {
        z-index: 105;
    }

    .menu-screen {
        --screen-br: 20px;

        width: 250px;
        height: 400px;
        padding: 15px;
        background: #BDBDBD;
        box-shadow: inset 0 0 10px 0 #000000;
        border-radius: var(--screen-br);
        position: absolute;
        top: 150%;
        left: calc(50% + 175px);
        transform: translate(-50%, -50%);
        z-index: 104;

        &.intro-animation {
            animation: menuUp 5s forwards 7.5s, screenShake .75s forwards 12s;
        }

        &.exit-animation {
            top: 50%;
            animation: menuDown 2.5s forwards 2.75s;
            .home-menu {
                animation: flickerOut 0.25s forwards 0.25s;
                .menu-button,
                .contact-button,
                .resume-button,
                .home-menu-title {
                    pointer-events: none;
                }
            }
        }

        >.outline {
            width: calc(100% - 10px);
            height: calc(100% - 10px);
            position: absolute;
            top: 5px;
            left: 5px;
            border-radius: var(--screen-br);
            background: #000000;
            z-index: 101;
        }
        >.shadow {
            width: calc(100% - 20px);
            height: calc(100% - 20px);
            position: absolute;
            top: 10px;
            left: 10px;
            border-radius: var(--screen-br);
            overflow: hidden;
            box-shadow: inset 0 0 15px 0 rgba(255, 255, 255, 0.75);
            z-index: 102;
        }
        >.screen-bg {
            width: 100%;
            height: 100%;
            position: relative;
            z-index: 103;
            overflow: hidden;
            display: block;
            background: linear-gradient(to top, #212121 0%, #424242 50%, #212121 100%);
            border-radius: calc(var(--screen-br) * 0.67);
        }
    }

    .home-menu {
        z-index: 104;
        position: absolute;
        top: 0;
        left: 0;
        padding: 25px;

        .menu-button,
        .contact-button,
        .resume-button,
        .home-menu-title {
            font-family: "Silkscreen", Arial, Helvetica, serif;
            font-optical-sizing: auto;
            font-weight: 400;
            font-style: normal;
            font-size: 26px;
            color: #76FF03;
            transition: all 0.35s ease-in-out;
        }

        .menu-button,
        .resume-button,
        .contact-button {
            background: transparent;
            border: unset;
            padding: unset;
            text-decoration: none;
            cursor: pointer;
            transition: padding 0.35s ease-in-out;
            position: relative;
            display: block;
            width: fit-content;
            &:before {
                content: ">";
                position:absolute;
                left: -15px;
                top: 50%;
                transform: translateY(-50%);
                pointer-events: none;
                opacity: 0;
                transition: opacity 0.35s ease-in-out, left 0.35s ease-in-out;
            }
            &:hover,
            &:focus {
                padding-left: 20px;
                &:before {
                    left: 0;
                    opacity: 1;
                }
            }
            &.hidden {
                display: none;
            }
        }

        .resume-button {
            margin: 4px 0;
        }
    }

    .header-container {
        position: absolute;
        top: 50%;
        left: calc(50% + 70px);
        transform: translate(-50%, -50%);
        min-width: fit-content;
        z-index: 99;

        &.intro-animation {
            animation: opacityFadeOut 4s forwards 7.5s; 
        }

        .opening-header {
            color: #ffffff;
            white-space: nowrap;

            .typing-container {
                width: fit-content;
                display: inline-block;
            }

            .typing {
                display: inline-block;
                overflow: hidden;
                font-size: 50px;
                width: 0;

                &.line-1 {
                    &.intro-animation {
                        animation: typing 2s steps(12, end) forwards 1s;
                    }
                }
                &.line-2 {
                    &.intro-animation {
                        animation: typing 2s steps(10, end) forwards 3s;
                    }
                }
                &.line-3 {
                    &.intro-animation {
                        animation: typing 2s steps(12, end) forwards 5s;
                    }
                }
            }
        }
    }

    #about {
        --about-bg-color: #4C1B77;
        --about-text-color: #FFDE39;

        width: 100vw;
        height: 100vh;
        background: var(--about-bg-color);
        position: absolute;
        top: 100%;
        left: 0;
        overflow: hidden;
        transition: top 1.5s ease-in-out;

        &.entry-animation {
            top: 0;
            z-index: 2000;
        }

        .about-menu {
            width: fit-content;
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            right: 15px;
            transition: all 0.35s ease-in-out;
            z-index: 1001;

            .about-menu-button {
                display: none;
                background: var(--about-text-color);
                border: unset;
                padding: unset;
                text-decoration: none;
                cursor: pointer;
                outline: unset;
                position: absolute;
                top: 50%;
                left: -40px;
                border: 1px solid transparent;
                border-top-left-radius: 100%;
                border-bottom-left-radius: 100%;
                padding: 5px;
                height: 40px;
                width: 40px;

                .menu-icon {
                    transition: all 0.35s ease-in-out;
                    display: block;
                    height: 4px;
                    width: 25px;
                    background: var(--about-bg-color);
                    border-radius: 2px;

                    &:not(:first-child) {
                        &:not(:last-child) {
                            margin: 3px 0;
                        }
                    }
                }
            }

            > ul {
                display: flex;
                flex-direction: column;
                align-items: center;

                > li {
                    &:not(:last-child) {
                        margin-bottom: 15px;
                    }

                    .menu-button,
                    .resume-button,
                    .contact-button {
                        background: transparent;
                        border: unset;
                        padding: unset;
                        text-decoration: none;
                        cursor: pointer;
                        display: flex;
                        flex-direction: column;
                        align-items: center;
                        transition: all 0.35s ease-in-out;
    
                        .menu-icon {
                            border: 4px solid var(--about-text-color);
                            border-radius: 100%;
                            padding: 5px;
                            margin-bottom: 5px;
                            width: fit-content;
                            height: fit-content;
                            transition: all 0.35s ease-in-out;
                            > svg {
                                transition: all 0.35s ease-in-out;
                            }
                        }
    
                        .menu-text {
                            font-family: "Roboto Mono", Arial, Helvetica, serif;
                            font-optical-sizing: auto;
                            font-weight: 700;
                            font-style: normal;
                            font-size: 24px;
                            color: var(--about-text-color);
                            text-transform: uppercase;
                        }

                        &:hover,
                        &:focus {
                            transform: scale(1.1);
                            .menu-icon {
                                background: var(--about-text-color);
                                > svg {
                                    fill: var(--about-bg-color);
                                }
                            }
                        }
                    }
                }
            }
        }

        .about-title {
            font-family: "Lily Script One", Arial, Helvetica, serif;
            font-optical-sizing: auto;
            font-weight: 400;
            font-style: normal;
            font-size: 23vh;
            color: var(--about-text-color);
            position: absolute;
            top: 40vh;
            left: -45vh;
            z-index: 1;
            transform: rotate(-90deg);
            white-space: nowrap;
            transition: all 0.35s ease-in-out;
        }

        .about-wrapper {
            position: relative;
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100vh;

            .about-content-container {
                margin: 0 auto;
                max-width: 1200px;
                max-height: 75vh;
                display: flex;
                align-items: center;
                gap: clamp(25px, 5vw, 300px);

                > * {
                    flex: 1 1 50%;
                }

                .about-content {   
                    .about-text {
                        font-family: "Noto Sans", Arial, Helvetica, serif;
                        font-optical-sizing: auto;
                        font-weight: 400;
                        font-style: normal;
                        font-size: 24px;
                        color: #ffffff;
                        line-height: 1.2;

                        &+p {
                            margin-top: 15px;
                        }

                        >a {
                            color: var(--about-text-color);
                            text-decoration: none;
                            position: relative;
                            display: inline-block;

                            &:after {
                                content: '';
                                display: block;
                                width: 0;
                                height: 2px;
                                background: var(--about-text-color);
                                bottom: 0;
                                left: 0;
                                transition: all 0.35s ease-in-out;
                            }

                            &:hover,
                            &:focus {
                                &:after {
                                    width: 100%;
                                }
                            }
                        }
                    }
                }
                
                .about-image-wrapper {
                    .about-image-container {
                        width: 100%;
                        position: relative;
                        max-width: 1200px;
                        min-width: 300px;
                        height: 100%;
                        aspect-ratio: 3/4;
                        overflow: hidden;
    
                        .about-image {
                            border-radius: 5%;
                            width: auto;
                            min-width: 300px;
                            height: 100%;
                            aspect-ratio: 3/4;
                            object-fit: cover;
                            position: absolute;
                            top: 0;
                            left: 0;
                            z-index: 0;
                            transition: all 0.35s ease-in-out;
                        }
                    }
                }
            }
        }
    }

    .popup-background {
        z-index: 9001;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.5);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);

        &.entry-animation {
            animation: popupBackgroundEntry 1.5s forwards;
            .popup-container {
                animation: popupEntry 1.5s forwards;
            }
        }

        &.exit-animation {
            animation: popupBackgroundExit 1.5s forwards;
            .popup-container {
                animation: popupExit 1.5s forwards;
            }
        }

        .popup-container {
            font-family: "Open Sans", Arial, Helvetica, serif;
            font-optical-sizing: auto;
            font-weight: 600;
            font-style: normal;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: #ebe4d4;
            border: 5px solid #00138c;
            border-top-left-radius: 10px;
            border-top-right-radius: 10px;
            border-bottom-left-radius: 5px;
            border-bottom-right-radius: 5px;
            border-top: unset;

            &.entry-animation {
                animation: popupEntry 1.5s forwards;
            }
            &.exit-animation {
                animation: popupExit 1.5s forwards;
            }

            .popup-header {
                color: #ffffff;
                font-size: 20px;
                font-weight: 700;
                padding: 10px;
                display: flex;
                flex-direction: row;
                gap: 15px;
                justify-content: space-between;
                align-items: center;
                border-top-left-radius: 5px;
                border-top-right-radius: 5px;
                background-image: linear-gradient(to right, #0026cd, transparent 5%, transparent 95%, #0026af),
                  linear-gradient(#1777cf, #058ffe 2%, #058ffe 5%, #004be5 15%, #004be5 50%, #005fff 80%, #0044c5);

                .popup-close {
                    background-color: #dc2a00;
                    border: 1px solid #ffffff;
                    border-radius: 5px;
                    min-width: 30px;
                    min-height: 30px;
                    position: relative;
                    cursor: pointer;
                    transition: all 0.35s ease-in-out;

                    &:before,
                    &:after {
                        content: '';
                        position: absolute;
                        top: 50%;  
                        left: 50%;
                        height: 20px;
                        width: 4px;
                        background-color: #ffffff;
                        border-radius: 4px;
                    }

                    &:hover,
                    &:focus {
                        background-image: linear-gradient(#fff2, #fff6);
                        transform: scale(1.05);
                    }

                    &:before {
                        transform: translate(-50%, -50%) rotate(45deg);
                    }

                    &:after {
                        transform: translate(-50%, -50%) rotate(-45deg);
                    }
                }
            }
            .popup-body {
                padding: 10px;
                overflow-y: auto;
                font-size: 18px;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 15px;

                .contact-email {
                    display: flex;
                    flex-direction: row;
                    align-items: center;
                    gap: 5px;
                    text-decoration: none;
                    width: fit-content;

                    > p {
                        display: block;
                        position: relative;
                        color: #0000EE;
                        &:after {
                            content: '';
                            display: block;
                            height: 2px;
                            width: 0;
                            background: #0000EE;
                            position: absolute;
                            bottom: -2px;
                            left: 0;
                            transition: all 0.35s ease-in-out;
                        }
                    }

                    &:hover,
                    &:focus {
                        > svg {
                            animation: emailShake 0.5s linear
                        }
                        > p:after {
                            width: 100%;
                        }
                    }
                }

                .social-container {
                    .indeed-icon {
                        display: inline-block;
                        > svg {
                            width: 44px;
                            height: 44px;
                            > path {
                                opacity: 0.3;
                                transition: all 0.35s ease-in-out;
                            }
                        }
                        &:hover,
                        &:focus {
                            > svg {
                                > path {
                                    opacity: 1;
                                    fill: #0072b1
                                }
                            }
                        }
                    }
                    .upwork-icon {
                        transform: translateY(3px);
                        display: inline-block;
                        > svg {
                            width: 50px;
                            height: 50px;
                            > path {
                                opacity: 0.3;
                                transition: all 0.35s ease-in-out;
                            }
                        }
                        &:hover,
                        &:focus {
                            > svg {
                                > path {
                                    opacity: 1;
                                    fill: #16A902
                                }
                            }
                        }
                    }
                }
            }
        }
    }

    #portfolio {
        padding: 25px;
        width: calc(100vw - 50px);
        height: calc(100vh - 50px);
        background: #ffffff;
        position: absolute;
        top: 0;
        left: 100%;
        overflow: hidden; 
        transition: all 1s ease-in-out;

        &.entry-animation {
            z-index: 2000;
            left: 0;
        }

       .portfolio-menu {
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 0;
            padding-top: 80px;
            transition: all 0.35s ease-in-out;
            z-index: 10;

            .portfolio-menu-button {
                background: transparent;
                border: unset;
                padding: unset;
                text-decoration: none;
                cursor: pointer;
                outline: unset;
                position: absolute;
                top: 0;
                right: 0;
                margin: 35px 25px 15px 25px;
                border: 1px solid transparent;
                border-radius: 2px;
                padding: 5px;

                .menu-icon {
                    transition: all 0.35s ease-in-out;
                    display: block;
                    height: 4px;
                    width: 25px;
                    background: #125F82;
                    border-radius: 2px;

                    &:not(:first-child) {
                        &:not(:last-child) {
                            margin: 3px 0;
                        }
                    }
                }
            }
            .menu-container {
                overflow: hidden;
                transition: all 0.35s ease-in-out;
                height: 100%;
                width: 0;
                position: absolute;
                top: 0;
                left: 100%;
                padding: 15px;
                z-index: 10;

                li {
                    .menu-button,
                    .contact-button,
                    .resume-button {
                        background: transparent;
                        border: unset;
                        padding: unset;
                        text-decoration: none;
                        color: #ffffff;
                        font-family: "Shrikhand", Arial, Helvetica, serif;
                        font-weight: 400;
                        font-style: normal;
                        font-size: clamp(0px, 18vw, 20vh);
                        line-height: 1.2;
                        display: block;
                        position: relative;
                        width: fit-content;
                        cursor: pointer;

                        &:before {
                            content: '';
                            display: block;
                            position: absolute;
                            bottom: clamp(0px, 3vw, 4vh);
                            left: -1vh;
                            width: 0;
                            height: clamp(0px, 2vw, 1vh);
                            background: #ffffff;
                            border-radius: 1vh;
                            transition: all 0.35s ease-in-out;
                        }
                        &:hover,
                        &:focus {
                            &:before {
                                width: 100%;
                            }
                        }
                    }
                }
            }
            &.closed {
                .portfolio-menu-button {
                    &:hover {
                        .menu-icon {
                            &:not(:first-child) {
                                &:not(:last-child) {
                                    transform: translateX(-5px);
                                }
                            }
                        }
                    }

                    &:focus {
                        border: 1px solid #125F82;
                    }
                }
            }
            &.open {
                width: 100%;
                height: 100%;
                background: rgba(255, 255, 255, 0.7);
                backdrop-filter: blur(5px);
                -webkit-backdrop-filter: blur(5px);
                z-index: 10;

                .portfolio-menu-button {
                    z-index: 11;
                    .menu-icon {
                        background: #ffffff;
                        &:not(:first-child) {
                            &:not(:last-child) {
                                height: 0;
                                display: none;
                            }
                        }
                        &:first-child {
                            transform: translateY(2px) rotate(45deg);
                        }
                        &:last-child {
                            transform: translateY(-2px) rotate(-45deg);
                        }
                    }
                }
                .menu-container {
                    height: 100%;
                    background: #125F82;
                    width: 100%;
                    left: 0;
                }
            }
        }

        .portfolio-title {
            font-family: 'Monoton', Arial, Helvetica, serif;
            font-optical-sizing: auto;
            font-weight: 400;
            font-style: normal;
            font-size: 50px;
            color: #125F82;
            margin-bottom: 25px;
        }
        
        .portfolio-content {
            height: calc(100% - 125px);
            display: flex;
            flex-direction: row;
            gap: 25px;
            transition: all 0.35s ease-in-out;

            .featured-item-container {
                padding: 25px;
                width: calc(100% - 50px);
                border-radius: 40px;
                position: relative;
                overflow: hidden;
                height: 100%;
                border: 2px solid #125F82;

                .featured-content {
                    height: 100%;
                    overflow-y: auto;

                    &::-webkit-scrollbar {
                        width: 5px;
                        height: 5px;
                    }
                    
                    &::-webkit-scrollbar-track {
                        background: #ffffff;
                    }
                    
                    &::-webkit-scrollbar-thumb {
                        background: #125F82;
                        border-radius: 20px;
                    }

                    .featured-title {
                        font-family: "Boldonse", Arial, Helvetica, sans-serif;
                        font-size: clamp(36px, 3vw, 58px);
                        line-height: 1.7;
                        color: #125F82;
                        transition: all 0.35s ease-in-out;
    
                        + p {
                            margin-top: clamp(5px, 0.8vw, 15px);
                        }
                    }
    
                    .featured-description {
                        font-family: "Noto Sans", Arial, Helvetica, sans-serif;
                        font-optical-sizing: auto;
                        font-weight: 400;
                        font-style: normal;
                        font-size: clamp(16px, 1.3vw, 24px);
                        color: #000000;
                        line-height: 1.2;
                        transition: all 0.35s ease-in-out;
    
                        + p,
                        + a {
                            margin-top: clamp(15px, 1.4vw, 25px);
                        }
                    }
    
                    .featured-link {
                        text-decoration: none;
                        display: block;
                        color: #ffffff;
                        padding: 10px 20px;
                        width: fit-content;
                        position: relative;
                        z-index: 2;
                        transition: all 0.35s ease-in-out;
                        overflow: hidden;
                        font-family: "Notable", Arial, Helvetica, sans-serif;
                        font-optical-sizing: auto;
                        font-weight: 400;
                        font-style: normal;
                        font-size: clamp(16px, 1.3vw, 24px);
    
                        .fl-bg-overlay,
                        .fl-background {
                            display: block;
                            position: absolute;
                            top: 0;
                            width: 100%;
                            height: 100%;
                            transition: all 0.35s ease-in-out;
                        }
    
                        .fl-background {
                            left: 0;
                            background: #125F82;
                            z-index: -2;
                        }
    
                        .fl-bg-overlay {
                            z-index: -1;
                            left: -100%;
                            background: linear-gradient(to right, #ffffff, transparent);
                            mix-blend-mode: overlay;
                        }
    
                        &:hover,
                        &:focus {
                            box-shadow: 5px 5px 5px #696969;
                            transform: translateY(-5px);
    
                            .fl-bg-overlay {
                                left: 0;
                            }
                        }
                    }
                }

                .iframe-overlay {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    z-index: -1;
                    background: rgba(255, 255, 255, 0.7);
                    backdrop-filter: blur(5px);
                    -webkit-backdrop-filter: blur(5px);
                }
                #iframe {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    z-index: -2;
                }

                
            }

            .portfolio-items-container {
                
                .portfolio-item-menu-btn {
                    display: none;
                }

                .portfolio-item-wrapper {
                    height: calc(100vh - 125px);
                    min-width: fit-content;
                    overflow-y: scroll;
                    padding-right: 10px;

                    &::-webkit-scrollbar {
                        width: 5px;
                        height: 5px;
                    }
                    
                    &::-webkit-scrollbar-track {
                        background: #ffffff;
                    }
                    
                    &::-webkit-scrollbar-thumb {
                        background: #125F82;
                        border-radius: 20px;
                    }
                    .portfolio-item {
                        padding: 15px;
                        width: 220px;
                        height: 220px;
                        border: 2px solid #125F82;
                        border-radius: 20px;
                        display: flex;
                        align-items: flex-end;
                        justify-content: flex-end;
                        position: relative;
                        overflow: hidden;
                        cursor: pointer;
                        transition: all 0.35s ease-in-out;
    
                        &:not(:last-child) {
                            margin-bottom: 25px;
                        }
    
                        &:hover,
                        &:focus {
                            box-shadow: 5px 5px 5px #696969;
                        }
                        &:not(:first-child) {
                            &:hover,
                            &:focus {
                                transform: translateY(-5px);
                            }
                        }
    
                        &:after,
                        &:before {
                            content: '';
                            display: block;
                            width: 100%;
                            position: absolute;
                            left: 0;
                            transition: all 0.35s ease-in-out;
                        }
    
                        &:after {
                            height: 100%;
                            top: 0;
                            background: rgba(255, 255, 255, 0.5);
                            backdrop-filter: blur(3px);
                            -webkit-backdrop-filter: blur(3px);
                            z-index: 1;
                        }
    
                        &:before {
                            height: 50%;
                            bottom: 0;
                            background: linear-gradient(to top, #ffffff, transparent);
                            z-index: 2;
                        }
    
                        .portfolio-item-title {
                            z-index: 3;
                            font-family: "Ubuntu Condensed", Arial, Helvetica, sans-serif;
                            color: #125F82;
                            font-size: 32px;
                            transition: all 0.35s ease-in-out;
                            text-align: end;
                        }
    
                        &.active {
                            &:after {
                                background: rgba(255, 255, 255, 0.2);
                                backdrop-filter: blur(0px);
                                -webkit-backdrop-filter: blur(0px);
                            }
                        }
    
                        &.auch {
                            background: url('../img/portfolio/auch.png') no-repeat center center;
                            background-size: cover;
    
                            &.active {
                                border: 2px solid #2A6D5C;
        
                                .portfolio-item-title {
                                    color:#2A6D5C;
                                }
                            }
                        }
    
                        &.nuton {
                            background: url('../img/portfolio/nuton.png') no-repeat center center;
                            background-size: cover;
    
                            &.active {
                                border: 2px solid #2B3321;
        
                                .portfolio-item-title {
                                    color:#2B3321;
                                }
                            }
                        }
    
                        &.vim {
                            background: url('../img/portfolio/vim.png') no-repeat center center;
                            background-size: cover;
    
                            &.active {
                                border: 2px solid #28A49A;
        
                                .portfolio-item-title {
                                    color:#28A49A;
                                }
                            }
                        }
    
                        &.blc {
                            background: url('../img/portfolio/blc.png') no-repeat center center;
                            background-size: cover;
    
                            &.active {
                                border: 2px solid #000000;
        
                                .portfolio-item-title {
                                    color:#000000;
                                }
                            }
                        }
    
                        &.seaport-circle {
                            background: url('../img/portfolio/seaport-circle.png') no-repeat center center;
                            background-size: cover;
    
                            &.active {
                                border: 2px solid #011F3A;
        
                                .portfolio-item-title {
                                    color:#011F3A;
                                }
                            }
                        }
    
                        &.bowery {
                            background: url('../img/portfolio/360-bowery.png') no-repeat center center;
                            background-size: cover;
    
                            &.active {
                                border: 2px solid #BF553B;
        
                                .portfolio-item-title {
                                    color:#BF553B;
                                }
                            }
                        }
                    }
                }
            }
        }
    }
}
