#sp-header {
   background: #00000000;
}

.clients-wall {
            display: flex;
            flex-direction: column;
            gap: 20px;
            padding: 80px;
            background: transparent;
        }

        .client-row {
            font-size: 80px;
            font-weight: 300;
            color: #e5e5e5;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .client-row:hover {
            color: #111111;
        }

        .client-preview {
            position: fixed;
            width: 200px;
            height: 300px;
            background-size: cover;
            background-position: center;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.25s ease;
        }

        .client-type {
            position: fixed;
            right: 80px;
            top: calc(50% + 240px);
            font-size: 32px;
            font-weight: 300;
            color: #111111;
            opacity: 0;
            transition: opacity 0.25s ease;
        }
