.skill-items-wrap .skill-item {    
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  z-index: 2;
  text-align: center;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.skill-item-content {
  padding-left: 20px;
  text-align: left;
}
.skill-items-wrap .skill-item:hover {
  box-shadow: none;
  border: none;
}
.skill-items-wrap .skill-item .progressbar {
  display: inline-block;
  width: 100px;

}
.skill-items-wrap .skill-item .progressbar .circle {
  width: 100px;
  height: 100px;
  color: #131313;
  margin: 0 auto;
  margin-top: 10px;
  display: inline-block;
  position: relative;
  text-align: center;
}
.skill-items-wrap .skill-item .progressbar .circle::after {
  width: 120px;
  height: 120px;
  content: "";
  border: 0px solid #fb4f14;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: 30px;
  left: 30px;
}
.skill-items-wrap .skill-item .progressbar .circle canvas {
  vertical-align: middle;
  border: 0px solid #fb4f14;
  border-radius: 50%;
}
.skill-items-wrap .skill-item .progressbar .circle div {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  line-height: 55px;
  font-size: 24px;
  font-family: var(--heading-font);
  font-weight: 700;
}
.skill-items-wrap .skill-item .progressbar .circle .no-percent {
  display: none !important;
}
.skill-items-wrap .skill-item .sk-title {
  font-size: 16px;
  line-height: 1.5em;
  font-family: var(--heading-font);
  font-weight: 700;
  color: #131313;
	margin: 0px;
}
.skill-items-wrap .skill-item p {
  font-size: 16px;
  line-height: 26px;
  font-family: var(--body-font);
  font-weight: 400;
  color: #343434;
}

@media only screen and (max-width: 480px) {
	.skill-items-wrap .skill-item {
		display: flex;
		flex-direction: column;
		row-gap: 20px;
		align-items: center;
	}
	.skill-item-content {
		padding-left:0px;
	}
}