@import
	url(https://fonts.google.com/css?family=Roboto:300,300,500,600,700,800,900)
	;
/* 
*{
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: #101010;
} 

.container {
  position: relative;
  width: 900px;
  display: flex;
  justify-content: space-around;
}
*/
.container .card-one {
	position: relative;
	/* width: 259px;
		background: linear-gradient(0deg, #1b1b1b, #222, #1b1b1b); */
	display: flex;
	justify-content: center;
	align-items: center;
	height: 320px;
	border-radius: 12px;
	text-align: center;
	overflow: hidden;
	transition: 0.5s;
	border: none;
	box-shadow: 0px 0px 9px #EAF1F8;
}

/* .container .card-one:hover {
	transform: translateY(-10px);
	box-shadow: 0 15px 35px rgba(0, 0, 0, .5);
}
 */
.container .card-one:before {
	content: '';
	position: absolute;
	top: 0;
	left: -50%;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, .03);
	pointer-events: none;
	z-index: 1;
}

.percent {
	position: relative;
	width: 150px;
	height: 150px;
	border-radius: 50%;
	/* box-shadow: inset 0 0 50px #000;
	background: #222; */
	z-index: 1000;
}

.percent .number {
	position: absolute;
	top: 36px;
	left: 4px;
	width: 100%;
	height: 100%;
	/* display: flex; */
	justify-content: center;
	align-items: center;
	border-radius: 50%;
}

.percent .number h2 span {
	color: #03a790;
	font-weight: 700;
	font-size: 54px;
	transition: 0.5s;
	margin-bottom: 0px;
}

sup {
	top: -1.0em !important;
	font-size: 22px;
}

/* .card-one:hover .percent .number h2 {
	color: #03a790;
	font-size: 60px;
} */
.percent .number h2 {
	font-size: 30px;
	color: #3e3e3e;
	transition: 0.5s;
	margin-bottom: 0px;
}
/* .card-one:hover .percent .number h2 span {
	color: #03a790;
} */
.text {
	position: relative;
	color: #000;
	margin-bottom: 20px;
	font-weight: 700;
	font-size: 18px;
	letter-spacing: 1px;
	/* text-transform: uppercase; */
	transition: 0.5s;
}

/* .card-one:hover .text {
	color: #000;
} */
svg {
	position: relative;
	width: 150px;
	height: 150px;
	z-index: 1000;
}

svg circle {
	width: 100%;
	height: 100%;
	fill: none;
	stroke: #bbc0c33d;
	stroke-width: 10;
	stroke-linecap: round;
	transform: translate(5px, 5px);
}

svg circle:nth-child(2) {
	stroke-dasharray: 440;
	stroke-dashoffset: 440;
}

.card-one:nth-child(1) svg circle:nth-child(2) {
	stroke-dashoffset: 352;
	stroke: #03a790;
}

.card-one:nth-child(2) svg circle:nth-child(2) {
	stroke-dashoffset: calc(440 - ( 440 * 85)/100);
	stroke: #03a790;
}

.card-one:nth-child(3) svg circle:nth-child(2) {
	stroke-dashoffset: calc(440 - ( 440 * 60)/100);
	stroke: #03a790;
}

@media screen and (min-width:992px) and (max-width:1199px) {
}

/* For Medium Screen Size  */
@media screen and (min-width:768px) and (max-width:991px) {
	.container .card-one {
		height: 219px;
		margin-bottom: 20px;
	}
}

@media screen and (min-width:576px) and (max-width:767px) {
	.container .card-one {
		height: 219px;
		margin-bottom: 20px;
	}
}

@media screen and (max-width:575px) {
	.container .card-one {
		height: 219px;
		margin-bottom: 0px;
	}
	.text {
		margin-bottom: 0px;
		font-size: 16px;
	}
}