@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
/**
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  	font-family: 'Poppins', sans-serif;
}
body
{
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background: #03a9f4;
}
*/
.progressingDiv
{
	padding: 40px;
	background: #182b3c;
	box-shadow: 0 15px 25px rgba(0,0,0,0.4);
}
h2 .progressingTitle
{
	color: #fff;
	margin-bottom: 10px;
	display: inline-block;
	font-weight: 500;
	border-bottom: 2px solid #fff;
}
.progressing ul
{
	position: relative;
}
.progressing ul li
{
	position: relative;
	list-style: none;
	display: table;
	margin: 10px 0;
	padding-left: 34px;
}
.progressing ul li:before
{
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 34px;
	height: 34px;
	background: transparent;
	z-index: 1;
	border-radius: 34px;
	transition: background 0.5s , width 0.5s;
	transition-delay: 0.5s , 0s;
	border: 2px solid #03a9f4;
	box-sizing: border-box;
}
.progressing ul li:hover:before
{
	width: 100%;
	background: #03a9f4;
	transition-delay: 0s , 0.5s;
}
.progressing ul li:after
{
	content: '';
	position: absolute;
	top: 13px;
	left: 12px;
	width: 6px;
	height: 6px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
	z-index: 2;
	transition: 0.5s;
	transition-delay: 0s;
}
.progressing ul li:hover:after
{
	left: 24px;
	transition-delay: 0.5s;
	transform: rotate(45deg) scale(1.5);
}
.progressing ul li p
{
	position: relative;
	z-index: 1;
	padding: 5px 10px;
	font-size: 16px;
	color: #fff;
}