@keyframes scroll {
  0% { transform: translateX(0%); }
  100% { transform: translateY(800%); }
}

.why_container {
    display: flex;
    justify-content: space-between;
    align-content: center;
    flex-wrap: nowrap;
    align-items: center;
    flex-direction: row;
    overflow-x: scroll;
    animation: scrollAnimation 10s linear infinite;
    animation-fill-mode: forwards;
}
/* width */
.why_container::-webkit-scrollbar {
	width: 5px;
	height: 5px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
	box-shadow: inset 0 0 5px grey; 
	border-radius: 10px;
  }
   
  /* Handle */
  ::-webkit-scrollbar-thumb {
	background: blue; 
	border-radius: 10px;
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
	background: #003231; 
  }

	

.why_container .box{

}
.why_container .img-box{
	margin: 0px 3px 0px 13px;

}
.why_container .img-box img:hover{
  /* cursor: ; */
	

}
