/* ! IMPORTANT NEWS */
@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.news_tag {
  background-color: #a01c14;
  clip-path: polygon(0 0, 86% 1%, 100% 100%, 0% 100%);
  font-size: 10px;
  text-wrap: nowrap;
}

.marquee {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marquee span {
  padding-left: 4%;
  /*animation: marquee 30s linear infinite;*/
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 12px;
}

@media (min-width: 768px) {
  .news_tag {
    font-size: 12px;
  }

  .marquee span {
    font-size: 14px;
    gap: 15px;
  }
}

@media (min-width: 992px) {
  .news_tag {
    font-size: 14px;
  }

  .marquee span {
    font-size: 16px;
  }
}

@media (min-width: 1200px) {
  .news_tag {
    font-size: 16px;
  }

  .marquee span {
    font-size: 16px;
  }
}
