@media (max-width: 768px) {
	.counter-element {
		border-left: none;
		line-height: 1;
		padding: 0;
	}
}

@media (min-width: 1480px) {
	.counter-container {
		display: flex;
		justify-content: space-evenly;
		margin: 5rem auto;
	}

	.counter-element {
		border-left: 1px solid #FFFFFF99;
		line-height: 1;
		padding-left: 100px;
	}
}

/*fake slider*/

@media (max-width: 768px) {
	.counter-container {
		overflow: hidden;
		position: relative;
		display: flex;
		flex-wrap: nowrap;
	}

	.counter-element {
		min-width: 100%;
		transition: transform 0.5s ease-in-out;
	}
}