.customer-section {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 2.5rem;
  /* border: solid 1px #27272733;
  padding: 1rem .7rem;
  border-radius: 50px; */
}

.customer-profiles {
  display: flex;
}

.customer-profiles img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  margin-left: -10px;       /* overlap effect */
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.customer-profiles img:first-child {
  margin-left: 0;  /* first image doesn't shift */
}

.customer-text {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

/* business */
.bsscustomer-section {
  display: flex;
  align-items: center;
  gap: 15px;
}

.bsscustomer-profiles {
  display: flex;
}

.bsscustomer-profiles img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
  margin-left: -10px;       /* overlap effect */
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

.bsscustomer-profiles img:first-child {
  margin-left: 0;  /* first image doesn't shift */
}

.bsscustomer-text {
  font-size: .5rem;
  font-weight: 500;
  color: #fff;

}

@media screen and(max-width:320px) {
  
}

@media screen and (max-width: 340px) {
  .customer-profiles img {
    width: 30px;
    height: 30px;
  }
}

@media screen and (min-width:356px){
 .customer-profiles img{
    width: 30px;
    height: 30px;
 }
}

@media screen and (min-width:576px){
   .customer-profiles img {
        width: 50px;
        height: 50px;
    }
    
}
