@-webkit-keyframes load {
    0% {
      stroke-dashoffset: 0;
    }
  }
  @keyframes load {
    0% {
      stroke-dashoffset: 0;
    }
  }
  .progress {
    position: relative;
    display: inline-block;
    padding: 0;
    text-align: center;
  }
  .progress > li {
    display: inline-block;
    position: relative;
    text-align: center;
    color: #93A2AC;
    font-family: Lato;
    font-weight: 100;
    margin: 2rem;
  }
  .progress > li:before {
    content: attr(data-name);
    position: absolute;
    width: 100%;
    bottom: -2rem;
    font-weight: 400;
  }
  .progress > li:after {
    content: attr(data-percent);
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    font-size: 2rem;
    text-align: center;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .progress svg {
    width: 8rem;
    height: 8rem;
  }
  .progress svg:nth-child(2) {
    position: absolute;
    left: 0;
    top: 0;
    transform: rotate(-90deg);
  }
  .progress svg:nth-child(2) path {
    fill: none;
    stroke-width: 25;
    stroke-dasharray: 629;
    stroke: #fff;
    opacity: 0.9;
    -webkit-animation: load 10s;
            animation: load 10s;
  }