.outer-band {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 10vh;
  background-color: #f0f0f0;
}

.rotating-band {
  position: absolute;
  background: #C2EEFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 3px 12px #00000029;
  opacity: 1;
  overflow: hidden;
  display: flex;
  /* Added */
  align-items: center;
  /* Added */
}

.rotating-text {
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  width: 100%;
  /* Added */
  text-align: left;
  letter-spacing: 0px;
  opacity: 1;
}

.marquee_div1 {
  background: #C2EEFF;
  color: #fff;
  padding: 3px 15px;
  vertical-align: middle;
  font-family: "Poppins-SemiBold";
  display: flex;
  font-size: 13px;
  margin-bottom: 0px;
}

.marquee_div1 marquee span {
  white-space: nowrap;
  transform: translateX(0);
  animation: b-text-scroll 15s linear infinite;
}

@keyframes b-text-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
.marquee_div2 {
  background: #91DFFD;
  color: #fff;
  font-family: "Poppins-SemiBold";
  padding: 3px 15px;
  vertical-align: middle;
  display: flex;
  font-size: 13px;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.pr-0 {
  padding-right: 0px !important;
}

.mt-30 {
  margin-top: 30px;
}

.marquee-text {
  font-size: 14px;
  font-weight: 600;
  color: #ff0000;
  margin: 0px;
}

.marquee span:nth-child(1) {
  animation-delay: 0s;
}

.marquee span:nth-child(2) {
  animation-delay: 0.8s;
}

.marquee span:nth-child(3) {
  animation-delay: 1.6s;
}

.marquee span:nth-child(4) {
  animation-delay: 2.4s;
}

.marquee span:nth-child(5) {
  animation-delay: 3.2s;
}

@keyframes marquee {
  0% {
    left: 100%;
  }
  100% {
    left: -100%;
  }
}