/*
--------------------------------------
Container
--------------------------------------
*/

.counter-container {
	display: flex;
	flex-wrap: wrap;
	grid-gap: 10px;
	padding: 4em 0;
	overflow : hidden;
}

/*
--------------------------------------
Elements
--------------------------------------
*/

.counter-element {
	flex: 1 1 calc(250px + (200 - 250) * ((100vw - 320px) / (1920 - 320)));
	line-height: 1;
}

/*
--------------------------------------
Content
--------------------------------------
*/

.counter-number-unit {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

/*Icon*/

.counter-icon {
	display: flex;
	align-items: center;
	height: 85px;
}

/*Name*/

.counter-name {
	font-family: var(--e-global-typography-primary-font-family);
	font-size: calc(17px + (20 - 17)*((100vw - 320px) /(1920 - 320)));
	font-weight: 700;
	color: #fff;
	text-align: center;
	line-height: 30px;
	letter-spacing: -0.8px;
	margin-bottom: 0.5em;
}

/*Number*/

.counter-elem {
	font-size: calc(30px + (46 - 30) * ((100vw - 320px) / (1920 - 320)));
	font-style: normal;
	font-weight: 500;
	background: linear-gradient(180deg, #FFF 26%, rgba(255, 255, 255, 0.30) 83%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	text-align: center;
	line-height: 50px;
	margin-bottom: 0;
}