.feature-scroll{
  background-color: #E5EFF5;
  overflow: hidden;
  padding: 80px 0;
  position: relative;
}
.feature-scroll:before{
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 0; right: 0;
  background: linear-gradient(90deg, rgba(229,239,245,1) 0%, rgba(229,239,245,1) 5%, rgba(255,255,255,0) 35%, rgba(255,255,255,0) 65%, rgba(229,239,245,1) 95%, rgba(229,239,245,1) 100%);
  z-index: 1;
}
.feature-list-wrap{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  will-change: left;
}
.feature-list{
  display: flex;
  align-items: center;
/*   animation-name: marquee;
  animation-duration: 60s;
  animation-iteration-count: infinite; */
}
.feature{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 300px;
  max-width: 300px;
  min-width: 300px;
  margin: 0 15px;
}
.feature .img-background{
  min-width: 64px;
  min-height: 64px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;  
  margin-right: 30px;
  padding: 10px;
}
.feature img{
  width: 100%;
  height: auto;
}
.feature span{
  font-size: calc(17px + 0.2vw);
  padding-right: 10px;
}
@media (max-width: 768px){
  .feature{
    margin: 0;
  }
}