	#counter-section{
		background: transparent;
		background: url('../images/bg6.jpg');
		background-repeat: no-repeat;
		background-size: cover;
		background-attachment: fixed;
	}
	#counter-section-in{
		display: flex;
		flex-wrap: wrap;
		width: 100%;
		padding:10px;
		justify-content: center;
		padding:50px;
		background: rgba(0,0,0,.8);
	}
	#counter-section-in .counter-item{
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
		padding:40px 20px;
		max-width: auto;
	}
	#counter-section-in .counter-item i{
		font-size: 3em;
		height: 1.5em;
		width: 1.5em;
		display: flex;
		justify-content: center;
		align-items: center;
		border:2px solid var(--theme-color-three);
		color: var(--theme-color-three);

	}
	#counter-section-in .counter-item h2{
		margin-top: 5px;
		font-size: 2.2em;
		color: white
	}
	#counter-section-in .counter-item h2::after {
		content: ' +';
	}
	#counter-section-in .counter-item p {
		font-size: 1.5em;
		color: white;
		text-align: center;
	}	
	@media(min-width:780px){
	#counter-section-in .counter-item{
		width: 40%;
		flex-grow: 1;
		max-width: 350px;
	}
	}