.scrolling-ticker {
	padding: 20px 0;
}

.scrolling-ticker-box {
	--gap: 30px;
	position: relative;
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
}

.scrolling-content,
.scrolling-content-reverse{
	flex-shrink: 0;
	display: flex;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 50s linear infinite;
}

.scrolling-content-reverse{
	animation: scroll_reverse 50s linear infinite;
}

.scrolling-content .content-wrapper,
.scrolling-content-reverse .content-wrapper{
	display: inline-flex;
	gap: var(--gap);
	align-items: center;
}

.content-wrapper .ticker-title{
	font-family: "Lora", Sans-serif;
    font-size: 50px;
    font-weight: 400;
    text-transform: capitalize;
    line-height: 1.2em;
	color: #000;
	margin: 0;
}

.content-wrapper .ticker-image{
	line-height: 0;
}

.content-wrapper .ticker-image img{
	width: 50px;
	height: 50px;
}


@keyframes scroll {
	from{
		transform: translateX(0);
	}

	to{
		transform: translateX(calc(-100% - var(--gap)));
	}
}

@keyframes scroll_reverse {
	from{
		transform: translateX(-100%);
	}

	to{
		transform: translateX(calc(0 + var(--gap)));
	}
}

@media only screen and (max-width: 991px){
	
	.scrolling-ticker{
		padding: 10px 0; 
	}

	.content-wrapper .ticker-title{
		font-size: 36px;
	}

	.content-wrapper .ticker-image img{
		width: 36px;
		height: 36px;
	}
}

@media only screen and (max-width: 767px){
	
	.scrolling-ticker-box{
		--gap: 20px;
	}

	.content-wrapper .ticker-title{
		font-size: 28px;
	}

	.content-wrapper .ticker-image img{
		width: 28px;
		height: 28px;
	}
}