/* /Components/Display/Expander.razor.rz.scp.css */
.expander-toggle[b-o1wq4vcl4v] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.expander-icon[b-o1wq4vcl4v] {
    position: relative;
    display: inline-flex;
    width: 24px;
    height: 24px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
}

    .expander-icon[b-o1wq4vcl4v]::before {
        content: "";
        position: absolute;
        width: 24px;
        height: 24px;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        border-radius: 50%;
        background-color: transparent;
        transition: background-color .15s ease;
        pointer-events: none;
        z-index: 0;
    }

    .expander-icon:hover[b-o1wq4vcl4v]::before {
        background-color: rgba(0, 0, 0, 0.08);
    }

    .expander-icon:focus-visible[b-o1wq4vcl4v] {
        outline: 2px solid var(--mud-palette-primary);
        outline-offset: 2px;
    }

.icon-expand-more[b-o1wq4vcl4v] {
    height: 1.5rem;
}

.icon-expand-less[b-o1wq4vcl4v] {
    display: none;
    height: 1.5rem;
}

.expander-toggle:checked ~ .expander-header .icon-expand-more[b-o1wq4vcl4v] {
    display: none;
}

.expander-toggle:checked ~ .expander-header .icon-expand-less[b-o1wq4vcl4v] {
    display: inline-flex;
}

.expander-panel[b-o1wq4vcl4v] {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
}

.expander-toggle:checked ~ .expander-panel[b-o1wq4vcl4v] {
    max-height: 300px;
}

    .expander-toggle:checked ~ .expander-panel > *[b-o1wq4vcl4v] {
        animation: expanderFade-b-o1wq4vcl4v .25s ease;
    }

@keyframes expanderFade-b-o1wq4vcl4v {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* /Components/Layout/MainLayout.razor.rz.scp.css */
.nav-desktop[b-4bypfkskmn] {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-mobile[b-4bypfkskmn] {
    display: none;
    margin-left: auto;
    position: relative;
}

.site-main[b-4bypfkskmn] {
    z-index: 4;
    background-color: #f6f9fc;
}

.site-footer[b-4bypfkskmn] {
    z-index: 2;
    background-color: var(--site-shell-dark);
    bottom: 0;
}

.reveal-footer[b-4bypfkskmn] {
    opacity: 1;
    position: relative;
    height: 40vh;
    min-height: 480px;
}

#spacer.reveal-footer[b-4bypfkskmn] {
    pointer-events: none;
}

#footer.reveal-footer[b-4bypfkskmn] {
    pointer-events: auto;
}

.footer-copy[b-4bypfkskmn] {
    min-width: 280px;
    color: var(--mud-palette-appbar-text);
}

.footer-top[b-4bypfkskmn] {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem 3rem;
}

.footer-links[b-4bypfkskmn] {
    min-width: 200px;
}

.footer-actions[b-4bypfkskmn] {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    align-items: flex-start;
    justify-content: flex-start;
    pointer-events: auto;
}

    .footer-actions a[b-4bypfkskmn] {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.06);
        transition: background-color .15s ease, transform .15s ease;
    }

    .footer-actions a:hover[b-4bypfkskmn] {
        background: rgba(255, 255, 255, 0.14);
        transform: translateY(-1px);
    }

.footer-meta[b-4bypfkskmn] {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0 !important;
}

.footer-brandmark[b-4bypfkskmn] {
    min-width: 280px;
    max-width: 1000px;
    max-height: 100%;
}

    .footer-brandmark img[b-4bypfkskmn] {
        max-width: 100%;
        height: auto;
    }

@media (max-width: 899.98px) {
    .nav-desktop[b-4bypfkskmn] {
        display: none;
    }

    .nav-mobile[b-4bypfkskmn] {
        display: block;
    }

        .nav-mobile .hamburger[b-4bypfkskmn] {
            -webkit-tap-highlight-color: transparent;
            list-style: none;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            padding: 8px;
        }

            .nav-mobile .hamburger[b-4bypfkskmn]::-webkit-details-marker {
                display: none;
            }

        .nav-mobile .nav-panel[b-4bypfkskmn] {
            display: none;
            position: absolute;
            top: var(--mud-internal-toolbar-height);
            right: 0;
            min-width: 220px;
            padding: 1rem;
            background-color: var(--mud-palette-appbar-background);
            box-shadow: var(--mud-elevation-4);
        }

        .nav-mobile[open] .nav-panel[b-4bypfkskmn] {
            display: flex;
            flex-direction: column;
            align-items: stretch;
            gap: .5rem;
            border-radius: 8px;
        }
}

@media (max-width: 960px) {
    .reveal-footer[b-4bypfkskmn] {
        height: 30vh;
        min-height: 400px;
    }
}

@media (max-width: 800px) {
    .footer-actions[b-4bypfkskmn] {
        flex-direction: column;
    }
}

@media (max-width: 700px) {
    .footer-top[b-4bypfkskmn] {
        align-items: flex-start;
        gap: 1.25rem;
    }

    .footer-copy[b-4bypfkskmn],
    .footer-links[b-4bypfkskmn],
    .footer-actions[b-4bypfkskmn],
    .footer-brandmark[b-4bypfkskmn] {
        min-width: 0;
    }

    .footer-brandmark[b-4bypfkskmn] {
        width: 100%;
    }
}

#blazor-error-ui[b-4bypfkskmn] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-4bypfkskmn] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Pages/Home.razor.rz.scp.css */
.hero-media[b-ez7lvcqqj6] {
    position: relative;
    width: 100%;
}

.hero-text-stage[b-ez7lvcqqj6] {
    display: contents;
}

.hero-swap[b-ez7lvcqqj6] {
    opacity: 0;
    animation: swap-fade-b-ez7lvcqqj6 8s linear infinite;
    will-change: opacity;
}

.hero-swap-alt[b-ez7lvcqqj6] {
    animation-delay: -4s;
}

@keyframes swap-fade-b-ez7lvcqqj6 {
    0%, 45% {
        opacity: 1;
    }

    50%, 95% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.hero-text[b-ez7lvcqqj6] {
    color: #262c33;
    font-weight: 500;
    font-size: clamp(2.55rem, 4vw, 3.45rem);
    line-height: 1.04;
    margin: 0;
    position: absolute;
    top: 5rem;
    left: 10rem;
    text-align: left;
    z-index: 2;
}

.hero-cta[b-ez7lvcqqj6] {
    position: absolute;
    right: 4rem;
    bottom: 3.2rem;
    z-index: 2;
}

.image-web[b-ez7lvcqqj6] {
    display: block;
    max-width: 100%;
    height: auto;
    width: 100%;
}

.image-mobile[b-ez7lvcqqj6] {
    display: none;
    max-width: 100%;
    height: auto;
    width: 100%;
}

.carousel-card[b-ez7lvcqqj6] {
    max-width: var(--site-carousel-card-max-width);
    width: min(100%, var(--site-carousel-card-max-width));
    min-height: 15.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.carousel-card .mud-card-content[b-ez7lvcqqj6] {
    padding: 2.4rem 3rem 2.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.carousel-quote[b-ez7lvcqqj6] {
    margin: 0;
    max-width: 34rem;
    text-align: center;
    color: #4b5461;
    font-size: 1.08rem;
    line-height: 1.55;
}

.carousel-customer[b-ez7lvcqqj6] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.carousel-mark[b-ez7lvcqqj6] {
    color: #7f19ff;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -.12em;
    line-height: 1;
}

.carousel-logo[b-ez7lvcqqj6] {
    display: block;
    flex: 0 0 auto;
    width: auto;
    height: 3.36rem;
    max-width: min(50vw, 12rem);
    object-fit: contain;
    object-position: center;
    overflow: visible;
}

.carousel-customer-copy h3[b-ez7lvcqqj6],
.carousel-customer-copy p[b-ez7lvcqqj6] {
    margin: 0;
    margin-top: 1rem;
}

.carousel-customer-copy h3[b-ez7lvcqqj6] {
    font-size: 1.5rem;
    line-height: 1.15;
    color: #2e333b;
}

.carousel-customer-copy p[b-ez7lvcqqj6] {
    margin-top: .25rem;
    color: #525a67;
    font-size: 1rem;
}

@media (max-width: 900px) {
    .hero-media[b-ez7lvcqqj6] {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        padding-top: 2.25rem;
    }

    .hero-text-stage[b-ez7lvcqqj6] {
        display: block;
        position: relative;
        width: 100%;
        min-height: 7.25rem;
        overflow: hidden;
    }

    .hero-text[b-ez7lvcqqj6] {
        position: absolute;
        inset: 0 auto auto 0;
        text-align: center;
        width: 100%;
        font-size: clamp(1.9rem, 8vw, 2.8rem);
    }

    .hero-swap[b-ez7lvcqqj6] {
        opacity: 1;
        animation-name: swap-slide-mobile-primary-b-ez7lvcqqj6;
        will-change: transform;
    }

    .hero-swap-alt[b-ez7lvcqqj6] {
        animation-delay: 0s;
        animation-name: swap-slide-mobile-alt-b-ez7lvcqqj6;
    }

    @keyframes swap-slide-mobile-primary-b-ez7lvcqqj6 {
        0%, 44% {
            transform: translateX(0);
        }

        50%, 94% {
            transform: translateX(-110%);
        }

        94.1% {
            transform: translateX(110%);
        }

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

    @keyframes swap-slide-mobile-alt-b-ez7lvcqqj6 {
        0%, 44% {
            transform: translateX(110%);
        }

        50%, 94% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(-110%);
        }
    }

    .hero-cta[b-ez7lvcqqj6] {
        top: auto;
        bottom: 2rem;
        left: auto;
        right: 2rem;
        transform: none;
    }

    .image-web[b-ez7lvcqqj6] {
        display: none;
    }

    .image-mobile[b-ez7lvcqqj6] {
        display: block;
    }

    .carousel-card[b-ez7lvcqqj6] {
        min-height: auto;
    }

    .carousel-card .mud-card-content[b-ez7lvcqqj6] {
        padding: 2rem 1.5rem;
    }

    .carousel-customer[b-ez7lvcqqj6] {
        flex-direction: column;
        text-align: center;
        margin-top: 1rem;
    }
}

@media (max-width: 600px) {
    .hero-text-stage[b-ez7lvcqqj6] {
        min-height: 7.8rem;
    }

    .hero-text[b-ez7lvcqqj6] {
        font-size: clamp(1.55rem, 7.7vw, 2.5rem);
    }

    .carousel-card .mud-card-content[b-ez7lvcqqj6] {
        padding: 1.5rem 1rem;
    }

    .carousel-quote[b-ez7lvcqqj6] {
        font-size: 1rem;
    }
}
