.content {
	display: block;
	width: 100%;
	overflow: hidden;
	margin: 0 auto;

}
.content *{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-o-box-sizing:border-box;
	box-sizing:border-box;
}

.simple-marquee-container *{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-o-box-sizing:border-box;
	box-sizing:border-box;
	font-family:Arial, "Poppins", Helvetica, sans-serif;
}
.simple-marquee-container {
	width: 100%;
	background: #FBFBFB;
	float: left;
	display: inline-block;
	overflow: hidden;
	box-sizing: border-box;
	height: 37px;
	position: relative;
	cursor: pointer;
}

.simple-marquee-container .marquee-sibling {
	padding: 0;
	/*background-color: #91ECBD;*/
	color: white;
	width: 14%;
	height: 37px;
	line-height: 37px;
	text-align: center;
	float: left;
	left: 0;
	z-index: 1;
}

.simple-marquee-container .marquee, .simple-marquee-container *[class^="marquee"] {
	display: inline-block;
	white-space: nowrap;
	position:absolute;
}

.simple-marquee-container .marquee{
  margin-left: 25%;
}

.simple-marquee-container .marquee-content-items{
  display: inline-block;
  padding: 5px;
  margin: 0;
  height: 45px;
  position: relative;
}

.simple-marquee-container .marquee-content-items li{
  display: inline-block;
  line-height: 35px;
  color: black;
}

.simple-marquee-container .marquee-content-items li:before{
	font: var(--fa-font-solid);
	content: ' \f0ac';
	margin-left: 1rem;
	margin-right: 0.4rem;
}

@media screen and (max-width: 500px) {
	.marquee-sibling p {
		font-size: 15px;
	}

	.simple-marquee-container .marquee-sibling {
		width: 20%;
	}
}
