.simple-marquee-container * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;

}

.simple-marquee-container {
	width: 100%;
	/* background: #fff; */


	overflow: hidden;
	box-sizing: border-box;
	height: 45px;
	position: relative;
	cursor: pointer;
}

.simple-marquee-container .marquee-sibling {
	padding: 0;
	background: #f58634;
	width: 20%;
	height: 45px;
	line-height: 42px;
	font-size: 20px;
	font-weight: bold;
	color: #ffffff;
	text-align: center;
	float: left;
	left: 0;
	z-index: 2000;
	text-transform: uppercase;
}



.marquee-container {
	overflow: hidden;
	position: relative;
	/* background-color: #f8f9fa; */

}

.marquee-content {
	display: flex;
	animation: marquee 10s linear infinite;
	white-space: nowrap;
}

.marquee-item {
	padding: 10px 20px;
}

/* .marquee-item a {
	margin-right: 30px;
	

} */

.marquee-item a {
	color: #fff;
	text-decoration: none;
	display: flex;
	font-weight: bold;
	align-items: center;
}

.marquee-item span {
	margin-left: 33px;
	/* Add a small space between the text and icon */
}


/* Keyframes for marquee animation */
@keyframes marquee {
	0% {
		transform: translateX(100%);
	}

	100% {
		transform: translateX(-100%);
	}
}