/* .notice__slider-1 {
  width: 100%;
}
.notice__slider-1 .notice__marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: #f1f1f1;
  padding: 7px 0;
  position: relative;
}
.notice__slider-1 .notice__marquee:hover .notice__marquee-content {
  animation-play-state: paused;
}
.notice__slider-1 .notice__marquee-content {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  animation-delay: 0;
}
.notice__slider-1 .notice__marquee-content .marquee__item {
  display: inline-block;
  margin-right: 50px;
}
.notice__slider-1 .notice__marquee-content .marquee__item .item__title {
  color: black;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0 !important;
  transition: all 300ms ease-in-out;
}
.notice__slider-1 .notice__marquee-content .marquee__item .item__title:hover {
  color: var(--secondary-color);
}
.notice__slider-1 .notice__marquee-content .marquee__item .item__title a {
  color: inherit;
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
} */


.notice__slider-1 {
  width: 100%;
}

.notice__slider-1 .notice__marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background: #f1f1f1;
  padding: 7px 0;
  position: relative;
}

.notice__slider-1 .notice__marquee:hover .notice__marquee-content {
  animation-play-state: paused;
}

.notice__slider-1 .notice__marquee-content {
  display: flex;
  white-space: nowrap;
  animation: marquee 60s linear infinite;
  animation-delay: 0;
  width: max-content;
}

.notice__slider-1 .notice__marquee-content .marquee__item {
  display: inline-block;
  margin-right: 50px;
  flex-shrink: 0;
}

.notice__slider-1 .notice__marquee-content .marquee__item .item__title {
  color: black;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0 !important;
  transition: all 300ms ease-in-out;
  white-space: nowrap;
}

.notice__slider-1 .notice__marquee-content .marquee__item .item__title:hover {
  color: var(--secondary-color);
}

.notice__slider-1 .notice__marquee-content .marquee__item .item__title a {
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}

@keyframes marquee {
  0% {
    transform: translateX(100vw);
  }
  100% {
    transform: translateX(-100%);
  }
}