.features_boxes span {
	display: block;
	position: relative;
	padding: 5px 0px 5px 20px;
}
.features_boxes span::before {
	background: #009346;
	content: '';
	display: block;
	width: 4px;
	height: 4px;
	position: absolute;
	left: 8px;
	top: 15px;
}
.featured-img {
	background-size: cover;
	background-position: center;
}
.marquee {
    width: 100%;
    overflow: hidden;
  }

  .marquee-content {
    display: flex;
    width: fit-content;
    animation: scroll 20s linear infinite;
  }

  .marquee-content span {
    white-space: nowrap;
    margin-right: 50px;
    font-size: 16px;
    font-weight: 500;
    color: #fff; /* change text color */
    text-transform: uppercase;
  }

  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }