/* CyberAspireNumberCounter Plugin v1.0.0 [2023-06-29]
 * Author: Sourav Kar
 * Website: http://cyberaspire.com
 * Copyright: CyberAspire Web Services */

/***** CYBERASPIRE NUMBER COUNTER *****/
#canumbercounter {
	width: 100%;
	height: 400px;
	margin: 0;
	padding: 0;
	display: flex;
	position: relative;
	text-align: center;
	color: #fff;
	background-color: rgba(0, 0, 0, 0.54);
	overflow: hidden;
}

#canumbercounter #numbercountercontainer {
	width: 100%;
	margin: auto;
	padding: 0;
	display: flex;
	position: relative;
	flex-wrap: wrap;
	align-items: stretch;
	box-sizing: border-box;
}

#canumbercounter #numbercountercontainer>div {
	margin: 0;
	padding: 20px;
	flex: 1 1 16.66%;
	display: block;
	position: relative;
	align-items: start;
	text-align: center;
	box-sizing: border-box;
}

#canumbercounter h2 {
	margin: 0;
	padding: 0;
	font-family: "Segoe UI", "Roboto", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
	font-size: 5rem;
	font-style: normal;
	font-weight: bold;
	color: #fff;
	text-overflow: ellipsis;
	line-height: normal;
	overflow: hidden;
	white-space: pre;
}

#canumbercounter h2 span {
	padding-right: 5px;
}

#canumbercounter h3 {
	margin: 0;
	padding: 0;
	font-size: 1.5rem;
	font-weight: normal;
	color: #fff;
	line-height: 2.2rem;
}

/***** RESPONSIVE WEB DESIGN *****/
@media screen and (max-width: 920px) {
	#canumbercounter #numbercountercontainer>div {
		flex: 1 1 33.33%;
	}

	#canumbercounter h2 {
		font-size: 3rem;
	}
}