
/* Customer Reviews */

  .customer-reviews
  {
    flex-direction: column;
    width:100%;
    height: auto;
    background-color: var(--primary-color);
    color: var(--white-color);
  }

  .titles-span
  {
    color: var(--color-secondary);
  }

  .customer-reviews-slider
  {
    width: clamp(10rem, 100%, 50rem);
    padding: 2em;
    gap:1em;
    flex-direction: column;
    border-radius: var(--border-radius);
    aspect-ratio: 2/1;
    background-color: var(--accent-color);
  }

  .double-quote-img
  {
    height: 15%;
    align-self: flex-start;
    vertical-align: top;
    color: var(--white-color);
  }

  .customer-reviews-slide
  {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    align-items: baseline;
    width: 100%;
    gap:1em;
  }

  .customer-reviews-slide.active
  {
    display: flex;
  }
  
  .customer-quote
  {
    max-height: 13rem;
    font-size: var(--fs-customer-title);
    line-height: var(--lh-customer-title);
    color: var(--color-secondary);
  }

  .customer-span
  {
    color: var(--white-color);
  }

  .customer-photo
  {
    max-width: 20%;
    height: auto;
  }
  
  .customer-info
  {
    font-size: var(--fs-feature-explain);
    color: var(--color-secondary);
  }

  .customer-details
  {
    flex-direction: column;
    padding: 0.5em;
    justify-content: start;
    align-items: start;
    font-size: var(--fs-customer-explain);
  }

  .customer-details p
  {
    width: 100%;
    text-wrap: nowrap;
    color: var(--white-color);
    line-height: var(--lh-sm);

  }
  
  .customer-name
  {
    font-weight: bold;
    color:var(--white-color);
    font-size: var(--fs-feature-title);
  }
  
  .dot-customer
  {
      cursor: pointer;
      height: 0.5em;
      width: 0.5em;
      margin: 0.2em 2px;
      background-color: var(--primary-color);
      border-radius: 50%;
      display: inline-block;
      transition: background-color 0.6s ease;
  }
  
  .dot-customer.active
  {
      background-color: var(--white-color);
  }

