/* Progress Bar 1 */

.progress1 {
	background: rgba(0, 0, 0, 0.1);
	justify-content: flex-start;
	border-radius: 100px;
	align-items: center;
	position: relative;
	padding: 0 5px;
	display: flex;
	height: 40px;
	width: 100%;
}

.progress-value1 {
	animation: load 3s normal forwards;
	box-shadow: 0 10px 40px -10px #fff;
	border-radius: 100px;
	background: #343af4;
	height: 30px;
	width: 0;
}

.progress-value1 span {
	color: #fff;
	font-size: 14px;
	text-align: center;
	display: block;
}

@keyframes load {
	0% {
		width: 0;
	}
}
/*end of Progress Bar 1 */