/*
Theme Name: Numerique Child
Author: VamTam
Author URI: https://vamtam.com
Template: numerique
*/



/*

put your child theme styles here


you don't need any @import rules

*/
.marquee {
		width: 100%;
		height: 35px;
		overflow: hidden;
		white-space: nowrap;
		background: #002743;
	}

	.marquee-content {
		display: inline-block;
		animation: marquee 30s linear infinite;
	}

	.marquee-content > div {
		display: inline-block;
	}

	.marquee-content span {
		padding-right: 50px;
		font-weight: 600;
		font-size: 13px;
		line-height: 34px;
		text-align: center;
		letter-spacing: 0.05em;
		color: #FFFFFF;
	}

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