.bm-wrapper-a9f3c2d1 {
    --bm-gap: 56px;
    --bm-row-gap: 24px;
    --bm-edge-fade: 8%;
    --bm-vertical-height: 520px;
    --bm-logo-grayscale: 100%;
    --bm-logo-grayscale-hover: 0%;
    --bm-logo-opacity: .62;
    --bm-logo-opacity-hover: 1;
    --bm-logo-brightness: 100%;
    --bm-logo-brightness-hover: 100%;
    --bm-hover-scale: 1.06;
    --bm-hover-lift: -2px;
    --bm-transition: 280ms;
    position: relative;
    width: 100%;
    min-width: 0;
    isolation: isolate;
}

.bm-empty-a9f3c2d1 {
    padding: 24px;
    border: 1px dashed rgba(127, 127, 127, .45);
    border-radius: 12px;
    text-align: center;
}

.bm-rows-a9f3c2d1 {
    display: flex;
    min-width: 0;
    gap: var(--bm-row-gap);
}

.bm-orientation-horizontal .bm-rows-a9f3c2d1 {
    flex-direction: column;
}

.bm-orientation-vertical .bm-rows-a9f3c2d1 {
    flex-direction: row;
}

.bm-row-viewport-a9f3c2d1 {
    position: relative;
    min-width: 0;
    overflow: hidden;
}

.bm-orientation-horizontal .bm-row-viewport-a9f3c2d1 {
    width: 100%;
}

.bm-orientation-vertical .bm-row-viewport-a9f3c2d1 {
    flex: 1 1 0;
    height: var(--bm-vertical-height);
}

.bm-edge-fade-a9f3c2d1.bm-orientation-horizontal .bm-row-viewport-a9f3c2d1 {
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0,
        #000 var(--bm-edge-fade),
        #000 calc(100% - var(--bm-edge-fade)),
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0,
        #000 var(--bm-edge-fade),
        #000 calc(100% - var(--bm-edge-fade)),
        transparent 100%
    );
}

.bm-edge-fade-a9f3c2d1.bm-orientation-vertical .bm-row-viewport-a9f3c2d1 {
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0,
        #000 var(--bm-edge-fade),
        #000 calc(100% - var(--bm-edge-fade)),
        transparent 100%
    );
    mask-image: linear-gradient(
        to bottom,
        transparent 0,
        #000 var(--bm-edge-fade),
        #000 calc(100% - var(--bm-edge-fade)),
        transparent 100%
    );
}

.bm-track-a9f3c2d1 {
    display: flex;
    width: max-content;
    min-width: max-content;
    gap: var(--bm-gap);
    will-change: transform;
    animation-duration: var(--bm-duration, 20s);
    animation-delay: var(--bm-delay, 0s);
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-play-state: paused;
}

.bm-orientation-vertical .bm-track-a9f3c2d1 {
    flex-direction: column;
    width: 100%;
    min-width: 100%;
    height: max-content;
    min-height: max-content;
}

.bm-group-a9f3c2d1 {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: var(--bm-gap);
    min-width: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.bm-orientation-vertical .bm-group-a9f3c2d1 {
    flex-direction: column;
    width: 100%;
}

.bm-row-viewport-a9f3c2d1.is-ready-a9f3c2d1 .bm-track-a9f3c2d1 {
    animation-play-state: running;
}

.bm-row-viewport-a9f3c2d1.bm-row-left-a9f3c2d1 .bm-track-a9f3c2d1 {
    animation-name: bm-scroll-left-a9f3c2d1;
}

.bm-row-viewport-a9f3c2d1.bm-row-right-a9f3c2d1 .bm-track-a9f3c2d1 {
    animation-name: bm-scroll-right-a9f3c2d1;
}

.bm-row-viewport-a9f3c2d1.bm-row-up-a9f3c2d1 .bm-track-a9f3c2d1 {
    animation-name: bm-scroll-up-a9f3c2d1;
}

.bm-row-viewport-a9f3c2d1.bm-row-down-a9f3c2d1 .bm-track-a9f3c2d1 {
    animation-name: bm-scroll-down-a9f3c2d1;
}

@keyframes bm-scroll-left-a9f3c2d1 {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(var(--bm-distance-negative), 0, 0); }
}

@keyframes bm-scroll-right-a9f3c2d1 {
    from { transform: translate3d(var(--bm-distance-negative), 0, 0); }
    to { transform: translate3d(0, 0, 0); }
}

@keyframes bm-scroll-up-a9f3c2d1 {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(0, var(--bm-distance-negative), 0); }
}

@keyframes bm-scroll-down-a9f3c2d1 {
    from { transform: translate3d(0, var(--bm-distance-negative), 0); }
    to { transform: translate3d(0, 0, 0); }
}

.bm-item-a9f3c2d1 {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-width: 0;
}

.bm-orientation-vertical .bm-item-a9f3c2d1 {
    width: 100%;
}

.bm-logo-card-a9f3c2d1 {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    max-width: 100%;
    color: inherit;
    text-align: center;
    text-decoration: none;
    transition:
        background-color var(--bm-transition) ease,
        border-color var(--bm-transition) ease,
        box-shadow var(--bm-transition) ease,
        transform var(--bm-transition) ease;
}

.bm-logo-card-a9f3c2d1:hover,
.bm-logo-card-a9f3c2d1:focus-visible {
    transform: translateY(var(--bm-hover-lift));
    text-decoration: none;
}

.bm-logo-card-a9f3c2d1:focus-visible,
.bm-toggle-a9f3c2d1:focus-visible {
    outline: 3px solid currentColor;
    outline-offset: 4px;
}

.bm-logo-frame-a9f3c2d1 {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 150px;
    height: 72px;
    overflow: hidden;
}

.bm-logo-image-a9f3c2d1 {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter:
        grayscale(var(--bm-logo-grayscale))
        brightness(var(--bm-logo-brightness));
    opacity: var(--bm-logo-opacity);
    transform: scale(1);
    transition:
        filter var(--bm-transition) ease,
        opacity var(--bm-transition) ease,
        transform var(--bm-transition) ease;
}

.bm-logo-card-a9f3c2d1:hover .bm-logo-image-a9f3c2d1,
.bm-logo-card-a9f3c2d1:focus-visible .bm-logo-image-a9f3c2d1 {
    filter:
        grayscale(var(--bm-logo-grayscale-hover))
        brightness(var(--bm-logo-brightness-hover));
    opacity: var(--bm-logo-opacity-hover);
    transform: scale(var(--bm-hover-scale));
}

.bm-logo-fallback-a9f3c2d1 {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    border: 1px dashed currentColor;
    border-radius: 10px;
    opacity: .45;
    font-size: clamp(24px, 4vw, 44px);
    font-weight: 700;
}

.bm-brand-name-a9f3c2d1 {
    display: block;
    max-width: 100%;
    margin-top: 10px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.bm-tooltip-a9f3c2d1 {
    position: absolute;
    z-index: 15;
    left: 50%;
    bottom: calc(100% + 10px);
    width: max-content;
    max-width: min(220px, 80vw);
    padding: 7px 10px;
    border-radius: 7px;
    color: #fff;
    background: #111;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 6px);
    transition: opacity 180ms ease, transform 180ms ease;
    white-space: normal;
}

.bm-tooltip-a9f3c2d1::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #111;
}

.bm-logo-card-a9f3c2d1:hover .bm-tooltip-a9f3c2d1,
.bm-logo-card-a9f3c2d1:focus-visible .bm-tooltip-a9f3c2d1 {
    opacity: 1;
    transform: translate(-50%, 0);
}

.bm-toggle-a9f3c2d1 {
    position: absolute;
    z-index: 25;
    top: 10px;
    right: 10px;
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(0, 0, 0, .12);
    border-radius: 999px;
    color: #111;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
    cursor: pointer;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.bm-toggle-a9f3c2d1:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .16);
}

.bm-toggle-icon-a9f3c2d1 {
    position: relative;
    display: block;
    width: 14px;
    height: 16px;
}

.bm-toggle-icon-a9f3c2d1::before,
.bm-toggle-icon-a9f3c2d1::after {
    content: '';
    position: absolute;
    top: 1px;
    width: 4px;
    height: 14px;
    border-radius: 2px;
    background: currentColor;
}

.bm-toggle-icon-a9f3c2d1::before { left: 1px; }
.bm-toggle-icon-a9f3c2d1::after { right: 1px; }

.bm-wrapper-a9f3c2d1.is-user-paused-a9f3c2d1 .bm-toggle-icon-a9f3c2d1::before {
    top: 1px;
    left: 3px;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 11px solid currentColor;
    border-radius: 0;
    background: transparent;
}

.bm-wrapper-a9f3c2d1.is-user-paused-a9f3c2d1 .bm-toggle-icon-a9f3c2d1::after {
    display: none;
}

.bm-pause-hover-a9f3c2d1:hover .bm-track-a9f3c2d1,
.bm-wrapper-a9f3c2d1.is-logo-focused-a9f3c2d1 .bm-track-a9f3c2d1,
.bm-wrapper-a9f3c2d1.is-user-paused-a9f3c2d1 .bm-track-a9f3c2d1,
.bm-wrapper-a9f3c2d1.is-out-of-view-a9f3c2d1 .bm-track-a9f3c2d1,
.bm-wrapper-a9f3c2d1.is-page-hidden-a9f3c2d1 .bm-track-a9f3c2d1 {
    animation-play-state: paused;
}

.bm-wrapper-a9f3c2d1.is-reduced-static-a9f3c2d1 .bm-track-a9f3c2d1 {
    animation: none !important;
    transform: none !important;
}

.bm-wrapper-a9f3c2d1.is-reduced-static-a9f3c2d1 .bm-row-viewport-a9f3c2d1 {
    -webkit-mask-image: none;
    mask-image: none;
    overflow: auto;
    scrollbar-width: thin;
}

.bm-wrapper-a9f3c2d1.is-reduced-static-a9f3c2d1.bm-orientation-horizontal .bm-track-a9f3c2d1 {
    padding-bottom: 4px;
}

.bm-wrapper-a9f3c2d1.is-reduced-static-a9f3c2d1 .bm-clone-group-a9f3c2d1 {
    display: none;
}

@media (prefers-reduced-motion: reduce) {
    .bm-logo-image-a9f3c2d1,
    .bm-logo-card-a9f3c2d1,
    .bm-tooltip-a9f3c2d1,
    .bm-toggle-a9f3c2d1 {
        transition-duration: 0.01ms !important;
    }
}
