/* Process improvement circle illustration */

div.responsive-circle {
	width: 80%;
	margin: 40px auto;
	
}
div.circle-container {
	display: none;
}
@media screen and (min-width: 640px) {
	div.responsive-circle {
		display: none;
	}
/*outside of round button*/
 .btn{ 
	display: inline-block;
	position: relative;
	text-decoration: none;
	color: rgba(3, 169, 244, 0.54);
	width: 160px;
	height: 160px;
	border-radius: 50%;
	text-align: center;
	background: #f7f7f7;
	box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.08);
}
/* inner button */
 .btn .btn-inner { 
	position: absolute;
	content: '';
	width: 140px;
	height: 140px;
	vertical-align: middle; 
	left: 8px;
	top: 7px;
	border-radius: 50%;
	font-size: 1.5em;
	font-style: normal;
	font-weight: bold;
	background-image: -webkit-linear-gradient(#e8e8e8 0%, #d6d6d6 100%);
	background-image: linear-gradient(#e8e8e8 0%, #d6d6d6 100%);
	text-shadow: 1px 1px 1px rgba(255, 255, 255, 0.66);
	box-shadow: inset 0 2px 0 rgba(255,255,255,0.5), 0 2px 2px rgba(0, 0, 0, 0.19);
	border-bottom: solid 2px #b5b5b5;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #003366;
}
 div.circle-container {
	 display: block;
	 position: relative;
	 width: 32em;
	 height: 32em;
	 padding: 2.8em;
	 border-radius: 50%;
	 margin: 3em auto 0 auto;
 }
div.circle-container div {
	display: block;
	overflow: hidden;
	position: absolute;
	top: 54%;
	left: 54.5%;
	width: 8em;
	height: 8em;
	margin: -5em;
	cursor: pointer;
}
 div.circle-container p {
	transition: 0.5s ease-in-out;
	color: #fff;
	/* use flex to vertically center the text within each div (circle) */
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}
.circle-blue {
	background-color: #036;
}
.circle-red {
	background-color: #c00;
}
.circle-green {
	background-color: #3a7359;
}
.circle-yellow {
	background-color: #ffc000;
}
.circle-purple {
	background-color: #7030a0;
}


	.circle-blue,  
	.circle-red,  
	.circle-green,
	.circle-yellow,
	.circle-purple {
		width: 2em;
		height: 2em;
		border-radius: 50%;
		margin: 4em;
		padding: 3.25em 1em;
		color: #ddd;
		text-align: center;
		font-size: 1.1em;
		font-weight: bold;
	}
	.circle-yellow {
		text-shadow: 1px 1px 2px #666;
	}
	.circle-arrow {
		width: 2em;
		height: 2em;
		margin: 4em;
		padding:  1em;
		color: #ddd;
		text-align: center;
		font-size: 1.1em;
	}
	.circle-arrow span {
		transform: rotate(90deg);
		font-size: 500%;
	}
	/* set position of each circle and arrow */
	.deg0 { transform: rotate(340deg) translate(11em) rotate(20deg); }
	.deg36 { transform: rotate(15deg) translate(10em) rotate(95deg); }
	.deg72 { transform: rotate(52deg) translate(10em) rotate(-51deg); }
	.deg108 { transform: rotate(90deg) translate(9em) rotate(90deg); }
	.deg144 { transform: rotate(128deg) translate(10em) rotate(-129deg); }
	.deg180 { transform: rotate(164deg) translate(10em) rotate(80deg); }
	.deg216 { transform: rotate(200deg) translate(11em) rotate(-200deg); }
	.deg252 { transform: rotate(235deg) translate(11em) rotate(85deg); }
	.deg288 { transform: rotate(270deg) translate(11em) rotate(-270deg); }
	.deg324 { transform: rotate(305deg) translate(11em) rotate(90deg); }
}
