.bannertop-notif {
  background: red;
  padding: 0px;
  font-size: 13px;
  font-weight: 800;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
}

.marquee {
  display: inline-block;
  padding-right: 100%;
  animation: marquee 25s linear infinite reverse;
}

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



@media (min-width: 1024px) {
    .navigation-space {
        height: 209px;
    }
}


@media (max-width: 1024px) {
    .navigation-space {
        height: 210px;
    }
}



@keyframes blink {
  0%   { opacity: 1; }
  50%  { opacity: 0; }
  100% { opacity: 1; }
}

.blink-text {
  animation: blink 2s infinite;
}
