/* Infographics */
#workers_time {
	position: relative;
	width: 180px;
	height: 180px;
	margin: 0 auto 24px auto;
}
#clock_outer {
	width: 180px;
	height: 180px;
	border: 15px solid black;
	display: inline-block;
	border-radius: 50%;
}
#clock_hour_hand {
	height: calc(50% - 42px);
	width: 15px;
	background: black;
	display: inline-block;
	position: absolute;
	left: 50%;
	top: 50px;
	transform-origin: bottom;
	transform: translateX(-50%);
}
#clock_minute_hand {
	height: calc(50% - 30px);
	width: 15px;
	background: black;
	display: inline-block;
	position: absolute;
	left: 50%;
	top: 30px;
	transform-origin: bottom;
	transform: translateX(-50%) rotate(0deg);
}
#clock_minute_hand.animated {
	animation: clock 3s;
	animation-fill-mode: forwards;
}
@keyframes clock {
 from {
	 transform: translateX(-50%) rotate(0deg);
	}
	 to {
	 transform: translateX(-50%) rotate(216deg);
	}
}
#office {
	position: relative;
	width: 200px;
	height: 200px;
	margin: 0 auto;
}
#building {
	position: absolute;
	left: 0;
	z-index: 2;
	width: 200px;
	height: 200px;
}
#office_fill {
	display: inline-block;
	position: absolute;
	top: 56px;
	left: 50px;
	width: 100px;
	height: 109px;
	background-color: #5514b4;
	transform-origin: bottom;
	transform: scaleY(0);
}
#office_fill.animated {
	animation: fill 3s;
animation-fill-mode: forwards;
}
@keyframes fill {
 from {
	 transform: scaleY(0);
	}
	 to {
	 transform: scaleY(1);
	}
}
#monitors {
	position: relative;
	width: 250px;
	height: 200px;
	margin: auto;
z-index: 1;
}
#monitors #monitor_1 {
	position: absolute;
	left: 0;
	width: 120px;
	top: 70px;
	-ms-transform: translateY(-70px);
background: white;
	z-index: 2;
}
#monitors #monitor_2 {
	position: absolute;
	left: 0;
	width: 120px;
	top: 70px;
	-ms-transform: translateY(-70px);
	z-index: 1;
}
#monitors #monitor_2.animated {
	animation: monitors 3s;
animation-fill-mode: forwards;
}
@keyframes monitors {
	from {
	 left: 0;
	}
	to {
	 left: 130px;
	}
}