/*----------------------------------------*/
/*  - Progress
/*----------------------------------------*/
.skill-area {
	position: relative;
}
.progress-item:not(:last-child) {
  margin-bottom: 30px;
}
.progress-item h3 {
  line-height: 1.9;
}
.progress-item:nth-child(1) .progress-bar-current {
  transition-delay: 300ms;
}
.progress-item:nth-child(2) .progress-bar-current {
  transition-delay: 500ms;
}
.progress-item:nth-child(3) .progress-bar-current {
  transition-delay: 700ms;
}
.progress-bar {
  box-shadow: 0px 7px 17px rgba(242, 113, 70, 0.21);
  background-color: #FFE2D8;
  border-radius: 100px;
  position: relative;
  width: 100%;
  height: 10px;
}
@media only screen and (min-width: 1550px), only screen and (min-width: 1200px) and (max-width: 1549px) {
  .progress-bar {
    width: 510px;
  }
}
.progress-bar span {
  position: absolute;
  top: -35px;
  right: 0;
}
.progress-bar-current {
  background-color: var(--primary-color);
  transition: var(--transition);
  border-radius: 100px;
  position: absolute;
  width: 0%;
  height: 10px;
}