@media only screen and (max-width: 800px) {
  
#work-collections .row
{
  overflow-x: auto;
  width: 800px;
}

.striped
{
  overflow-x: auto;
  width: 1000px;
}

}

    /* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 .scroll-touch {
  -webkit-overflow-scrolling: touch; /* Lets it scroll lazy */
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: #151b40; 
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #151b40; 
}