.main-marq {
  overflow: hidden;
  white-space: nowrap;
  text-align: center;
}

.marq {
  padding-top: 10px;
  padding-bottom: 10px;
  position: relative;
  width: 100%;
}

.marq-inner {
  display: inline-block;
  white-space: nowrap;
  animation: marquee 60s linear infinite;
  -webkit-animation: marquee 60s linear infinite;
}

@media (min-width: 992px) {
  .marq-inner {
    animation: marquee 40s linear infinite;
    -webkit-animation: marquee 40s linear infinite;
  }
}

.marq-text {
  display: inline-block;
  font-size: 1.5rem;
  color: #000;
  margin-right: 0;
}

/* Keyframes */

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

