
.container_customer {
  display: flex;
  flex-flow: column;
  text-align: center;
  padding: 90px 6%;
  max-height: 400px;

}

.customer_header {


}

.customer_photo {
  display: flex;
  justify-content: space-between;
  overflow-x: auto; /* Allow horizontal scrolling if needed */
  filter: grayscale(100%);
  padding-top: 35px;

}

.customer_photo img {
  max-height: 100px;
}

@media (max-width: calc(100vw - 170px)) {
  .customer_photo {
    width: auto; /* Reset width if it exceeds the screen size minus 170px */
  }
}

@media (max-width: 690px) {
  .customer_photo {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Three-column layout */
    gap: 15px; /* Space between images */
    padding: 15px 0px;
    justify-items: center;
  overflow: hidden;
    width: fit-content;
    align-self: center;
    
  }
  
  .customer_photo img {
    max-height: 80px; 
  }
  .container_customer:{
    display: none; /* Hidden by default */
  }
}
