.client-proof-container {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    overflow: hidden;
    width: 100%;
    background-color: var(--hero-background-color);
    padding: 1rem 0;
  }

  .client-proof-container > span:first-of-type 
  {
    display: flex;
    justify-content: center;
    width: 100%;
    font-size: var(--font-medium);
    font-weight: 500;
    text-transform: uppercase;
  }
  
  .client-proof-track {
    display: flex;
    width: max-content;
    animation: scroll-left 30s linear infinite;
  }
  
  .client-proof-logo {
    flex: 0 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .client-proof-logo img {
    max-height: 50px;
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
  }
  
  .client-proof-logo img:hover {
    transform: scale(1.1);
  }
  
  @keyframes scroll-left {
    0% {
      transform: translateX(0%);
    }
    100% {
      transform: translateX(-50%);
    }
  }
  