#latest-posts-ticker {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  position: relative;
  height: 25px;
  display: flex;
  align-items: center;
}

#latest-posts-ticker ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
  position: absolute;
  left: 0;
}

#latest-posts-ticker li {
  display: inline-block;
  margin-right: 50px;
  white-space: nowrap;
  line-height: 25px;
  font-size: 16px;
  text-transform: capitalize !important;
  position: relative;
}

#latest-posts-ticker li::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 10px solid orange;
}

#latest-posts-ticker li a {
  text-transform: capitalize !important;
}
