.advArea {
  position: relative;
  text-align: center;
  margin: 24px 0px 16px;
}
.advArea h3 {
  color: rgb(84, 84, 84);
  font-size: 0.875rem;
  font-weight: 600;
  margin: 5px 0px;
  display: inline-block;
  position: relative;
  padding: 0px 35px;
}
.advArea h3::before, .advArea h3::after {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 25px;
  height: 2px;
  background-color: rgb(228, 145, 42);
}
.advArea h3::before {
  left: 0px;
}
.advArea h3::after {
  right: 0px;
}
.advArea .content {
  height: 180px;
  margin: 0px auto;
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 2;
}
.advArea .content::before, .advArea .content::after {
  background: -webkit-gradient(linear, left top, right top, from(white), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to right, white 0%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 180px;
  position: absolute;
  width: 120px;
  z-index: 3;
  visibility: inherit;
}
.advArea .content::before {
  left: 0px;
  top: 0px;
}
.advArea .content::after {
  right: 0px;
  top: 0px;
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
}
.advArea .content ul {
  -webkit-animation: 40s linear 0s infinite normal none running scroll;
          animation: 40s linear 0s infinite normal none running scroll;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 900px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  list-style: none;
}
.advArea .content ul li {
  width: 160px;
  text-align: center;
}
.advArea .content ul li img {
  width: 95%;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(-450px);
            transform: translateX(-450px);
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(-450px);
            transform: translateX(-450px);
  }
}