.cta-area {
    margin: 50px 0 !important;
}
.about-content-inner {
 display: none !important;
}
.service-h {
  color: #23B14D;
}
.future-h {
  color: #ED1B24;
}
.about-area-eight {
 background: #334770;
}
.about-area-eight h2 {
    color: white;
}
.about-content-eight>p {
    color: #ffffffba;
}
.service-offering p {
 color: black;
}
.service-offering ul li {
 color: black;
}
.service-offering img {
 max-width: 450px;
}
.marquee-container {
      height: 300px;
      overflow: hidden;
      position: relative;
      background: #334770;
      border: 1px solid #ccc;
      border-radius: 10px;
    }

    .marquee-content {
      display: flex;
      flex-direction: column;
      animation: scrollUp 20s linear infinite;
    }
    .marquee-content h3 {
     color: #ffc107;
      font-size: 24px;
    }
.marquee-content p {
     color: white;
      font-size: 16px;
      margin-bottom: 6px;
    }
    .marquee-content div {
      padding: 10px;
      font-size: 18px;
      border-bottom: 1px solid #ddd;
    }

    @keyframes scrollUp {
      0% {
        transform: translateY(13%);
      }
      100% {
        transform: translateY(-100%);
      }
    }