.scrol_container{
    background: white;
    padding-bottom: 80px;
}
.scrol {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  background: #fff; 
  padding: 10px 0;
}

.scroll-content {
  display: flex;
  animation: scroll-left 20s linear infinite; 
}

.scroll-content img {

  height: 150px;   
  margin: 0 25px; 
  padding: 10px;
  flex-shrink: 0;
  border: 1px solid black;
  border-radius: 5px;
  
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
    .scroll-content img {
  height: 80px;   
  margin: 0 10px; 
  flex-shrink: 0;
  border: 1px solid black;
  border-radius: 5px;
  
}
  }


