@font-face {
    font-family: 'Amiri';
    src: url('fonts/Amiri-Italic.woff2') format('woff2'),
         url('fonts/Amiri-Italic.ttf') format('truetype');
    font-style: italic;
    font-weight: 400;
}

@font-face {
    font-family: 'Lato';
    src: url('fonts/Lato-Bold.woff2') format('woff2'),
         url('fonts/Lato-Bold.ttf') format('truetype');
    font-style: normal;
    font-weight: 700;
}

:root {
    --bg-color: #000000;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a5;
    --accent: #ffffff; 
    
    --font-heading: 'Lato', sans-serif;
    --font-body: 'Lato', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
    overscroll-behavior: none;
}

/* Lenis smooth scroll */
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

/* Cinematic Noise Overlay */
.noise {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Glass Navigation */
.glass-nav {
    position: fixed;
    top: 2rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 1366px;
    /* max-width: 1100px; */
    /* padding: 0.5rem 0.5rem 0.5rem 2.5rem; */
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background: #ffffff; */
    border-radius: 50px;
    z-index: 1000;
    opacity: 0; /* Animated in via JS */
    transform: translateY(-150%);
    /* box-shadow: 0 10px 40px rgba(0,0,0,0.15); */
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    color: #000000;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #ffb6c1;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Video Sequence Canvas */
#video-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -100;
    pointer-events: none;
    opacity: 0;
}

/* The Drop */
.drop-container {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: 50;
    display: flex;
    justify-content: center;
    align-items: center;
}

.drop {
    width: 20px;
    height: 20px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 20px 5px rgba(255,255,255,0.5);
    will-change: transform, background, box-shadow, width, height;
}

/* Typography */
h1 {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 6rem);
    font-weight: 600;
    line-height: 61px;
    letter-spacing: normal; /* Adjusted for mixed typography */
    margin-bottom: 1.5rem;
}

h1 .italic-serif {
    font-family: 'Amiri', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 77px;
    /* line-height: 2px; */
}

h1 .bold-sans {
    font-family: 'Lato', sans-serif;
    font-weight: 600;
    font-size: 66px;
}

p {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-primary);
    opacity: 0.9;
    max-width: 600px;
    margin-bottom: 2rem;
    letter-spacing: 0.02em;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 0.05em;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.btn-group {
    display: flex;
    gap: 1rem;
    width: 350px;
}

.btn:hover {
    background: rgba(255,255,255,0.2);
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.btn-outline {
    background: transparent;
}

/* SplitText styles */
.line { overflow: hidden; padding-bottom: 0.1em; }
.word { display: inline-block; will-change: transform, opacity, filter; }
.char { display: inline-block; will-change: transform, opacity, filter; }

/* Scenes */
.scroll-container {
    position: relative;
    z-index: 10;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.marquee-text {
    position: absolute;
    top: 50%;
    left: 100vw; /* Start offscreen right */
    transform: translateY(-50%);
    font-size: 20vw;
    font-family: var(--font-heading);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03); /* very faint */
    white-space: nowrap;
    z-index: 1; /* Behind text */
    pointer-events: none;
}

.scene {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10vw;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    z-index: 20;
}

.scene.scene-1 {
    opacity: 1;
    visibility: visible;
}

.scene-8 {
    background: linear-gradient(to bottom, transparent, #000 90%);
    justify-content: center;
    padding-left: 0;
}

.content {
    position: relative;
    z-index: 20;
    max-width: 800px;
}

.text-center {
    text-align: center;
    margin: 0 auto;
}

/* Nav Additions */
.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

.nav-actions {
    display: flex;
    align-items: center;
}

.action-pill {
    display: flex;
    align-items: center;
    /* background: #ffffff; */
    /* border-radius: 30px; */
    /* padding: 0.25rem 0.25rem 0.25rem 1rem; */
    /* Removed box-shadow since parent is now white */
}

.contact-link {
    color: #000;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.arrow-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #ffb6c1; /* pink circle */
    border-radius: 50%;
    color: #000;
}

.pill-divider {
    width: 1px;
    height: 20px;
    background: #e0e0e0;
    margin: 0 0.5rem;
}

.menu-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #000;
}

/* Mega Menu */
.mega-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #f4f4f4;
    z-index: 990; /* Just below glass-nav which is 1000 */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    clip-path: inset(0 0 100% 0);
    transition: all 0.7s cubic-bezier(0.77, 0, 0.175, 1);
}

.mega-menu.active {
    opacity: 1;
    pointer-events: all;
    clip-path: inset(0 0 0% 0);
}

.mega-menu-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    width: 85%;
    max-width: 1400px;
    height: 70vh;
    gap: 4rem;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.5s ease 0.3s;
}

.mega-menu.active .mega-menu-inner {
    transform: translateY(0);
    opacity: 1;
}

.mega-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.2rem;
}

.mega-col a {
    color: #333;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.mega-col.main-links a {
    font-size: 1.8rem;
    color: #999;
}

.mega-col.main-links a:hover,
.mega-col.main-links a.italic-link {
    color: #000;
}

.italic-link {
    font-family: 'Amiri', serif;
    font-style: italic;
    font-size: 2.2rem !important;
}

.mega-col.sub-links {
    gap: 0.5rem;
}

.mega-col.sub-links a {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    border-radius: 6px;
    color: #666;
    transition: all 0.3s ease;
}

.mega-col.sub-links a:hover,
.mega-col.sub-links a.active {
    background: #e8e8e8;
    color: #000;
    font-weight: 500;
}

.visual {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
}

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

/* Toggle link colors when mega menu is open - no longer needed since nav is always white */
.glass-nav.menu-open {
    box-shadow: none;
}

/* Scene 8 typography update */
.heading-8 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 55px;
    margin-bottom: 1.5rem;
    text-transform: none;
    letter-spacing: normal;
}

.final-desc {
    max-width: 700px;
    margin: 0 auto 3rem auto;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #cccccc;
    font-weight: 300;
    letter-spacing: normal !important; /* override gsap */
}

.btn-wrap {
    display: flex;
    justify-content: center;
}

.contact-btn-final {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    border: 1px solid #ffffff;
    border-radius: 40px;
    padding: 0.8rem 1.5rem 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    text-transform: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.contact-btn-final:hover {
    background: #ffffff;
    color: #000000;
}

.contact-btn-final:hover .arrow-circle-white {
    background: #000000;
    color: #ffffff;
}

.arrow-circle-white {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: #ffffff;
    color: #000000;
    border-radius: 50%;
    font-size: 1.2rem;
    line-height: 1;
    transition: all 0.3s ease;
}

/* ========================================
   PREMIUM FOOTER — RITVER
   ======================================== */

.site-footer {
    position: relative;
    z-index: 50;
    background: #000000;
    /* padding: clamp(50px, 7vw, 90px) 2rem 0; */
    color: #ffffff;
    font-family: 'Lato', sans-serif;
}

#wrap {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    border-top: 1px solid #cccccc1c;
}

#balls-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    filter: blur(20px);
    pointer-events: none;
    z-index: 0;
}

#balls-layer .ball {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: floatUp 1.2s ease-out forwards;
    mix-blend-mode: screen;
}

@keyframes floatUp {
    0% {
        transform: scale(0.2);
        opacity: 0.3;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding-bottom: 2rem;
    position: relative;
    z-index: 1;
}

/* Three-Column Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Headings */
.footer-heading {
    font-family: 'Playfair Display';
    font-size: 18px;
    letter-spacing: 0;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Link Grid â€“ two columns */
.footer-links-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 2rem;
}

.footer-link-col {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-col li {
    margin-bottom: 6px;
}

.footer-link-col a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: clamp(0.78rem, 0.85vw, 0.88rem);
    font-weight: 300;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    font-family: lato !important;
}

.footer-link-col a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #ffffff;
    transition: width 0.3s ease;
}

.footer-link-col a:hover {
    color: #ffffff;
}

.footer-link-col a:hover::after {
    width: 100%;
}

/* Center â€“ Brand */
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 0.5rem;
}

.footer-brand-logo {
    max-width: 170px;
    width: 100%;
    height: auto;
    margin-bottom: 1.5rem;
}

/* Tricolor Line */
.tricolor-line {
    display: flex;
    width: 56px;
    height: 3px;
    gap: 4px;
    border-radius: 2px;
    overflow: hidden;
}

.tricolor-line span {
    flex: 1;
    height: 100%;
}

.tricolor-green  { background: #00cc44; }
.tricolor-white  { background: #ffffff; }
.tricolor-red    { background: #ff2020; }

/* Divider */
.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 3.5rem auto 2rem;
    max-width: 100%;
}

/* Bottom Bar */
.footer-bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    flex-wrap: wrap;
    gap: 1.5rem;
}

/* Social Icons */
.footer-socials {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.social-icon svg {
    width: 15px;
    height: 15px;
}

/* Copyright */
.footer-copyright p {
    font-size: 13px;
    color: rgb(255 255 255 / 60%);
    margin: 0;
    font-weight: 300;
    letter-spacing: 0.02em;
    max-width: none;
}

/* Legal Links */
.footer-legal {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.footer-legal a {
    text-decoration: none;
    font-size: 13px;
    font-weight: 300;
    transition: color 0.3s ease;
    letter-spacing: 0.02em;
    color: rgb(255 255 255 / 60%);
}

.footer-legal a:hover {
    color: #ffffff;
}

@media (max-width: 1024px) {
    .glass-nav {
        width: 90%;
        top: 1rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .top-header {
        height: 100vh !important;
    }
    
    .top-header h1 {
        font-size: clamp(2.2rem, 5vw, 3.5rem) !important;
        padding: 0 1rem;
    }
    
    .top-header p {
        font-size: 1rem !important;
        padding: 0 1.5rem;
    }
    
    .banner-content {
        max-width: 90% !important;
        padding: 0 1rem !important;
    }
    
    h1 {
        font-size: clamp(2.5rem, 6vw, 4rem);
    }
    
    h1 .italic-serif {
        font-size: 60px;
    }
    
    h1 .bold-sans {
        font-size: 50px;
    }
    
    .content {
        padding: 0 2rem;
    }
    
    .footer-grid {
        gap: 2rem;
    }
    
    .footer-brand-logo {
        max-width: 150px;
    }
}

@media (max-width: 768px) {
    .top-header {
        height: 100vh !important;
    }
    
    .top-header h1 {
        font-size: clamp(1.8rem, 7vw, 2.5rem) !important;
        padding: 0 1rem;
    }
    
    .top-header p {
        font-size: 0.9rem !important;
        padding: 0 1.5rem;
    }
    
    .banner-content {
        max-width: 95% !important;
    }
    
    .glass-nav {
        width: 95%;
        top: 0.8rem;
        border-radius: 30px;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .mega-menu-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        height: auto;
        padding: 2rem 0;
    }
    
    .mega-col.visual {
        display: none;
    }
    
    .mega-col.main-links a {
        font-size: 1.3rem;
    }
    
    .italic-link {
        font-size: 1.6rem !important;
    }
    
    .mega-col.sub-links a {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    h1 {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.2;
    }
    
    h1 .italic-serif {
        font-size: 36px;
    }
    
    h1 .bold-sans {
        font-size: 32px;
    }
    
    p {
        font-size: 1rem;
        max-width: 90%;
    }
    
    .scene {
        padding-left: 6vw;
        justify-content: center;
        align-items: center;
    }
    
    .content {
        padding: 0 1.5rem;
        max-width: 100%;
    }
    
    .heading-8 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        line-height: 1.3;
    }
    
    .final-desc {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .marquee-text {
        font-size: 30vw;
    }
    
    .drop {
        width: 14px;
        height: 14px;
    }
    
    .site-footer {
        padding: 45px 1.5rem 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-links-grid {
        text-align: left;
        max-width: 380px;
        margin: 0 auto;
    }
    
    .footer-catalogs .footer-links-grid {
        text-align: left;
    }
    
    .footer-brand {
        order: -1;
        padding: 0;
    }
    
    .footer-brand-logo {
        max-width: 140px;
    }
    
    .footer-heading {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-socials {
        justify-content: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
    
    .footer-divider {
        margin: 2rem auto 1.5rem;
    }
    
    .btn-11 {
        padding: 10px 16px;
        font-size: 0.85rem;
        width: auto;
        min-width: 160px;
    }
    
    .btn-group {
        flex-direction: column;
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 600px) {
    .mega-col.sub-links {
    display: none;
}
    .top-header h1 {
        font-size: clamp(1.5rem, 8vw, 2rem) !important;
        line-height: 1.3 !important;
    }
    
    .top-header p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
    }
    
    .glass-nav {
        width: 92%;
        top: 0.5rem;
        border-radius: 25px;
    }
    
    .logo-img {
       height: 50px;
    }

    .btn-group a.btn-11 {
    margin: 0;
}
    
    .menu-toggle {
        width: 32px;
        height: 32px;
    }
    
    h1 {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
        line-height: 1.15;
        margin-bottom: 1rem;
    }
    
    h1 .italic-serif {
        font-size: 28px;
    }
    
    h1 .bold-sans {
        font-size: 24px;
    }
    
    p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .scene {
        padding-left: 4vw;
    }
    
    .heading-8 {
        font-size: clamp(1.5rem, 7vw, 2rem);
        line-height: 1.3;
    }
    
    .final-desc {
        font-size: 0.85rem;
    }
    
    .btn-wrap {
        justify-content: center;
    }
    
    a.btn-11.clssa {
        width: 140px;
        font-size: 0.8rem;
    }
    
    .footer-grid {
        gap: 2rem;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
        max-width: 100%;
    }
    
    .footer-links-grid .footer-link-col {
        text-align: center;
    }
    
    .footer-brand-logo {
        max-width: 120px;
    }
    
    .footer-link-col a {
        font-size: 0.85rem;
    }
    
    .footer-bottom-bar {
        padding: 1rem 0;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.4rem;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
    }
    
    .social-icon svg {
        width: 14px;
        height: 14px;
    }
    
    .btn-11::before,
    .btn-11::after {
        width: 15px;
        height: 15px;
    }
    
    .btn-11:hover::before,
    .btn-11:hover::after {
        width: 300px;
        height: 300px;
    }
}


/* Video Sequence Canvas */
#video-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1;
    pointer-events: none;
    opacity: 1;
}

/* Hide Unicorn Studio watermark and white dot loader */
[data-us-project] a,
[data-us-project] svg,
.unicorn-badge,
#unicorn-badge {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

[data-us-project] > div:not(canvas) {
    display: none !important;
}

[data-us-project] {
    width: 100% !important;
    height: 100% !important;
}

[data-us-project] canvas {
    width: 100% !important;
    height: 100% !important;
}
.menu-toggle svg.hamburger {
    height: 100%;
    width: 100%;
}


.btn-11 {
  position: relative;
  display: table-cell;
  width: 100%;
  margin: 1rem auto;
  padding: 13px 20px;
  color: #ffffff;
  text-transform: uppercase;
  border: 1px solid currentColor;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  border-radius: 100em;
  overflow: hidden;
  transition: color 0.4s ease;
  text-align: center;
}

.btn-11::before,
.btn-11::after {
  position: absolute;
  top: 50%;
  content: "";
  width: 20px;
  height: 20px;
  background-color: #ffffff;
  border-radius: 50%;
  z-index: -1;
}

.btn-11::before {
  left: -20px;
  transform: translate(-50%, -50%);
}

.btn-11::after {
  right: -20px;
  transform: translate(50%, -50%);
}

.btn-11:hover {
  color: #000000;
  border: 1px solid #ffffff;
  transition-delay: 0.6s;
}

.btn-11:not(:hover) {
  transition-delay: 0s;
}

.btn-11:hover::before {
  animation: criss-cross-left 0.8s both;
  animation-direction: alternate;
}

.btn-11:hover::after {
  animation: criss-cross-right 0.8s both;
  animation-direction: alternate;
}

@keyframes criss-cross-left {
  0% { left: -20px; }
  50% { left: 50%; width: 20px; height: 20px; }
  100% { left: 50%; width: 375px; height: 375px; }
}

@keyframes criss-cross-right {
  0% { right: -20px; }
  50% { right: 50%; width: 20px; height: 20px; }
  100% { right: 50%; width: 375px; height: 375px; }
}

a.btn-11.clssa {
    width: 170px;
}


header.top-header {
    height: 100vh !important;
}

header.top-header canvas {
    object-fit: none !important;
}