.main {
    display: flex;
    flex-direction: column;
  }

.wwa-content {
  display: flex;
  flex-direction: column;
  padding: 10rem 1rem 0;

}

.wwa-content p {
    display: block;
    justify-content: center;
    align-items: center;
    font-weight: lighter;
    word-wrap: break-word;
    text-align: center;
    flex-wrap: wrap;
    font-size: 1.25rem;


    span {
        color: var(--blue);
        font-weight: bold;
    }
}

  .about-sales {
    color: #fff;
    padding: 2rem 0;
    text-align: center;
  }
  .about-sales-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 0 auto;
  }
  .about-sales-card {
    backdrop-filter: blur(2px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    outline: 5px solid white;
    padding: 1rem;
    width: 16rem;
    height: 16rem;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    box-shadow: 8px 6px 20px rgba(0, 0, 0, 0.119), 0 1.5px 6px rgba(0, 0, 0, 0.152);
  }

  .about-sales-card p {
    text-align: left;
    line-height: 1.2;
  }

  .about-sales-img img {
    display: flex;
    justify-content: left;
    width: 3rem;
    height: 3rem;
    margin-bottom: 1rem;
  }
  .about-sales-text {
    color: black;
    font-weight: lighter;
    text-align: left;
  }
  .about-sales-text strong {
    font-size: 2.4rem;
    font-family: 'roboto slab';
    font-weight: bold;
    color: var(--orange);
    line-height: 1.1;
  }

  .wwa-content.active {
    opacity: 1;
    transform: translateY(0);
    z-index: 2;
    pointer-events: auto;
  }
  
  .wwa-content.up{
    opacity: 0;
    transform: translateY(-100vw);
    z-index: 1;
  }
  
  .wwa-content.down {
    opacity: 0;
    transform: translateY(100vw);
    z-index: 1;
  }

  .companies-clients {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: auto;
    background-color: white;
    /* margin-top: 2rem; */

    p {
      font-size: 1.25rem;
      color: var(--orange);
      font-weight: bold;
      margin: 1rem;
    }

  }

  .logo-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  
  .logo-track {
    display: flex;
    width: calc(250px * 14); /* adjust based on total logos * logo width */
    animation: scroll 40s linear infinite;
    margin-bottom: 1rem;
  }
  
  .logo-track img {
    max-height: 150px;
    max-width: 250px;
    object-fit: contain;
    margin: 0 3rem;
  }
  
  /* Animation */
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  .logo-wrapper {
    padding: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    /* gap: 1.5rem; */

    img {
    max-height: 150px;
    max-width: 250px;
    object-fit: contain;
    margin: 0 3rem;
    }
  }

  @media (max-width: 775px) {
    .logo-track img {
      margin: 0;
    }
  }

  @media (max-width: 336px) {
    .about-sales-card{
      height: auto;
    }

    .about-sales-text strong {
      font-size: 1.5rem;

    }
  }