.bricky-slider-wrapper {
    overflow: hidden;
    width: 100%;
    background: #fff;
    padding: 10px 0;
}

.bricky-row {
    display: flex;
    width: max-content;
    animation: scroll var(--speed, 60s) linear infinite;
    gap: 30px;
    margin-bottom: 20px;
    align-items: center;
}

/*.bricky-row {*/
/*    display: flex;*/
/*    width: max-content;*/
/*    animation: scroll linear infinite;*/
/*    animation-duration: calc(var(--speed, 30) * 1s);*/
/*}*/


/* Stagger effect for even rows */
.bricky-row:nth-child(even) {
    margin-left: 80px; /* adjust for stagger/indent */
}

.brick {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px; /* Adjust to match logo height */
}

.brick img {
    height: 100%;
    width: auto;
    display: block;
    object-fit: contain;
}

/* Animation */
@keyframes scroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}
