@keyframes mymove {
  50% {transform: rotate(360deg); }
}
.inner-circle{
 background-color:#92e0f7;
}
.outer-circle{
animation: mymove 30s linear  infinite;
}
p{
	text-align: left;
}
  .outer-circle {
    width: 180px;
    height: 180px;
	border-radius: 50%;
	border-style: dotted;
  }
  
  .inner-circle {
    width: 150px;
    height: 150px;
	border-radius: 50%;
	border-width: 5px;
	border-style: solid;
	margin: 7%;
  }
  .workflow-text-section {
	margin-top: 10%; 
	text-align: center;
  }
  .workflow-section { 
	padding-top: 15px;
  }
  .workflow-title {
	position:absolute;
	top: 19.5px;
	text-align: center;
  }
  .workflow-circle {
	position: relative;
  }