


/* === UTILITY CLASSES === */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.desktop-only {
    display: none;
}

.mobile-only {
    display: block;
}

/* === MAIN LAYOUT === */
.text-center.stack {
    position: relative;
    z-index: 1;
    background: transparent;
      margin:0;
    gap:0;
}



.head {
    min-height: 80vh;
   max-height: 80vh;
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: stretch;
      margin:0;

}
#right-side-head, #left-side-head{
    display: flex;
    flex-direction: column;
}
#right-side-head {
            width: 50%!important;
            background: transparent;
            padding: clamp(3rem, 8vw, 6rem) clamp(2rem, 5vw, 4rem);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
        }
@media (max-width: 768px){
    #right-side-head {
            width: 100%!important;
            background: transparent;
            padding: clamp(3rem, 8vw, 6rem) clamp(2rem, 5vw, 4rem);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
        margin-top:3rem!important;
        }
}


.hero-badge {
            display: inline-block;
            background: rgba(99, 102, 241, 0.1);
            color: #6466F1;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.875rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
        }

        .hero-title {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 900;
            line-height: 1.1;
            color: #1f2937;
            margin-bottom: 1.5rem;
            letter-spacing: -0.02em;
        }

        .hero-description {
            font-size: clamp(1rem, 2vw, 1.25rem);
            line-height: 1.7;
            color: #6b7280;
            margin-bottom: 2.5rem;
            font-weight: 400;
        }

        .hero-buttons {
            display: flex;
            align-items: center;
            gap: 2rem;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: #6466F1;
            color: white;
            padding: 1rem 2rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;

        }

        .btn-primary:hover {
            background: #4f46e5;
            transform: translateY(-2px);

        }

        .btn-secondary {
            color: #6466F1;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            position: relative;
        }

        .btn-secondary:hover {
            color: #4f46e5;
            transform: translateX(4px);
        }

        .btn-secondary::after {
            content: '→';
            font-size: 1.2rem;
            transition: transform 0.3s ease;
        }

        .btn-secondary:hover::after {
            transform: translateX(4px);
        }
#left-side-head{
    width:50%;
    background-color: #6466F1;

}

   .hero-accent {
        width: 10px;
        height: 200px;
        background: linear-gradient(180deg,white 0%, rgba(99, 102, 241, 0.1) 100%);
        margin-top: 4.5rem;
        margin-left: 40px!important;
        border-radius: 20px;

    }


#left-side-head-grid {
   display: grid;
    grid-template-columns: auto 1fr;  /* Only 2 columns */
    gap: 1rem;
    align-items: start;
    margin-top: 3.5rem;


}




.background-banner {
            background: rgba(224, 231, 255, 0.78);
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: clamp(3rem, 6vw, 5rem);
        }

        .banner-content {
            text-align: center;
            min-width: 100%;
        }

        .banner-stats {
            min-width: 100%;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 2fr));
            gap: 7rem;
            margin-top: 3rem;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            color: #6366f1;
            display: block;
            font-family: 'Bebas Neue', sans-serif;
        }

        .stat-label {
            font-size: 1rem;
            color: #6b7280;
            font-weight: 500;
            margin-top: 0.5rem;
        }



/* === BUTTON STYLES === */
.rounded-button-jl {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: black;
    border: 2px solid black;
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-decoration: none;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.rounded-button-jl:hover,
.rounded-button-jl:active {
    background-color: black;
    color: white !important;
    transform: translateY(-2px);
}

.rounded-button-jl:hover svg,
.rounded-button-jl:active svg {
    fill: white;
}

.rounded-button-jl:focus {
    outline: 2px solid #007bff;
    outline-offset: 2px;
}


/* === ENHANCED PROJECT BUTTON STYLES === */

/* Container for the project button - ensure it stays fixed */
.project-button-container {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    z-index: 10000 !important;
    pointer-events: auto !important;
    /* Ensure it doesn't get moved by smooth scroll */
    transform: none !important;
    will-change: auto !important;
}

/* The actual button */
.project-button {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(16px, 2.2vw, 20px);
    color: white;
    border: 2px solid black;
    border-radius: 50px;
    padding: clamp(1px, 0.2vw, 4px) clamp(16px, 2.5vw, 20px);
    display: inline-flex;
    align-items: center;
    gap: clamp(8px, 1vw, 12px);
    cursor: pointer;
    background: black;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    will-change: transform, background-color, border-color;
    user-select: none;
    height: auto;
    min-height: 40px;
    position: relative;
    z-index: inherit;
}

.project-button:hover {
    background-color: black;
    color: white !important;
    transform: translateY(-2px);
    text-decoration: none;
}

.project-button:hover span {
    text-decoration: underline;
}

.project-button.transparent {
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}

/* Default state */
.project-button {
    color: white;
    background: black;
    border: 2px solid black;
}

/* For dark backgrounds */
.project-button.inverted {
    color: black !important;
    background: white !important;
    border: 2px solid white !important;
}

.project-button.inverted:hover {
    background-color: black !important;
    color: white !important;
    border-color: white !important;
}

/* Other button styles for consistency */

/* === SERVICES GRID MOBILE === */
.services-grid-mobile {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 2rem 1rem;
    margin-bottom: 3rem;
}

.service-card-mobile {
    background: white;
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-mobile:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
    color: #9333EA;
}

.service-card-mobile h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.75rem;
    margin: 0 0 0.75rem 0;
    color: #333;
}

.service-card-mobile p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    color: #666;
    margin: 0 0 1.25rem 0;
}

.service-link-mobile {
    color: #9333EA;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: gap 0.3s ease;
}

.service-link-mobile:active {
    gap: 0.5rem;
}

/* === SERVICES SECTION TITLE === */

.services-section {
    position: relative;
    margin-top: 5rem;
    padding: 0 clamp(2%, 5%, 5%);
}
.jl-text, .studios-text {
  font-family: 'inter';
    font-size: clamp(4rem, 12vw, 12rem);
    font-weight: 500;
    margin: 0;
    color: black;

}
#unsereprojekte{
    margin-left:3.5%!important;
    margin-bottom:5rem;
}

.jl-text.projekt{
    text-align:right;
    padding: 0 clamp(5%, 15%, 20%);
}

.studios-text {
    line-height: 1!important;

}


.rotating-arrow {
    position: absolute;
    display: none; /* Hidden on mobile */
    right: 25%;
    top: 67%;
    transform: translateY(-50%) rotate(180deg);
    width: clamp(80px, 10vw, 140px);
    height: clamp(80px, 10vw, 140px);
    transition: transform 0.3s ease;
    z-index: 10;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    margin-top: 1rem;
}

.rotating-arrow svg {
    width: 100%;
    height: 100%;
}

   #cardvideo {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(10, 1fr);
    gap: clamp(-3rem, 10rem, 15rem);
    justify-self: center;
    margin:0 auto;
    margin-top:-20rem;
}


#service-showcase-card-1{
    grid-row: span 4 / span 4;
    grid-column-start: 2;
    grid-row-start: 2;
}

#service-showcase-card-2 {
     grid-row: span 4 / span 4;
    grid-column-start: 2;
    grid-row-start: 6;
}

#service-showcase-card-3 {
   grid-row: span 4 / span 4;
    grid-column-start: 1;
    grid-row-start: 4;
}


/* === SERVICES SHOWCASE MOBILE === */
.services-showcase-mobile {
    padding: 2rem 0;
    width: clamp(95%, 80%,80%);

}
@media (max-width: 786px) {

.services-showcase-mobile {
    padding: 2rem 0;
    width:100%;
}
    .desktop-only{
        display: none!important;
    }

}




.service-showcase-card {
    background: white;
    border-radius: 1rem;
    overflow: hidden;
    margin: 0 1rem 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.showcase-video-container {
    width: 100%;
    height: 40vh;
    position: relative;
    overflow: hidden;
    background: #f5f5f5;
}

.showcase-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-content {
    padding: 2rem 1.5rem;
}

.showcase-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    line-height: 1.1;
    margin: 0 0 1rem 0;
    letter-spacing: 1px;
}

.showcase-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.showcase-tag {
    font-size: 0.875rem;
    padding: 0.375rem 0.875rem;
    border: 1px solid rgba(128, 128, 128, 0.3);
    border-radius: 50px;
    color: #666;
    background: rgba(0, 0, 0, 0.02);
}

.showcase-content p {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #333;
    margin: 0 0 1.5rem 0;
}

.showcase-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: black;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: gap 0.3s ease;
}

.showcase-cta:active {
    gap: 0.75rem;
}

.showcase-cta svg {
    width: 1.25rem;
    height: 1.25rem;
}

.right-column p {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 400;
}

.right-column .rounded-button-jl {
    align-self: center;
    margin-top: 1rem;
    padding: .1rem 1rem!important;


}

/* === ABOUT US SECTION === */
.about_us {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(3rem, 12vw, 5rem);
    font-weight: 900;
    margin: 0;
    color: white;
}

#about_us_2 {
    margin-top: -2rem;
    margin-left: 10%;
}

/* === HIGHLIGHT STYLES === */
.natgeo-highlight {
    color: black;
    text-decoration: none;
    background-position-y: 0%;
    background-image: linear-gradient(rgba(255, 255, 255, 0) 50%, #FFD700 50%);
    transition: background 500ms ease;
    background-size: auto 175%;
    font-weight: inherit;
    cursor: pointer;
    display: inline;
}

.natgeo-highlight:active {
    background-position-y: 100%;
}

.natgeo-purple {
    background-image: linear-gradient(rgba(255, 255, 255, 0) 50%, #d285d2 50%);
}





/* === DESKTOP BREAKPOINT (992px+) === */
@media (min-width: 992px) {
    .desktop-only {
        display: block;
    }
        /* Content section desktop */
    .content-section {
        flex-direction: column;
        align-items: flex-start;
        max-width: 100%;
        padding: clamp(2rem, 5vw, 4rem) clamp(2%, 5%, 5%);
    }

    .mobile-only {
        display: none;
    }


    .rounded-button-jl {
        font-size: clamp(1.25rem, 2.5vw, 1.75rem);
        padding: clamp(0.5rem, 1.5vw, 0.75rem) clamp(1rem, 3vw, 1.5rem);
        gap: clamp(0.5rem, 1.5vw, 1rem);
    }

    /* === SERVICES GRID === */
    .parent {
        display: grid;
        grid-template-columns: repeat(10, 1fr);
        grid-template-rows: repeat(12, 1fr);
        gap: clamp(0.5rem, 2vw, 0.875rem);
        min-height: 85vh;
        margin: 0 clamp(2%, 3%, 3%);
        margin-top: clamp(-5rem, -10rem, -10rem);
    }

    .parent div {
        border-radius: 0px;
        position: relative;
        contain: layout style paint;
        min-height: 150px;
    }

    .service-grid-title {
        margin-left: 0.5rem;
        color: white;
    }

    /* Grid positioning - preserved from original */
    .div1 {
        grid-column: span 3 / span 3;
        grid-row: span 9 / span 9;
        grid-column-start: 1;
        grid-row-start: 4;
    }

    .div2 {
        grid-column: span 7 / span 7;
        grid-row: span 3 / span 3;
        grid-column-start: 4;
        grid-row-start: 10;
    }

    .div5 {
        grid-column: span 6 / span 6;
        grid-row: span 3 / span 3;
        grid-column-start: 1;
        grid-row-start: 1;
    }

    .div6 {
        grid-column: span 4 / span 4;
        grid-row: span 3 / span 3;
        grid-column-start: 7;
        grid-row-start: 1;
    }

    .div7 {
        grid-column: span 4 / span 4;
        grid-row: span 6 / span 6;
        grid-column-start: 4;
        grid-row-start: 4;
    }

    .div8 {
        grid-column: span 3 / span 3;
        grid-row: span 6 / span 6;
        grid-column-start: 8;
        grid-row-start: 4;
    }

    /* Service grid hover effects */
    .service-grid-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 1;
        pointer-events: none;
        background-color: rgba(58, 23, 147, 0.45);
    }

    .service-grid-item:hover::before {
        opacity: 1;
    }

    .service-grid-item .overlay-text {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2;
        color: white;
        font-family: "Bebas Neue", sans-serif;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: clamp(1rem, 2vw, 1.5rem);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .service-grid-item:hover .overlay-text {
        opacity: 1 !important;
    }

    .service-grid-item:hover .service-grid-title {
        opacity: 0 !important;
    }

    .overlay-text h3 {
        font-size: clamp(1.2rem, 2.5vw, 1.8rem);
        font-weight: 700;
        margin: 0 0 0.5rem 0;
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }

    .overlay-text p {
        font-family: 'Inter', sans-serif;
        font-size: clamp(0.8rem, 1.5vw, 1rem);
        font-weight: 400;
        margin: 0;
        line-height: 1.4;
        opacity: 0.9;
    }



    /* Services section title */
    .services-section {
        margin-top: 5rem;
        padding: 0 clamp(2%, 5%, 5%);
    }

    .jl-text {
           margin-top: clamp(3rem, -8vw, -8rem); /* Negative margin to pull second line closer */
    margin-left: clamp(2rem, 8vw, 8rem); /* Left indent for second line */
    }




    .rotating-arrow {
        display: block;
        position: absolute;
        right: 25%;
        top: 67%;
        transform: translateY(-50%) rotate(180deg);
        width: clamp(5rem, 10vw, 8.75rem);
        height: clamp(5rem, 10vw, 8.75rem);
        transition: transform 0.3s ease;
        z-index: 10;
    }

    /* Scroll reveal sections */
    .revealing-boxes {
        position: relative;
        height: 400vh;
        background: transparent;
    }

    .sticky-container {
        position: sticky;
        top: 0;
        height: 100vh;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-section {
        position: absolute;
        top: 50%;
        left: 50%;
        border-radius: clamp(1.875rem, 5vw, 3.75rem);
        width: clamp(90%, 85%, 85%);
        min-height: clamp(31.25rem, 60vh, 45.625rem);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        padding: clamp(1.5rem, 3vw, 2.5rem);
        display: flex;
        flex-direction: row;
        align-items: stretch;
        gap: 2rem;
        overflow: hidden;
        will-change: transform, opacity;
        contain: layout style;
    }

    .text-column {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        width: 45%;
    }

    .text-column h1 {
        font-weight: 900;
        font-size: clamp(3rem, 8vw, 8rem);
        letter-spacing: 0.02em;
        color: black;
        margin: clamp(2rem, 5vw, 5rem) 0 0 0;
        line-height: 1.2;
        width: 90%;
    }

    .text-column p {
        font-family: 'Helvetica Neue', sans-serif;
        margin-top: clamp(1.5rem, 3vw, 3rem);
        font-size: clamp(1rem, 1.5vw, 1.4rem);
        margin-left: 0.5rem;
        width: 90%;
    }

    .text-column a {
        margin-top: clamp(3rem, 6vw, 6rem) !important;
    }

    .video-boxes {
        background: white;
        width: 45%;
        border-radius: 0 150px 0 0;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        flex-shrink: 0;
    }

    .video-boxes video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0 150px 0 0;
    }

    /* Content section desktop */
    .content-section {
        flex-direction: row;
        align-items: flex-start;
        max-width: 100%;
        padding: clamp(2rem, 5vw, 4rem) clamp(2%, 5%, 5%);
    }

    .content-section .left-column {
        flex: 1;
        max-width: 30%;
        margin: 0;
    }

    .content-section .right-column {
        flex: 1.5;
        max-width: 600px;
        margin: 3rem 5% 0 10%;
        text-align: justify;
    }

    .content-section p {
        font-size: clamp(1rem, 1.5vw, 1.2rem);
        line-height: 1.6;
        font-weight: bold;
    }

    .about_us {
        font-size: clamp(4rem, 12vw, 12rem);
    }

    #about_us_2 {
        margin-top: clamp(-5rem, -30vh, -30vh);
        margin-left: clamp(10%, 20%, 20%);
    }
}


/* === XL DESKTOP (1440px+) === */
@media (min-width: 1440px) {
    .content-section .left-column {
        margin-left: 6rem;
    }

    .content-section .right-column {
        margin: 3rem 5% 0 15%;
    }
}





/* === FAQ ADJUSTMENTS === */
.faq_container {
    max-height: none;
    min-height: auto;
}

/* === ACCESSIBILITY === */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* === HIGH CONTRAST MODE === */
@media (prefers-contrast: high) {
    .rounded-button-jl {
        border-width: 3px;
    }

    .service-card-mobile {
        border: 2px solid currentColor;
    }
}

/* === PRINT STYLES === */
@media print {
    .project-button-container,
    .scroll-progress,
    video {
        display: none !important;
    }

    .service-section {
        position: static !important;
        transform: none !important;
        page-break-inside: avoid !important;
    }
}

/* === TOUCH DEVICE OPTIMIZATIONS === */
@media (hover: none) and (pointer: coarse) {
    .rounded-button-jl,
    .service-link-mobile,
    .showcase-cta {
        min-height: 44px;
        min-width: 44px;
    }

    /* Remove hover effects on touch devices */
    .service-grid-item:hover::before,
    .service-grid-item:hover .overlay-text {
        opacity: 0 !important;
    }
}

/* === LANDSCAPE MOBILE === */
@media (max-width: 812px) and (orientation: landscape) {
    .head {
        min-height: auto;
        padding: 2rem 1rem;
    }

    .showcase-video-container {
        height: 60vh;
    }

    .kpi-mobile-card {
        min-height: auto;
        padding: 2rem 1.5rem;
    }
}

/* Scroll Reveal Sections */
.revealing-boxes {
    position: relative;
    height: 400vh;
    background: transparent;
}

.sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-section {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: clamp(30px, 5vw, 60px);
    width: clamp(90%, 85%, 85%);
    min-height: clamp(500px, 60vh, 730px);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 2rem;
    overflow: hidden;
    will-change: transform, opacity;
    contain: layout style;
}

.horizontal-section{
        position: absolute;
    top: 50%;
    left: 50%;
    border-radius: clamp(30px, 5vw, 60px);
    width: clamp(90%, 85%, 85%);
    min-height: clamp(500px, 60vh, 730px);
    background: rgba(255, 255, 255, 0.95)!important;
    backdrop-filter: blur(10px);
    padding: clamp(1.5rem, 3vw, 2.5rem);
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 2rem;
    overflow: hidden;
    will-change: transform, opacity;
    contain: layout style;
}

#card-1{
        transform: translate3d(-50%, -50%, 0) scale(1);
    opacity: 1;
    z-index: 10;
    max-width: clamp(90%, 70%, 30%)!important;
}
#card-2{
        transform: translate3d(-50%, -50%, 0) scale(1);
    opacity: 1;
    z-index: 10;

}
#card-3{
        transform: translate3d(-50%, -50%, 0) scale(1);
    opacity: 1;
    z-index: 10;

}

#wegengineering {
    transform: translate3d(-50%, -50%, 0) scale(1);
    opacity: 1;
    z-index: 10;
}

#seo, #hosting {
    transform: translate3d(-50%, 150%, 0) scale(0.7);
    opacity: 0;
    z-index: 1;
}

#card-1,#card-2,#card-3{
    min-height:1200px;
}
.service-section.active {
    z-index: 10;
}
.text-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 45% !important;
}

.text-column h1 {
    font-weight: 900;
    font-size: clamp(3rem, 6vw, 6rem);
    letter-spacing: 0.02em;
    color: black;
    margin: clamp(2rem, 5vw, 5rem) 0 0 0;
    line-height: 1.2;
    width: 90% !important;
    contain: style;
}

.text-column p {
    margin-top: clamp(1.5rem, 3vw, 3rem);
    font-size: clamp(1rem, 1.5vw, 1.4rem);
    margin-left: .5rem;
    width: 90% !important;
    contain: style;
}

.text-column a {
    justify-self: end;
    margin-top: clamp(3rem, 6vw, 6rem) !important;
}
.video-boxes {
    background: white;
    width: 45% !important;
    border-radius: 0 150px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    contain: layout;
    will-change: contents;
}

.video-boxes video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 150px 0 0;
    will-change: auto;
}


      /* Service Items - KORRIGIERT */
.services-container {
    max-width: 1000px;
    width: 100%;
    padding: 40px;
}

.services-list {
    position: relative;
}

.service-item {
    position: relative;
    display: block;
    text-decoration: none;
    color: black;
    font-size: 6rem;
    font-weight: 300;
    margin: 0;
    padding: 30px 0;
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
    cursor: pointer;
    overflow: hidden;
    font-family: 'DM Sans','Helvetica Neue', sans-serif;
    font-weight: 500;
}

.service-item:first-child {
    border-top: 1px solid #333;
}

.service-text {
    display: inline-block;
    transition: transform 0.3s ease;
}

/* NEUE SERVICE IMAGE VERSION - OHNE GRADIENT! */
.service-image {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) translateX(-100%);
    width: 120px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    background-color: #f0f0f0; /* Nur Fallback-Farbe */
    /* KEIN GRADIENT MEHR! */
}

/* ENTFERNE DAS ALTE ::before ELEMENT */
.service-image::before {
    display: none !important;
}

/* Für echte Bilder */
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Nur Fallback wenn kein Bild da ist */
.service-image:not(:has(img))::after {
    content: 'IMG';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #999;
    font-size: 12px;
    font-weight: bold;
}

.service-arrow {
    position: absolute;
    bottom: 8px;
    right: 8px;
    width: 24px;
    height: 24px;
    background-color: #6466F1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: white;
    font-weight: bold;
    z-index: 10;
}

.service-arrow::after {
    content: '↗';
}

/* Hover Effects */
.service-item:hover .service-text,
.service-item.active .service-text {
    transform: translateX(140px);
}

.service-item:hover .service-image,
.service-item.active .service-image {
    transform: translateY(-50%) translateX(0);
    opacity: 1;
}

/* Gray out other items */
.services-list:hover .service-item:not(:hover) {
    color: #666;
}

.services-list.has-active .service-item:not(.active) {
    color: #666;
}

@media (max-width: 768px) {
    .service-item {
        font-size: 2.5rem;
    }

    .service-item:hover .service-text,
    .service-item.active .service-text {
        transform: translateX(100px);
    }

    .service-image {
        width: 90px;
        height: 60px;
    }
}

.links{
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: stretch;
    background-color: rgba(224, 231, 255, 0.78);
    margin:0;
    padding-top:3vh;
    padding-bottom:3vh;

}

#right-side-links {
            display: flex;
            width: 40%;
            align-items: center;
            justify-content: center;

        }

#right-side-links div{
    width:70%;
    margin-right:15%;
    margin-left:15%;
    height:70%;
min-height: 300px ;
    border-radius: 15px;
position: relative !important;


}

#left-side-links{
      display: flex;
    width:60%;
}


        /* Responsive design */
        @media (max-width: 768px) {
            .head {
                flex-direction: column;
            }

            #right-side-head, #left-side-head {
                width: 100%;
            }

            #left-side-head {
                min-height: 40vh;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

            .links {
                flex-direction: column;
            }

            #right-side-links, #left-side-links {
                width: 100%;
            }

            .banner-stats {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }

.half-container{
    min-height: 80vh;
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: stretch;
      margin:0;
   display:none;
}

.right-half-container{
    background-color: #6466F1;
    width:50%;
}
.left-half-container{
    width: 50%;
}
  .section-header {
            text-align: center;
            margin-bottom: 100px;
        }

        .section-subtitle {
            font-size: 28px;
            color: #64748b;
            margin-bottom: 16px;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-weight: 500;
            margin-top: 4rem;
        }

        .section-title {
            font-size: clamp(28px, 5vw, 78px);
            font-weight: 700;
            color: #0a0a0a;
            margin-bottom: 40px;
            line-height: 1.2;
        }

        .section-description {
            font-size: 28px;
            color: #64748b;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }
.container_23 {
            padding: 60px 40px;
            max-width: 1800px;
            margin: 0 auto;
    margin-bottom: 5rem;
        }

      .process-wrapper {
            position: relative;
            height: 800px;
            width: 100%;
        }

        .connection-lines {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1000px;
            pointer-events: none;
            z-index: 200001;
        }

        .connection-path {
            fill: none;
            stroke: #e0e0e0;
            stroke-width: 2;
            stroke-dasharray: 5, 5;
            transition: all 0.3s ease;
        }

        .animated-path {
            fill: none;
            stroke: #4285f4;
            stroke-width: 3;
            stroke-dasharray: 0;
            stroke-dashoffset: 0;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .container_23:hover .animated-path {
            opacity: 1;
            animation: drawPath 2s ease-in-out forwards;
        }

        @keyframes drawPath {
            from {
                stroke-dasharray: 0 2000;
            }
            to {
                stroke-dasharray: 2000 0;
            }
        }

        .process-step {
            position: absolute;
            z-index: 200003;
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            width: 280px;
            scale: 1.3;

        }
        @media (max-width: 1800px) {
               .process-step {
            position: absolute;
            z-index: 200003;
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            width: 280px;
            scale: 1.2;
        }
            .container_23 {
                margin-left:-200px!important;
            }



}
          @media (max-width: 1500px) {
               .process-step {
            position: absolute;
            z-index: 200003;
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            width: 280px;
            scale: 1.1;
        }
                .container_23 {
                margin-left:-250px!important;

            }
              }

      @media (max-width: 1500px) {
               .process-step {
            position: absolute;
            z-index: 200003;
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            width: 280px;
            scale: 1;
        }
                .container_23 {
                margin-left:-250px!important;

            }
                .process-step-4{
                    left:1200px!important;
                }
              }

@media (max-width: 1250px) {
       .process-step-4{
                    left:1100px!important;
                }
    .container_23 {
        display: none!important;
    }
}


        .process-step:hover {
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            transform: translateY(-5px);
        }

        .step-number {
            position: absolute;
            top: -20px;
            left: 30px;
            width: 40px;
            height: 40px;
            background: white;
            border: 3px solid #4285f4;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 18px;
            color: #4285f4;
            box-shadow: 0 4px 10px rgba(66, 133, 244, 0.2);
            transition: all 0.3s ease;
        }

        .process-step:hover .step-number {
            background: #4285f4;
            color: white;
            transform: scale(1.1);
        }

        .step-label {
            display: inline-block;
            background: rgba(66, 133, 244, 0.1);
            color: #4285f4;
            padding: 4px 12px;
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 15px;
        }

        .step-title {
            font-size: 20px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .step-description {
            color: #666;
            line-height: 1.5;
            font-size: 14px;
        }

        @media (max-width: 768px) {


            .process-wrapper {
                height: auto;
                min-height: 800px;
            }

            .process-step {
                width: 250px;
                position: relative !important;
                margin-bottom: 30px;
                left: 50% !important;
                transform: translateX(-50%);
                top: auto !important;
            }

            .connection-lines {
                display: none;
            }
        }





        /* Responsive Design */
        @media (max-width: 1400px) {
            .timeline-steps {
                gap: 150px;
                padding: 0 50px;
            }

            .step-content {
                width: 350px;
            }
        }

        @media (max-width: 1200px) {
            .section-title {
                font-size: 56px;
            }

            .timeline-steps {
                gap: 100px;
                padding: 0 30px;
            }

            .step-content {
                width: 300px;
                padding: 35px 30px;
            }
        }

        @media (max-width: 1400px) {

        .container_4 {
            max-width: 2400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            display: flex!important;
        }




        .desktop-only {
            display: block;
        }

        .timeline-container {
            position: relative;
            width: 100%;
            height: 600px;
            margin: 0 auto;
        }

        .timeline-path {
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 100%;
            height: 400px;
            z-index: 1;
            pointer-events: none;
        }

        .timeline-path svg {
            width: 100%;
            height: 100%;
        }

        .curved-path {
            fill: none;
            stroke: #3b82f6;
            stroke-width: 5;
            stroke-linecap: round;
            stroke-dasharray: 3000;
            stroke-dashoffset: 3000;
            animation: drawPath 4s ease-in-out forwards;
            filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.2));
        }

        @keyframes drawPath {
            to {
                stroke-dashoffset: 0;
            }
        }

        .timeline-steps {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 200px;
            height: 100%;
            align-items: center;
            padding: 0 100px;
        }

        .timeline-step {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease-out forwards;
            height: 100%;
            justify-content: center;
        }

        .timeline-step:nth-child(1) {
            animation-delay: 0.3s;
            align-self: flex-start;
            margin-top: 50px;
        }
        .timeline-step:nth-child(2) {
            animation-delay: 0.6s;
            align-self: flex-end;
            margin-bottom: 50px;
        }
        .timeline-step:nth-child(3) {
            animation-delay: 0.9s;
            align-self: flex-start;
            margin-top: 50px;
        }
        .timeline-step:nth-child(4) {
            animation-delay: 1.2s;
            align-self: flex-end;
            margin-bottom: 50px;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .step-marker {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #ffffff, #f8fafc);
            border: 4px solid #3b82f6;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 28px;
            color: #3b82f6;
            cursor: pointer;
            transition: all 0.4s ease;
            z-index: 3;
            position: relative;
            flex-shrink: 0;
            margin-bottom: 30px;
            box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15);
        }

        .step-marker:hover {
            transform: scale(1.15);
            box-shadow: 0 12px 35px rgba(59, 130, 246, 0.25);
        }

        .step-content {
            background: linear-gradient(135deg, #ffffff, #f8fafc);
            border-radius: 20px;
            padding: 45px 40px;
            transition: all 0.4s ease;
            width: 420px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(59, 130, 246, 0.1);
        }

        .step-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: #3b82f6;
        }

        .step-content:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .step-number{
            display:none!important;
        }
        .step-title {
            font-size: 28px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 18px;
            line-height: 1.3;
        }

        .step-description {
            font-size: 16px;
            color: #64748b;
            line-height: 1.7;
        }

            .method-section {
                padding: 80px 15px;
                overflow-x: visible;
                overflow-y: visible;
            }

            .section-title {
                font-size: 36px;
            }

            .section-subtitle {
                font-size: 20px;
            }

            .section-description {
                font-size: 18px;
            }

            .desktop-only {
                display: none;
            }

            .timeline-container {
                height: auto;
            }

            .timeline-steps {
                display: flex;
                flex-direction: column;
                gap: 80px;
                padding: 0;
                align-items: center;
            }

            .timeline-step {
                align-self: center !important;
                margin: 0 !important;
                width: 100%;
                max-width: 400px;
            }

            .step-content {
                width: 100%;
                max-width: 350px;
            }

            .timeline-path {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .step-content {
                padding: 30px 25px;
                max-width: 300px;
            }

            .step-title {
                font-size: 22px;
            }

            .step-marker {
                width: 70px;
                height: 70px;
                font-size: 24px;
            }
        }

/* UPDATED CSS FOR MOBILE VIDEO ASPECT RATIOS */

#video {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    border: none !important;
    min-height: 80vh;
    margin: 2rem 0;
}

#video_container {
    position: relative;
    width: 90%;
    aspect-ratio: 16 / 8.5;
    border-radius: 40px;
    overflow: hidden;
    backface-visibility: hidden;
}

#video_div {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('/static/images/homepage/dark_restaurant.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    z-index: 1;
    border-radius: 40px;
    backface-visibility: hidden;
    transform: translate3d(0, 0, 0);
}

.video-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    backface-visibility: hidden;
}

.big-video {
    width: 80%;
    aspect-ratio: 16 / 7.8;
    object-fit: cover;
    border-radius: 20px;
    backface-visibility: hidden;
}

/* MOBILE OPTIMIZATIONS FOR DIFFERENT VIDEO ASPECT RATIOS */
@media (max-width: 768px) {
    #video {
        /* Increased height to accommodate mobile video */
        min-height: 90vh; /* Increased from 60vh to 90vh */
        margin: 2rem 0; /* Restored larger margin */
    }

    #video_container {
        width: 95%;
        /* Changed aspect ratio to better fit mobile videos */
        aspect-ratio: 9 / 16; /* Portrait aspect ratio for mobile videos */
        /* If your mobile video is square, use: aspect-ratio: 1 / 1; */
        /* If your mobile video is 4:5, use: aspect-ratio: 4 / 5; */
        border-radius: 20px;
        max-height: 80vh; /* Prevent it from getting too tall */
    }

    #video_div {
        border-radius: 20px;
        background-image: url('/static/images/homepage/dark_restaurant.jpg');
        background-attachment: scroll;
    }

    .video-content {
        position: absolute;
        top: 50%;
        left: 50% !important;

        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .big-video {
        /* Mobile video sizing */
        width: 90%; /* Increased width */
        height: 85%; /* Set height instead of aspect-ratio */

        object-fit: cover;
        border-radius: 15px;
        /* Remove aspect-ratio constraint on mobile */
        aspect-ratio: unset;
    }

    /* Hide desktop video on mobile */
    .big-video.desktop-only {
        display: none !important;
    }

    /* Show and optimize mobile video */
    .big-video.mobile-only {
        display: block;
        width: 85%;
        height: 85%;

    }
}

/* EXTRA SMALL MOBILE DEVICES */
@media (max-width: 480px) {
    #video {
        min-height: 85vh; /* Adequate height for small screens */
        margin: 1.5rem 0;
    }

    #video_container {
        width: 98%;
        border-radius: 15px;

    }

    #video_div {
        border-radius: 15px;
    }

    .big-video.mobile-only {
        width: 90%;
        height: 85%;

        border-radius: 10px;
    }
}

/* LANDSCAPE MOBILE ORIENTATION */
@media (max-width: 768px) and (orientation: landscape) {
    #video {
        min-height: 70vh; /* Shorter in landscape */
    }

    #video_container {
        aspect-ratio: 16 / 9; /* Back to landscape ratio */
    }

    .big-video.mobile-only {
        width: 80%;
        height: 70%;
        max-height: 100vh;
    }
}

/* PERFORMANCE OPTIMIZATION */
@media (prefers-reduced-motion: reduce) {
    #video_div,
    .video-content {
        transform: none !important;
    }
}

/* iOS SAFARI SPECIFIC FIXES */
@supports (-webkit-touch-callout: none) {
    #video_div {
        background-attachment: scroll !important;
    }

    /* iOS video optimization */
    .big-video.mobile-only {
        -webkit-playsinline: true;
        object-position: center;
    }
}



@media (max-width: 768px) {
    #video_container {
        aspect-ratio: 480 / 1204!important;
    }
    .video-content { aspect-ratio: 480 / 1204!important;}
}



.video-loading {
            background: #f3f4f6;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 200px;
        }

        .loading-spinner {
            width: 40px;
            height: 40px;
            border: 3px solid #e5e7eb;
            border-top: 3px solid #3b82f6;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Lazy loading placeholder */
        .video-placeholder {
            background: linear-gradient(45deg, #f3f4f6 25%, transparent 25%),
                        linear-gradient(-45deg, #f3f4f6 25%, transparent 25%),
                        linear-gradient(45deg, transparent 75%, #f3f4f6 75%),
                        linear-gradient(-45deg, transparent 75%, #f3f4f6 75%);
            background-size: 20px 20px;
            background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
            animation: shimmer 2s linear infinite;
        }

        @keyframes shimmer {
            0% { opacity: 0.5; }
            50% { opacity: 1; }
            100% { opacity: 0.5; }
        }

        .scroll-container {
            width: 100%;
            overflow: hidden;
            background-color:  transparent;
            padding: 40px 0;
            margin: 0!important;
            font-family: 'DM sans' sans serif;
        }

        .scroll-line {
            white-space: nowrap;
            font-size: 8rem;
            font-weight: 900;
            color: black;
            line-height: 1;

        }

        .line1 {
            animation: scrollRightToLeft 8s linear infinite;
        }

        .line2 {
            animation: scrollLeftToRight 8s linear infinite;
        }

        @keyframes scrollRightToLeft {
            0% {
                transform: translateX(0%);
            }
            100% {
                transform: translateX(-100%);
            }
        }

        @keyframes scrollLeftToRight {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(0%);
            }
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .scroll-line {
                font-size: 6rem;
            }
        }

        @media (max-width: 768px) {
            .scroll-line {
                font-size: 4rem;
            }
        }

        @media (max-width: 480px) {
            .scroll-line {
                font-size: 2.5rem;
            }
        }

#video_container {
    cursor: pointer;
}

#video_container {
    position: relative; /* This allows absolute positioning of child elements */
    cursor: pointer;
}

.video-overlay-text {
    position: absolute;
    bottom: 20px;           /* Distance from bottom */
    left: 20px;             /* Distance from left */
    color: white;
    font-size: 20px;        /* Adjust size as needed */
    font-weight: 500;       /* Optional: make it slightly bold */

    pointer-events: none;   /* Ensures text doesn't interfere with clicks */
    z-index: 10;           /* Ensures text appears above video */
    font-family: "DM Sans", sans-serif;

}
/* Sticky Visit Soho Text - Isolated Styles */
#video .video-overlay-text {
    position: absolute;
    bottom: 0;
    left: 20px;
    color: white;
    padding: 16px 16px;
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 0 8px 0 0;
    z-index: 1000; /* High z-index to ensure it's above other content */
    transition: all 0s ease;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    white-space: nowrap; /* Prevent text wrapping */
}

/* Sticky state */
#video .video-overlay-text.soho-sticky {
    position: fixed !important;
    bottom: 0 !important;
    left: var(--sticky-left, 20px) !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

}

/* Bottom state */
#video .video-overlay-text.soho-at-bottom {
    position: absolute !important;
    bottom: 0 !important;
    left: 20px !important;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Hover effect */
#video .video-overlay-text:hover {
    scale:1.05;
    transform: translateY(-5px);
    transform: translateX(5px);


}

#video .video-overlay-text.soho-sticky:hover {
    scale:1.05;
       transform: translateY(-5px);
    transform: translateX(5px);


}

/* Animation */
@keyframes sohoSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    #video .video-overlay-text {
        font-size: 18px;
        padding: 12px 24px;
        left: 16px;
    }
}

/* Sentinel element - invisible helper */
.soho-bottom-sentinel {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 1px !important;
    height: 1px !important;
    pointer-events: none !important;
    opacity: 0 !important;
    z-index: -1 !important;
}