.custom-marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  background-color: #02449A;
  padding-top: 16px;
  padding-bottom: 16px;
}

.marquee-track {
  display: inline-flex;
  white-space: nowrap;
  animation: scroll linear infinite;
  will-change: transform;
  align-items: center;
}

.marquee-track::after {
  content: attr(data-duplicate);
}

.marquee-item {
  display: inline-block;
  font-family: "Manrope", Sans-serif;
  color: #FFF;
  font-size: 24px;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: 0.48px;
  margin-right: 48px;
}

.marquee-separator {
  display: inline-block;
  margin-right: 48px;
}

.marquee-separator svg {
  vertical-align: middle;
  height: 24px;
}
@keyframes scroll {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

@media(max-width: 1024px){
	.marquee-item {  
  		margin-right: 24px;
	}

	.marquee-separator {
  		margin-right: 24px;
	}
}
