.marquee-container {
  align-items: center;
  background: #f45f3e;
  color: #fff;
  display: flex;
  height: 50px;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  width: 100%;
  margin-top: 70px;
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  position: absolute;
  left: 0;
  top: 20%;
}

.marquee-text {
  font-size: 20px;
  padding-right: 150px;
}

.marquee-text a{
  color:#2aa1db;
  text-decoration:underline;
  font-weight;600;
}

@media (max-width:768px){
  .marquee-container {
    margin-top: 60px;
  } 
  .marquee-text{
    font-size:16px; 
    padding-right:70px;

  }

  .marquee-track{
    top:25%; 

  }

}



