.pc-customers {
    position: relative;
    --logo-gap: 48px;
    --logo-cell: 200px;
    width: calc(100% - 96px);
    max-width: 1240px;
    margin: 0 auto;
    scroll-margin-top: 112px;
    padding: 0 0 48px;
    color: #69716d;
    font-family: var(--pc-font, sans-serif);
}
.pc-customers * {
    box-sizing: border-box;
}
.pc-customers-group[hidden] {
    display: none;
}
.pc-customers-window {
    overflow: hidden;
}
.pc-customers-track {
    width: 100%;
}
.pc-customers-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px var(--logo-gap);
    padding: 0;
    margin: 0;
    list-style: none;
}
.pc-customers-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 var(--logo-cell);
    height: 108px;
}
.pc-customers-item img {
    display: block;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}
.pc-customer-kids {
    width: 200px;
}
.pc-customer-sound {
    width: 144px;
}
.pc-customer-sauna {
    width: 184px;
}
.pc-customer-zero {
    width: 148px;
}
.pc-customer-ohno {
    width: 200px;
    filter: brightness(0);
}
.pc-customer-mo {
    width: 200px;
}
.pc-customers.is-animated .pc-customers-window {
    mask-image: linear-gradient(to right, transparent, #000 3%, #000 97%, transparent);
}
.pc-customers.is-animated .pc-customers-track {
    display: flex;
    width: max-content;
    animation: pc-customer-drift var(--logo-duration, 31s) linear infinite;
    animation-play-state: paused;
}
.pc-customers.is-animated .pc-customers-group {
    flex-wrap: nowrap;
    flex: 0 0 auto;
    justify-content: flex-start;
    gap: var(--logo-gap);
    padding-right: var(--logo-gap);
}
.pc-customers.is-running .pc-customers-track {
    animation-play-state: running;
}
@keyframes pc-customer-drift {
    to {
        transform: translateX(calc(-1 * var(--logo-distance, 744px)));
    }
}
@media (max-width: 700px) {
    .pc-customers {
        --logo-cell: 168px;
        --logo-gap: 28px;
        width: calc(100% - 32px);
        padding-bottom: 44px;
    }
    .pc-customers-item {
        height: 98px;
    }
    .pc-customer-kids {
        width: 168px;
    }
    .pc-customer-sound {
        width: 128px;
    }
    .pc-customer-sauna {
        width: 160px;
    }
    .pc-customer-zero {
        width: 136px;
    }
    .pc-customer-ohno,
    .pc-customer-mo {
        width: 168px;
    }
}
@media (prefers-reduced-motion: reduce) {
    .pc-customers.is-animated .pc-customers-track {
        animation: none;
        width: 100%;
    }
    .pc-customers.is-animated .pc-customers-window {
        mask-image: none;
    }
    .pc-customers.is-animated .pc-customers-group {
        flex: 1;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0;
        gap: 16px;
    }
    .pc-customers-group[aria-hidden='true'] {
        display: none;
    }
}

@media (max-width: 700px) and (prefers-reduced-motion: reduce) {
    .pc-customers {
        --logo-cell: calc((100% - 20px) / 2);
        --logo-gap: 20px;
    }
    .pc-customers-group {
        gap: 16px 20px;
    }
}
