.ticker {
  padding: 0 120px;
  background-color: #1b365d;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 102px;
  margin-top: 35px;
}

#marquee-title {
  z-index: 1;
  position: absolute;
  top: 17px;
}

#marquee-title > h2 {
  font-size: 53.33px;
  margin: 0;
  background: #1b365d;
  color: white;
  padding-right: 103.6px;
  font-family: 'DINCondensedBold';
  font-weight: 100;
}

.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  padding: 32.5px 0;
  border-top: 3px solid white;
  border-bottom: 3px solid white;
  position: relative;
}

.marquee__seperator {
  margin: 0 2rem;
}

.marquee__item {
  display: inline-block;
  will-change: transform;
  animation: marquee 450s linear infinite;
  color: white;
  font-size: 28px;
  font-family: GothamMedium;
  padding-left: 100%;
}

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