
.stack-sans-text-<uniquifier> {
  font-family: "Stack Sans Text", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

.calistoga-regular {
  font-family: "Calistoga", serif;
  font-weight: 400;
  font-style: normal;
}


* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        

        :root {
            --bg-primary: #2A2827;
            --bg-secondary: #D6D3D2;
            --bg-card: #D6D3D2;
            --text-primary: #2A2827;
            --text-secondary: #F3F1EF;
            --border-color: #e5e7eb;
            --purple: #a855f7;
            --pink: #ec4899;
            --orange: #F7B98A;
        }

        @media (prefers-color-scheme: dark) {
            :root {
                --bg-primary: #2A2827;
                --bg-secondary: #D6D3D2;
                --bg-card: #D6D3D2;
                --text-primary: #2A2827;
                --text-secondary: #F3F1EF;
                --border-color: #2a2a2a;
            }
        }

        body {
            font-family: 'Stack Sans Text', sans-serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            overflow-x: hidden;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        .language-selection {
            position: relative;
            display: flex;
            justify-content: end;
            width: 100%;
            z-index: 2;
            padding: 1rem;
        }

        .languagepicker {
            display: inline-block;
            height: 40px;
            overflow: hidden;
            transition: all .3s ease;
            vertical-align: top;
            float: left;
            border-radius: 17px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
        }

        .languagepicker:hover {
        }

        .languagepicker a {
            color: var(--text-primary);
            background: #ffffff;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            transition: opacity 0.3s ease;
        }

        .languagepicker li {
            display: block;
            padding: 0px 15px;
            line-height: 40px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .languagepicker li:hover{
            opacity: 1;
        }

        /* Language picker styles */
       
        
        .languagepicker a:hover {
            opacity: 1;
        }
        
        .languagepicker a.active {
            background: var(--orange);
        }
        
        .languagepicker li {
            cursor: pointer;
        }

        .bottom-nav {
            position: fixed;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .bottom-nav.download-btn {
            position: fixed;
            bottom: 2rem;
            left: 50%;
            transform: translateX(130%);
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .bottom-nav.scrolled {
            bottom: 1.5rem;
        }

        .nav-container {
            display: flex;
            align-items: center;
            padding: 0.25rem 1rem;
            background: rgba(230, 230, 230, 0.8);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: 32px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @media (prefers-color-scheme: dark) {
            .nav-container {
                background: rgba(172, 168, 165, 0.4);
            }
        }

        /* Scrolled state - compact */
        .bottom-nav.scrolled .nav-container {
            padding: 0.5rem 0.75rem;
            gap: 0.35rem;
        }

        /* Expanded on hover when scrolled */
        .bottom-nav.scrolled:hover .nav-container {
            padding: 0.75rem 1rem;
            gap: 0.5rem;
        }

        /* Nav Item */
        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 0.2rem;
            padding: 0.5rem 0rem;
            border-radius: 9999px;
            background: transparent;
            border: none;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            text-decoration: none;
            color: inherit;
            min-width: 60px;
        }

        /* Primary button (tweaks) */
        .nav-item.primary {
            background: var(--bg-primary);
            color: white;
            min-width: 100px;
        }

        @media (prefers-color-scheme: dark) {
            .nav-item {
                color: white;
            }
            .nav-item.primary {
                background: var(--bg-primary);
            }
        }

        .nav-item:hover {
            transform: translateY(-2px);
        }

        .nav-item.primary:hover {
            background: #1a1a1a;
        }

        /* Icon */
        .nav-icon {
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .nav-icon.sm {
            width: 20px;
            height: 20px;

            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .nav-icon svg {
            width: 100%;
            height: 100%;
            margin: 0 auto;
        }

        /* Label */
        .nav-label {
            font-size: 0.75rem;
            font-weight: 100;
            white-space: nowrap;
            opacity: 1;
            max-height: 20px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Scrolled state - hide labels */
        .bottom-nav.scrolled .nav-label {
            opacity: 0;
            max-height: 0;
        }

        /* Show labels on hover when scrolled */
        .bottom-nav.scrolled:hover .nav-label {
            opacity: 1;
            max-height: 20px;
        }

        /* Scrolled state - smaller items */
        .bottom-nav.scrolled .nav-item {
            padding: 0.5rem;
            min-width: 40px;
            gap: 0;
        }

        .bottom-nav.scrolled .nav-item.primary {
            min-width: 50px;
        }

        /* Expand on hover when scrolled */
        .bottom-nav.scrolled:hover .nav-item {
            padding: 0.75rem 1.25rem;
            min-width: 80px;
            gap: 0.5rem;
        }

        .bottom-nav.scrolled:hover .nav-item.primary {
            min-width: 100px;
        }

        /* Scrolled state - smaller icons */
        .bottom-nav.scrolled .nav-icon {
            width: 20px;
            height: 20px;
        }

        /* Expand icons on hover when scrolled */
        .bottom-nav.scrolled:hover .nav-icon {
            width: 24px;
            height: 24px;
        }

        /* Fixed Hero Section */
        .hero {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background: var(--bg-secondary);
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 2rem;
            max-width: 900px;
            width: 100%;
        }

        /* Hero Images with Parallax */
        .hero-image-left, .hero-image-right {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
            opacity: 1;
        }

        .hero-image-right-sm-top, .hero-image-right-sm-bottom, .hero-image-left-sm-top, .hero-image-left-sm-bottom {
            position: absolute;
            width: 150px;
            height: 150px;
            border-radius: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 1;
            opacity: 1;
        }

        .hero-image-left img, .hero-image-right img, .hero-image-right-sm-top img, .hero-image-right-sm-bottom img, .hero-image-left-sm-top img, .hero-image-left-sm-bottom img {
            width: 100%;
        }

        .hero-image-left {
            left: 3%;
            top: 20%;
            transform: rotate(2deg);
        }

        .hero-image-left-sm-top{
            left: 33%;
            top: 8%;
            transform: rotate(-2deg);
        }

        .hero-image-left-sm-bottom{
            left: 10%;
            top: 66%;
            transform: rotate(-4deg);
        }

        .hero-image-right {
            right: 1%;
            bottom: 27%;
            transform: rotate(-2deg);
        }

        .hero-image-right-sm-top{
            right: 12%;
            top: 18%;
            transform: rotate(2deg);
        }

        .hero-image-right-sm-bottom{
            right: 23%;
            top: 70%;
            transform: rotate(4deg);
        }

        .hero h1 {
            font-family: "Calistoga", serif;
            font-size: clamp(2.3rem, 6vw, 3.5rem);
            font-weight: 800;
            color: var(--text-primary);
            line-height: 1.2;
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 3;
        }

        .gradient-text {
            background: linear-gradient(90deg, var(--purple), var(--pink), var(--orange));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero p {
            font-size: clamp(1.25rem, 3vw, 1rem);
            color: var(--text-primary);
            position: relative;
            z-index: 3;
            font-weight: 100;
        }

        /* Content wrapper */
        .content-wrapper {
            position: relative;
            z-index: 10;
        }

        .center-wrapper {
            display: flex;
            justify-content: center;
        }

        .hero-spacer {
            height: 100vh;
            position: relative;
            z-index: 1;
        }

        /* Mission Section with Scale Effect */
        .mission {
            position: relative;
            z-index: 10;
            background: var(--bg-primary);
            margin-top: -2rem;
            transform-origin: center top;
            will-change: transform;
        }

        .mission-inner {
            margin: 0 auto;
        }

        .card {
            background: var(--bg-primary);
            padding: 3rem 3rem 7rem 3rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .card h2 {
            font-family: "Calistoga", serif;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            margin-bottom: 2rem;
        }

        .card .char {
            font-size: clamp(1.125rem, 2vw, 1.5rem);
            line-height: 1.8;
            color: var(--text-secondary);
        }

        .card-image {
            width: 300px;
        }

        .card-image img {
            width: 100%;
        }

        .btn {
            display: flex;
            flex-direction: row;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            margin-top: 2rem;
            background: var(--orange);
            color: var(--bg-primary);
            border: none;
            border-radius: 24px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: opacity 0.3s;
        }

        .btn:hover {
            opacity: 0.9;
        }

        .btn-text-two-lines {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 4px;
         }   

         .btn-text-two-lines span {
             font-weight: 100;
            font-size: 11px;
         }

         span.btn-text-bold {
            font-weight: 600;
            font-size: 16px;
         }

        /* Clients Section */
        .clients {
            padding: 6rem 2rem;
            background: var(--bg-primary);
            overflow: hidden;
            position: relative;
            z-index: 10;
        }

        .clients h3 {
            font-family: "Calistoga", serif;
            font-size: 2rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 3rem;
        }

        .marquee {
            display: flex;
            gap: 3rem;
            white-space: nowrap;
        }

        .client-item {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 1rem 2rem;
            background: var(--bg-card);
            border-radius: 0.5rem;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--border-color);
            min-width: 192px;
        }

        .client-item span {
            font-size: 1.25rem;
            font-weight: 600;
        }

        /* App UI */
        .app-ui {
            padding: 6rem 2rem;
            background: var(--bg-secondary);
            position: relative;
            z-index: 10;
        }

        .app-ui-header {
            text-align: center;
        }

        .app-ui-header h2 {
            font-family: "Calistoga", serif;
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .app-ui-header p {
            font-size: 1.5rem;
            color: var(--text-secondary);
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .project-card {
            background: var(--bg-card);
            border-radius: 1rem;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--border-color);
            cursor: pointer;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .project-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .project-image {
            height: 256px;
            position: relative;
            overflow: hidden;
        }

        .project-image::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.2);
            transition: background 0.3s;
        }

        .project-card:hover .project-image::before {
            background: rgba(0, 0, 0, 0.1);
        }

        .project-letter {
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 6rem;
            font-weight: 800;
            color: white;
            opacity: 0.2;
        }

        .project-content {
            padding: 1.5rem;
        }

        .project-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }

        .tag {
            padding: 0.25rem 0.75rem;
            background: var(--bg-secondary);
            border-radius: 9999px;
            font-size: 0.875rem;
        }

        .project-content h3 {
            font-family: "Calistoga", serif;
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
        }

        .project-content p {
            color: var(--text-secondary);
        }

        /* Casquettes Section */
        .casquettes {
            padding: 6rem 2rem;
            background: var(--bg-primary);
            position: relative;
            z-index: 10;
        }

        .casquettes-container {
            display: flex;
            justify-content: space-between;
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .casquettes-left {
            width: 100%;
            position: sticky;
            top: 2rem;
            height: fit-content;
        }

        .casquettes-left .emoji {
            font-size: 4rem;
            margin-bottom: 1.5rem;
        }

        .casquettes-left h2 {
            font-family: "Calistoga", serif;
            color: var(--text-secondary);
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
        }

        .casquettes-left p {
            font-size: 1.25rem;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        .casquettes-right {
            width: 40%;
        }

        .casquettes-right h3 {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 2rem;
        }

        .casquettes-list {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .casquette-item {
            padding: 1.5rem;
            background: #2f2c2b;
            border-radius: 2rem;
            box-shadow: 0 9px 30px -15px rgba(0, 0, 0, 0.1);
        }

        .casquette-item p {
            color: var(--text-secondary);
            font-size: 1.125rem;
            font-weight: 100;
        }

        .logo-text {
                width: 10%;
                margin-bottom: 1rem;
            }

            .logo-text img {
                width: 100%;
            }

        /* Testimonials */
        .testimonials {
            padding: 6rem 2rem;
            background: var(--bg-secondary);
            position: relative;
            z-index: 10;
        }

        .testimonials h2 {
            font-family: "Calistoga", serif;
            font-size: 2.5rem;
            font-weight: 800;
            text-align: center;
            margin-bottom: 4rem;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: var(--bg-card);
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            border: 1px solid var(--border-color);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .testimonial-card:hover {
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
        }

        .quote-mark {
            font-size: 3rem;
            color: var(--purple);
            margin-bottom: 1rem;
        }

        .testimonial-card p {
            font-size: 1.125rem;
            line-height: 1.8;
            font-style: italic;
            margin-bottom: 1.5rem;
        }

        .testimonial-author {
            border-top: 1px solid var(--border-color);
            padding-top: 1rem;
        }

        .testimonial-author .name {
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        .testimonial-author .position {
            font-size: 0.875rem;
            color: var(--text-secondary);
        }

        /* CTA Section */
        .cta {
            padding: 8rem 2rem;
            position: relative;
            overflow: hidden;
            background: var(--bg-primary);
            z-index: 10;
        }

        .cta-bg {
            position: absolute;
            inset: 0;
            
            z-index: 0;
        }

        .cta-content {
            position: relative;
            background: var(--bg-secondary);
            z-index: 1;
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
            padding: 3rem;
            border-radius: 82px;
        }

        .cta .emoji img {
            width: 10%;
        }

        .cta h2 {
            font-family: "Calistoga", serif;
            text-align: left;
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .cta p {
            text-align: left;
            font-size: 1.5rem;
            color: var(--text-primary);
            width: 70%;
        }

        .cta-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
        }

        .get-it {
            position: absolute;
            width: 500px;
            right: -2%;
            bottom: -1%;
            z-index: 2;
        }

        .get-it img {
            width: 100%;
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem 2rem;
            background: var(--bg-card);
            color: var(--text-primary);
            border: 2px solid var(--purple);
            border-radius: 9999px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: background 0.3s;
        }

        .btn-outline:hover {
            background: var(--bg-secondary);
        }

        /* Footer */
        footer {
            background: var(--bg-secondary);
            padding: 4rem 2rem 6rem 2rem;
            position: relative;
            z-index: 10;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            max-width: 1400px;
            margin: 0 auto 3rem;
        }

        .footer-col h3, .footer-col h4 {
            font-size: 1.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }

        .footer-col h4 {
            font-size: 1.125rem;
        }

        .footer-col p {
            color: var(--text-secondary);
            margin-bottom: 1rem;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
        }

        .social-icon {
            width: 24px;
            height: 24px;
            cursor: pointer;
            transition: color 0.3s;
        }

        .social-icon:hover {
            color: var(--purple);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
            color: var(--text-secondary);
            cursor: pointer;
            transition: color 0.3s;
        }

        .footer-links li:hover {
            color: var(--text-primary);
        }

        .footer-bottom {
            padding-top: 2rem;
            text-align: center;
            color: var(--text-primary);
            font-size: 0.875rem;
            font-weight: 100;
        }

        .footer-link {
            display: inline-block;
            margin-top: 0.5rem;
            color: var(--text-primary);
            opacity: 0.5;
            text-decoration: none;
            font-size: 0.8rem;
            transition: opacity 0.3s;
        }

        .footer-link:hover {
            opacity: 1;
        }

        @media (max-width: 1024px) {
            .hero-image-left, .hero-image-right {
                width: 200px;
                height: 300px;
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .hero-image-left, .hero-image-right {
                display: none;
            }

            .casquettes-container {
                grid-template-columns: 1fr;
            }

            .casquettes-left {
                position: relative;
                top: 0;
            }
        }

        /* Blur Text Styles */
        .mission_text {
            max-width: 1000px;
            min-width: 300px;
            line-height: 1.2;
            color: var(--text-secondary);
            font-size: clamp(1.5rem, 5vw, 2rem);
            line-height: 1.6;
            margin: 0 auto;
            word-break: keep-all;
        }
        
        .content__number {
            font-size: 13px;
            text-transform: uppercase;
            opacity: 0.5;
            margin-bottom: 1rem;
            display: block;
        }

/* ==================== LOADING SCREEN ==================== */

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--text-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
    max-width: 400px;
    width: 90%;
}

.loading-logo {
    margin-bottom: 3rem;
    animation: floatAnimation 3s ease-in-out infinite;
}

.loading-image {
    width: 450px;
    height: auto;
}

/* Loading Bar Container */
.loading-bar-container {
    margin-top: 2rem;
}

.loading-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.loading-bar-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #fff 0%, #f0f0f0 100%);
    border-radius: 10px;
    transition: width 0.1s ease-out;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.loading-percentage {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    font-family: 'Stack Sans Headline', sans-serif;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.pp {
    max-width: 1000px;
    min-width: 300px;
    display: flex;
    margin: 0 auto;
    padding: 3rem;
    background-color: var(--bg-secondary);
}

.pp p {
    color: var(--text-primary);
}

/* Pulse animation for percentage */
@keyframes pulseText {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.loading-percentage.pulse {
    animation: pulseText 0.5s ease;
}

/* Alternative: Spinning loader design */
.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 2rem auto 1rem;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Main content fade in */
.main-content {
    transition: opacity 1s ease;
}

.main-content.visible {
    opacity: 1 !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .loading-image {
        width: 80px;
    }
    
    .loading-percentage {
        font-size: 1.5rem;
    }
    
    .loading-bar {
        height: 4px;
    }
}

@media (max-width: 560px) {

            .loading-image {
                width: 300px;
            }

            .bottom-nav.scrolled .nav-container {
                padding: 0.5rem 0.3rem;
                gap: 0.2rem;
            }

            .bottom-nav {
                transform: translateX(-85%);
            }

            .bottom-nav.download-btn {
                transform: translateX(40%);
            }

            .hero-image-left-sm-top {
                width: 100px;
                height: 100px;
                left: 12%;
            }

            .hero-image-right-sm-top {
                width: 100px;
                height: 100px;
                right: 12%;
                top: 12%;
            }

            .hero-image-left-sm-bottom {
                width: 100px;
                height: 100px;
                left: 14%;
                top: 72%;
            }

            .hero-image-right-sm-bottom {
                width: 100px;
                height: 100px;
                right: 18%;
                top: 74%;
            }

            .card {
                padding: 3rem 2rem 7rem 2rem;
            }

            .app-ui {
                padding: 6rem 1rem;
            }

            .casquettes {
                padding: 6rem 2rem 0rem 2rem;
            }

            .casquettes-container {
                gap: 0rem;
                flex-direction: column;
            }

            .casquettes-right {
                width: 100%;
            }

            .logo-text {
                width: 30%;
                margin-bottom: 2rem;
            }

            .logo-text img {
                width: 100%;
            }

            .cta {
                padding: 8rem 1rem 11rem 1rem;
            }

            .cta-content {
                padding: 1rem;
                border-radius: 42px;
            }

            .cta-content .cta-buttons {
                justify-content: flex-start;
            }

            .cta .emoji img {
                width: 30%;
            }


            .cta p {
                width: 100%;
                margin-bottom: 0rem;
            }

            .get-it {
                right: 0;
                left: 60%;
            }

            .get-it img {
                width: 47%;
            }
        }
