/* End custom CSS */

.elementor-2946 .elementor-element.elementor-element-cf6ef23 {
	--display: flex;
	--flex-direction: row;
	--container-widget-width: calc(( 1 - var(--container-widget-flex-grow) ) * 100%);
	--container-widget-height: 100%;
	--container-widget-flex-grow: 1;
	--container-widget-align-self: stretch;
	--flex-wrap-mobile: wrap;
	--justify-content: center;
	--align-items: center;
	--margin-top: 0px;
	--margin-bottom: 0px;
	--margin-left: 0px;
	--margin-right: 0px;
	--padding-top: 0px;
	--padding-bottom: 0px;
	--padding-left: 0px;
	--padding-right: 0px;
}

/* Start custom CSS for container, class: .elementor-element-cf6ef23 */
.ticker-wrapper {
	width: 100%;
	overflow: hidden;
	background: #e5fd36;
	padding: 10px 0;
}

.ticker-track {
	display: flex;
	width: fit-content;
	animation: tickerScroll 25s linear infinite;
}

.ticker-content {
	display: flex;
}

.item {
	display: flex;
	align-items: center;
	gap: 24px;
	padding: 0 60px;
	white-space: nowrap;
	font-weight: 600;
	font-size: 20px;
	color: #0033a0;
}

.item img {
	width: 70px;
	height: auto;
	display: block;
}

@keyframes tickerScroll {
	0% {
		transform: translateX(0);
	}
	
	100% {
		transform: translateX(-25%);
	}
}
