.marquee-01 {
  width: 100%;
  position: relative;
}
.section-resource {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}
.marquee-advanced {
  width: 50%;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}
.marquee-advanced__scroll {
  will-change: transform;
  width: 100%;
  display: flex;
  position: relative;
}
.marquee-advanced__collection {
  will-change: transform;
  display: flex;
  position: relative;
}
.marquee-advanced__item {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}
.marquee-advanced__item-width {
  justify-content: center;
  align-items: center;
  display: flex;
  width: 200px;
  height: 150px;
}
.gradient-left {
  position: absolute;
  top: 0;
  left: 5%;
  width: 40%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to right, rgba(32, 34, 34, 1), rgba(32, 34, 34, 0.90) 40%, rgba(32, 34, 34, 0.503) 70%, rgba(32, 34, 34, 0.134));;
  z-index: 1;
}
.gradient-right {
  position: absolute;
  top: 0;
  right: 5%;
  width: 40%;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to left, rgba(32, 34, 34, 1), rgba(32, 34, 34, 0.90) 40%, rgba(32, 34, 34, 0.503) 70%, rgba(32, 34, 34, 0.134));
  z-index: 1;
}
@media screen and (max-width: 800px) {
  .marquee-advanced__item-width {
  width: 150px;
  height: 100px;
  }
  .marquee-advanced {
    width: 80%;
  }
}


