.marquee-container {
	width: 100%;
	overflow: hidden;
	white-space: nowrap;
	background-color: #f8f9fa;
	padding: 10px 0;
	border-top: 1px solid #e9ecef;
	border-bottom: 1px solid #e9ecef;
}

.marquee-content {
	display: inline-block;
	padding-left: 100%;
	animation: marquee-scroll 15s linear infinite;
}

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

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

.marquee-content:hover {
	animation-play-state: paused;
}

.marquee-link-button {
	display: inline-flex;
	align-items: center;
	margin: 0 15px;
	text-decoration: none;
	padding: 8px 15px;
	border-radius: 5px;
	font-weight: 600;
	transition: background-color 0.3s ease, color 0.3s ease;
}

.marquee-link-button.btn-primary-custom {
	background-color: #0d6efd;
	color: white;
	border: 1px solid #0d6efd;
}

.marquee-link-button.btn-primary-custom:hover {
	background-color: #0b5ed7;
	color: white;
}

.marquee-link-button.btn-secondary-custom {
	background-color: #6c757d;
	color: white;
	border: 1px solid #6c757d;
}

.marquee-link-button.btn-secondary-custom:hover {
	background-color: #5c636a;
	color: white;
}

.marquee-content span {
	display: inline-block;
}