#banner {
  margin: 0 0 100px 0;
  clear: both;
  overflow: hidden;
}
#banner .scroller {
  max-width: calc(100% - 100px);
  margin: 0 auto;
}
#banner .scroller__inner {
  padding-block: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
#banner .scroller[data-animated="true"] {
  overflow: hidden;
  -webkit-mask: linear-gradient(
    90deg,
    transparent,
    white 10%,
    white 90%,
    transparent
  );
  mask: linear-gradient(90deg, transparent, white 10%, white 90%, transparent);
}
#banner .scroller[data-animated="true"] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 40s)
    var(--_animation-direction, forwards) linear infinite;
}

#banner .scroller img {
  width: 300px;
  height: auto;
}

#banner .scroller[data-direction="right"] {
  --_animation-direction: reverse;
}
#banner .scroller[data-direction="left"] {
  --_animation-direction: forwards;
}
#banner .scroller[data-speed="fast"] {
  --_animation-duration: 20s;
}
#banner .scroller[data-speed="slow"] {
  --_animation-duration: 60s;
}
.factory {
  font-family: "pretendard";
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 0 10px;
}
.factory h3::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #893106;
  margin: 10px auto 60px auto;
  text-align: center;
}
.factory h3 {
  font-size: 2.5rem;
  font-weight: 600;
  margin: 50px 0 50px 0;
}
.factory h3 strong {
  color: #893106;
  font-weight: 900;
}
.factory p {
  font-size: 1.5rem;
  margin-bottom: 30px;
}
.factory_img {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 100px;
}
.factory_img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/*ani stop*/
/*.scroller .scroller__inner:hover {  animation-play-state: paused;} */

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

#banner .tag-list {
  margin: 0;
  padding-inline: 0;
  list-style: none;
}
#banner .tag-list li {
  padding: 1rem;
  background: var(--clr-primary-400);
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem -0.25rem var(--clr-primary-900);
}

/*---------------------------------------
  MOBILE RESPONSIVE              
-----------------------------------------*/
@media (max-width: 1023px) {
  #banner .scroller img {
    width: 150px;
    height: auto;
  }
  #banner {
    margin: 0 0 50px 0;
  }
  #banner .scroller__inner {
    padding-block: 0rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .factory h3 {
    font-size: 1.5rem;
    font-weight: 900;
    margin: 70px 0 20px 0;
  }
  .factory h3 strong {
    color: #893106;
  }
  .factory p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }
}
@media (max-width: 768px) {
}
@media (max-width: 640px) {
  #banner .scroller {
    max-width: calc(100% - 10px);
    margin: 0 auto;
  }
}
@media (max-width: 480px) {
}
@media (max-width: 320px) {
}
