* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Dennis Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #999d9e;
    overflow-x: hidden;
}

:root {
    --color-dark: #1C1D20;
    --color-dark-dark: #141517;
    --color-light: #FFFFFF;
    --color-blue: #455CE9;
    --color-blue-dark: #334BD3;
    --color-gray: #999D9E;
    --color-lightgray: #E9EAEB;
    --color-white: #FFFFFF;
    --color-border: rgba(28, 29, 32, 0.175);
    --color-border-solid: #D2D2D2;
    --color-border-light: rgba(255, 255, 255, 0.2);
    --color-border-solid-light: #545557;
    --color-text: #1C1D20;
    --color-text-light: #FFF;
    --alert-error: #ff4444;
    --alert-success: #24C958;
    --animation-primary: all .5s cubic-bezier(.7, 0, .3, 1);
    --animation-fast: all .3s cubic-bezier(.7, 0, .3, 1);
    --animation-smooth: all .7s cubic-bezier(.7, 0, .3, 1);
    --animation-slow: all .9s cubic-bezier(.7, 0, .3, 1);
    --section-padding: clamp(5em, 21vh, 12em);
    --container-padding: clamp(2.5em, 8vw, 8em);
    --gap-padding: clamp(1.5em, 4vw, 2.5em);
}

@font-face {
    font-family: "Dennis Sans";
    src: url("./assets/NeueMontreal-Regular.otf");
}

a {
    text-decoration: none;
    color: inherit;
    font-weight: 500;
    font-size: 1.1rem;
}

p {
    font-weight: 500;
    font-size: 1.2rem;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

@keyframes digital-ball {
    0% {
        background: var(--color-blue);
    }

    50% {
        background: #ff4444;
    }

    100% {
        background: var(--color-blue);
    }
}

@keyframes globe {
    0% {
        transform: translate(-50%, -50%) rotate(15deg);
    }

    50% {
        transform: translate(-50%, -50%) rotate(-15deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(15deg);
    }
}

@keyframes circle1 {
    0% {
        border-radius: 50%;
        box-shadow: inset .1em 0px 0px .08em var(--color-white);
        width: 100%;
    }

    49% {
        border-radius: 50%;
        box-shadow: inset .1em 0px 0px .08em var(--color-white);
        background: transparent;
    }

    50% {
        border-radius: 0%;
        width: .175em;
        background: var(--color-white);
    }

    51% {
        border-radius: 50%;
        box-shadow: inset -.1em 0px 0px .08em var(--color-white);
        background: transparent;
    }

    100% {
        border-radius: 50%;
        box-shadow: inset -.1em 0px 0px .08em var(--color-white);
        width: 100%;
    }
}

/* Fade-in text in preloader */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Fade-out preloader */
@keyframes fadeOut {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* Bubble swipe up animation for preloader */
@keyframes swipeUp {
    0% {
        transform: translateY(0);
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    80%,
    100% {
        transform: translateY(-100%);
        border-bottom-left-radius: 50%;
        border-bottom-right-radius: 50%;
    }
}

/* Fade-in and scroll-up main content */
@keyframes fadeInContent {
    0% {
        transform: translateY(200px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes grow {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(100%);
    }
}

@keyframes arrow {
    0% {
        transform: rotate(120deg);
    }

    100% {
        transform: rotate(75deg);
    }
}

@keyframes point {
    0% {
        transform: translate3d(0, 0, 0) rotate(100deg);
    }

    100% {
        transform: translate3d(8px, -8px, 0) rotate(100deg);
    }
}


/* Preloader styling */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    animation: fadeOut 1s 4s forwards, swipeUp 1s 2.5s forwards;
}

.preloader-text {
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    opacity: 0;
    animation: fadeIn 1s ease-in-out forwards;
}

/* Main content styling */
.main-content {
    animation: fadeInContent 1s ease-out 2.5s forwards;
}


/* Sidemenu styling */
.sidemenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    /* background-color: #1111110d; */
    background: linear-gradient(to right, hsla(0, 0%, 0%, 0.148) 40%, hsla(0, 0%, 0%, 0.146) 80%);
    overflow: hidden;
    display: flex;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;

    .close-menu-area {
        width: 60%;
        height: 100%;
        cursor: pointer;
    }

    .menu-area {
        width: 40%;
        height: 100%;
        z-index: 1;
        background-color: #111;
        opacity: 1;
        padding: 5rem;
        color: #FFF;
        display: flex;
        flex-direction: column;
        align-items: flex-start;

        h5 {
            padding-bottom: 3rem;
            width: 100%;
            border-bottom: 2px solid var(--color-lightgray);
            font-weight: 450;
            font-style: normal;
            font-size: 1em;
            line-height: 1.065;
            margin-bottom: 1em;
            text-transform: uppercase;
            letter-spacing: .05em;
            opacity: .5;
        }

        div {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 2rem;
            padding-block: 3rem;

            a {
                font-size: 3rem;
                line-height: 1.065;
                text-transform: uppercase;
                letter-spacing: .05em;
                position: relative;
                padding-left: 20px;

                .line {
                    position: absolute;
                    left: 0;
                    bottom: 50%;
                    transform: translateY(50%);
                    width: 8px;
                    height: 8px;
                    border-radius: 50%;
                    padding: 0px;
                    display: inline;
                    background-color: #FFF;
                    opacity: 0;
                    transition: opacity 0.3s ease;
                }
            }

            a:hover .line {
                opacity: 1;
            }
        }
    }
}

.sidemenu.active {
    opacity: 1;
    pointer-events: all;
}



.navbar {
    padding: 40px;
    padding-top: 0px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    button {
        background-color: transparent;
        border: none;
        outline: none;
        color: white;
        position: relative;
        cursor: pointer;

        a {
            display: inline-block;
        }
    }

    button .dot {
        position: absolute;
        bottom: 5px;
        left: 50%;
        transform: translateX(-50%) scale(0);
        width: 6px;
        height: 6px;
        background-color: #fff;
        border-radius: 50%;
        transition: transform 0.3s ease;
        opacity: 0;
    }

    button:hover .dot {
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }

    .magneto {
        width: 5rem;
        height: 5rem;
        border: none;
        border-radius: 50%;
        color: white;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .logo {
        overflow: hidden;
        /* Hide overflow to create clipping effect */
        width: 150px;
        /* Adjust this to control the visible portion */
        background: none;
        border: none;
        border-radius: 0px;
        cursor: pointer;
        padding: 0;
        outline: none;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .logo a {
        display: inline-block;
        white-space: nowrap;
        padding: 10px 0px;
        font-size: 16px;
        color: #fff;
        letter-spacing: 1.1px;
        transition: transform 0.5s ease;
        transform: translateX(0%);
    }

    .logo:hover a {
        transform: translateX(-50%);
        /* Adjusted based on text length */
    }


    aside {
        display: flex;
        align-items: center;
        width: max-content;
        justify-content: center;
        gap: 40px;
    }

    button.mobile-menu {
        display: none;
    }
}





/* Menu Button Styling */
.menu-button {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 80px;
    height: 80px;
    background-color: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s ease, color 0.3s ease;
    overflow: hidden;
    z-index: 4;
    pointer-events: none;
}

/* Bubble effect */
.menu-button::before {
    content: "";
    position: absolute;
    bottom: -100%;
    /* Starts the bubble below the button */
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-blue-dark);
    transition: bottom 0.3s ease;
    z-index: 0;
    /* Ensures the bubble stays behind the text */
}

/* Hover effect to animate the bubble in */
.menu-button:hover::before {
    bottom: 0;
    border-radius: 50%;
    /* Move the bubble up to cover the button */
}

.menu-button.active {
    animation: grow .5s cubic-bezier(0.64, 0.57, 0.67, 1.53) forwards;
    opacity: 1;
    pointer-events: all;
}

.menu-button .line {
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--color-gray);
    transition: transform 0.3s ease;
}

.menu-button:hover .line {
    background-color: #fff;
}

.menu-button .line1 {
    transform: translateY(-5px);
}

.menu-button .line2 {
    transform: translateY(5px);
}

/* Cross (X) effect on click */
.menu-button.open .line1 {
    transform: rotate(45deg);
}

.menu-button.open .line2 {
    transform: rotate(-45deg);
}

.about button {
    position: absolute;
    bottom: 0;
    right: 10%;
}








.hero {
    background-color: #999d9e;
    height: 100vh;
    min-height: max-content;
    background-image: url("./assets/me_no_bg.png");
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: contain;
    color: white;
    position: relative;

    .location-label {
        position: absolute;
        top: 50%;
        left: 0px;
        transform: translateY(-50%);
        background-color: #1c1d20;
        padding: 20px 20px 20px 60px;
        border-top-right-radius: 60px;
        border-bottom-right-radius: 60px;
        display: flex;
        align-items: center;
        gap: 30px;

        >.digital-ball {
            width: 4.2em;
            height: 4.2em;
            transform: translate(0%, 0%);
            background: #999d9e;
            border-radius: 50%;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;

            .overlay {
                position: absolute;
                top: 0;
                left: 0;
                height: 100%;
                width: 100%;
                opacity: 0;
                transition: opacity 1s ease-in-out;
                animation: digitalball 6s ease-in-out infinite;
            }

            .globe {
                font-size: .8rem;
                width: 2.5em;
                height: 2.5em;
                border-radius: 50%;
                overflow: hidden;
                will-change: transform;
            }

            .globe-wrap {
                top: 50%;
                left: 50%;
                width: 100%;
                height: 100%;
                position: absolute;
                display: block;
                border-radius: 50%;
                transform: translate(-50%, -50%) rotate(30deg);
                animation: globe 5.4s cubic-bezier(0.35, 0, 0.65, 1) infinite;
                overflow: hidden;
                box-shadow: inset 0px 0px 0px .125em var(--color-white);
            }

            .globe .circle.second {
                animation-delay: 2s;
            }

            .globe .circle.third {
                animation-delay: 1s;
            }

            .globe .circle {
                position: absolute;
                top: 50%;
                left: 50%;
                width: 100%;
                height: 100%;
                transform: translate(-50%, -50%);
                border-radius: 50%;
                box-shadow: inset .1em 0px 0px .08em var(--color-white);
                animation: circle1 2.7s linear infinite;
                font-size: .75em;
            }

            .globe .circle-hor {
                position: absolute;
                top: 50%;
                left: 50%;
                width: 150%;
                transform: translate(-50%, -50%);
                border-radius: 50%;
                height: 55%;
                box-shadow: inset 0px 0px 0px .15em var(--color-white);
                font-size: .75em;
            }

            .globe .circle-hor-middle {
                position: absolute;
                top: 50%;
                left: 50%;
                width: 150%;
                transform: translate(-50%, -50%);
                border-radius: 0%;
                height: .15em;
                background: var(--color-white);
                font-size: .75em;
            }
        }
    }

    .role {
        position: absolute;
        top: 50%;
        right: 10%;
        transform: translateY(-50%);

        h4 {
            font-size: 3rem;
            font-weight: 300;

            span {
                letter-spacing: 2px;
            }
        }

        .arrow {
            position: absolute;
            top: -50px;
            right: -50%;
            width: 100%;
            height: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1;
            animation: arrow 1.5s ease-in-out infinite alternate;
        }
    }

    .scroll-section {
        position: absolute;
        bottom: -17%;
        left: 0;
        padding-bottom: 15px;
        width: 100%;
        transform: translateY(-50%);
        overflow: hidden;
        white-space: nowrap;

        .scroll-text {
            display: flex;
            font-size: 12vw;
            font-weight: 300;
            padding: 20px 0px 0px 0px;
            will-change: transform;
        }

        .scroll-text span {
            display: inline-block;
            padding-right: 50px;
            flex-shrink: 0;
        }
    }
}







.about {
    padding: 7rem 5rem;
    background-color: #ffffff;
    position: relative;

    main {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5rem;
        margin-bottom: 100px;
    }

    h3 {
        font-weight: 450;
        font-style: normal;
        font-size: clamp(1.55em, 2.3vw, 2.5em);
        line-height: 1.45;
        margin-bottom: 1em;
    }

    p {
        font-weight: 450;
        font-style: normal;
        color: var(--text);
        font-size: 1em;
        line-height: 1.66;
        margin-bottom: 1em;
    }
}

.about button {
    width: clamp(9em, 12vw, 11em);
    height: clamp(9em, 12vw, 11em);
    border-radius: 50%;
    border: 0;
    background: var(--color-dark);
    position: absolute;
    bottom: 20px;
    right: 10%;
    cursor: pointer;
    overflow: hidden;
    /* Prevents the bubble effect from spilling out */
    transition: color 0.3s ease;
}

.about button p {
    color: white;
    font-size: 1.4em;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    z-index: 1;
    /* Ensures text stays above the bubble background */
    position: relative;
}

/* Bubble effect */
.about button::before {
    content: "";
    position: absolute;
    bottom: -100%;
    /* Starts the bubble below the button */
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-blue-dark);
    transition: bottom 0.3s ease;
    z-index: 0;
    /* Ensures the bubble stays behind the text */
}

/* Hover effect to animate the bubble in */
.about button:hover::before {
    bottom: 0;
    border-radius: 50%;
    /* Move the bubble up to cover the button */
}







.works {
    list-style: none;
    padding: 20px 60px;
    background-color: #FFFFFF;
    overflow: hidden;

    li {
        position: relative;
        height: 200px;
        border-top: 1px solid var(--color-lightgray);
        border-bottom: 1px solid var(--color-lightgray);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-inline: 150px;
    }

    li .title {
        font-weight: 550;
        font-style: normal;
        font-size: 3.5rem;
        line-height: 1.45;
        transition: transform 0.3s ease;
    }

    li .desc {
        font-weight: 450;
        font-size: 1.2rem;
        color: var(--text);
        line-height: 1.66;
        transition: transform 0.3s ease;
    }

    li:hover .title {
        color: var(--color-gray);
        transform: translateX(-30px);
    }

    li:hover .desc {
        color: var(--color-gray);
        transform: translateX(30px);
    }

    li .hover-image {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 150%;
        display: none;
        /* Hidden by default */
        pointer-events: none;
        z-index: 3;
    }

    li .hover-image img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: contain;
        transform: scale(0);
        /* Initial scale for animation */
    }
}

.mobile-works {
    display: none;
}







.footer {
    padding: 7rem 5rem 15px 5rem;
    background-color: var(--color-dark);
    color: white;
    height: 95vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    main {
        display: flex;
        flex-direction: column;
        width: 70%;
        margin: 0px auto;

        .top {
            border-bottom: 3px solid var(--color-border-solid-light);
            padding-bottom: 3.5rem;
            position: relative;

            .arrow {
                position: absolute;
                top: -50px;
                right: -50%;
                width: 100%;
                height: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
                z-index: 1;
                transform: rotate(100deg);
                animation: point 1s cubic-bezier(.1, .26, .54, 1.47) infinite alternate;
            }

            button {
                width: clamp(9em, 12vw, 11em);
                height: clamp(9em, 12vw, 11em);
                border-radius: 50%;
                border: 0;
                background: var(--color-blue);
                color: #FFFFFF;
                position: absolute;
                bottom: -30%;
                right: 10%;
                cursor: pointer;
                overflow: hidden;
                z-index: 2;
                /* Prevents the bubble effect from spilling out */
                transition: color 0.3s ease;
            }

            /* Bubble effect */
            button::before {
                content: "";
                position: absolute;
                bottom: -100%;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: var(--color-blue-dark);
                transition: bottom 0.3s ease;
                z-index: 0;
            }

            button:hover::before {
                bottom: 0;
                border-radius: 50%;
            }

            .lets-work {
                font-weight: 450;
                font-size: calc(clamp(3.25em, 7vw, 8em) * .875);
                line-height: 1.05;
            }
        }

        .bottom {
            padding-top: 3.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;

            a {
                width: max-content;
                padding: 20px 30px;
                border-radius: 30px;
                border: 2px solid var(--color-border-solid-light);
                background: transparent;
                color: #FFFFFF;
                position: relative;
                overflow: hidden;
                transition: color 0.3s ease;

                p {
                    position: relative;
                    z-index: 1;
                }
            }

            a:hover {
                border: none;
            }

            a::before {
                content: "";
                position: absolute;
                bottom: -100%;
                left: 0;
                width: 100%;
                height: 100%;
                background-color: var(--color-blue-dark);
                transition: bottom 0.3s ease;
                z-index: 0;
            }

            a:hover::before {
                bottom: 0;
                border-radius: 30px;
            }
        }
    }

    aside {
        display: flex;
        align-items: center;
        justify-content: space-between;

        div {
            display: flex;
            flex-direction: column;
            align-items: flex-start;

            h5 {
                font-weight: 450;
                font-style: normal;
                font-size: .8em;
                line-height: 1.065;
                margin-bottom: 1em;
                text-transform: uppercase;
                letter-spacing: .05em;
                opacity: .5;
            }

            span {
                display: flex;
                align-items: center;
                gap: 1rem;

                a {
                    font-weight: 450;
                    font-style: normal;
                    font-size: .95rem;
                    line-height: 1.065;
                    letter-spacing: .05em;
                    padding-bottom: 3px;
                    position: relative;
                }

                .line {
                    background-color: var(--color-border-solid);
                    height: 2px;
                    width: 100%;
                    transform: scale(0);
                    transition: transform 0.3s ease-out;
                    position: absolute;
                    bottom: 0px;
                }

                a:hover .line {
                    transform: scale(100%);
                }
            }

            p {
                font-weight: 450;
                font-style: normal;
                font-size: .85rem;
                line-height: 1.065;
                letter-spacing: .05em;
            }
        }
    }
}












































@media screen and (max-width: 1000px) {
    .hero {

        .role {
            top: 40%;
            right: 5%;
            transform: translateY(-40%);
        }

        .scroll-section {
            position: absolute;
            bottom: -10%;
        }
    }

    .works {
        padding: 20px 40px;

        li {
            padding-inline: 80px;
        }
    }

    .footer {
        padding: 7rem 3.5rem 15px 3.5rem;

        main {
            width: 80%;

            .top {
                padding-bottom: 5rem;

                button {
                    padding: 15px;
                }
            }

            .bottom {
                padding-top: 5rem;
            }
        }
    }

    .sidemenu {

        .close-menu-area {
            width: 40%;
        }

        .menu-area {
            width: 60%;
        }
    }
}






















@media screen and (max-width: 786px) {
    .hero {
        .location-label {
            padding: 20px 20px 20px 30px;
        }

        .role {
            top: 60%;
            right: 5%;
            transform: translateY(-60%);

            h4 {
                font-size: 4vw;
            }

            .arrow {
                top: -25px;
            }
        }
    }

    .about {
        padding: 5rem 3rem;
    }

    .works {
        li {
            padding-inline: 50px;
        }

        li .title {
            font-weight: 550;
            font-size: 3rem;
            line-height: 1.45;
        }
    }

    .footer {
        & main {
            .bottom {
                padding-top: 5rem;
                flex-wrap: wrap;
            }
        }
    }

    .sidemenu {
        opacity: 0;

        .close-menu-area {
            width: 30%;
        }

        .menu-area {
            width: 70%;
            padding: 5rem;

            div {
                gap: 2rem;
                padding-block: 3rem;

                a {
                    font-size: 2.8rem;
                    letter-spacing: .05em;
                    padding-left: 20px;
                }
            }
        }
    }
}




@media screen and (max-width: 650px) {
    .navbar {
        .logo a {
            font-size: 2.5vw;
        }

        aside {
            display: none;
        }

        button.mobile-menu {
            display: block;
            font-size: 3vw;
        }
    }

    .hero {

        .scroll-section {
            position: absolute;
            bottom: 20%;

            .scroll-text {
                font-size: 22vw;
            }
        }

        .role {
            bottom: -2em;
            left: 5%;
            top: auto;
            right: auto;
            transform: translateY(-60%);

            h4 {
                font-size: 6vw;
            }
        }

        .location-label {
            top: auto;
            left: auto;
            right: 0px;
            bottom: -4em;
            transform: translateY(-50%);
            background-color: transparent;

            .digital-ball {
                background-color: transparent;
            }

            p {
                display: none;
            }
        }
    }

    .sidemenu {
        opacity: 0;

        .close-menu-area {
            width: 0%;
        }

        .menu-area {
            width: 100%;
            padding: 5rem 2rem;

            div {
                padding-block: 3rem;
                width: 100%;

                a {
                    font-size: 2.8rem;
                    padding: 0px;
                    display: block;
                    width: 100%;



                    .line {
                        left: auto;
                        right: 0;
                        bottom: 50%;
                        transform: translateY(50%);
                    }
                }
            }
        }
    }

    .about {
        padding: 5rem 3rem;

        main {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            gap: 2rem;
            margin-bottom: 80px;

            p {
                font-size: 1.2em;
            }
        }
    }

    .works {
        display: none;
    }

    .mobile-works {
        display: flex;
        flex-direction: column;
        background-color: #fff;
        overflow: hidden;
        padding: 3rem 2rem;
        gap: 3.5rem;
        list-style: none;

        li {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 1.5rem;

            a {
                width: 100%;
                height: auto;

                img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }

            h3 {
                padding-bottom: 1.5rem;
                border-bottom: 3px solid var(--color-gray);
                width: 100%;
                font-size: 2.5rem;
                font-weight: 450;
            }

            p {
                padding-top: 1rem;
            }
        }
    }

    .footer {
        padding: 5rem 1.5rem 10px 1.5rem;
        min-height: max-content;
        gap: 2rem;
        overflow: hidden;

        main {
            width: 90%;

            .top {

                .lets-work {
                    font-size: 4.5rem;
                }
            }
        }
    }

    .menu-button {
        position: absolute;
        display: none;
        top: 30px;
        left: calc(100% - 30px);
        margin-right: 15px;
    }

    .menu-button.fixed {
        position: sticky;
        display: flex;
        right: 30px;
    }
}