.skill {
  margin-bottom: 20px;
}
.skill > p {
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  transition: color 0.3s ease;
}

html.dark-mode .skill > p {
  color: #e0e0e0;
}
.skill_bg_box {
  width: 100%;

  background-color: #e0e0e0;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

html.dark-mode .skill_bg_box {
  background-color: #3d3d3d;
}
.skill_percent_box {
  height: 6px;
  background-color: #2c98f0;
  border-radius: 8px;
  width: 80%;
  color: #2c98f0;
  position: relative;
}
.skill_percent_box > span {
  position: absolute;
  top: -25px;
  right: -25px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}
.skillcircle {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  position: absolute;
  top: 22px;
  left: -5px;
  /* transform: translateY(-50%); */
  background-color: #2c98f0;
}
@keyframes slideIn {
  from {
    width: 0;
  }
}

.skill_percent_box {
  animation: slideIn 2.5s ease-out;
}
@media screen and (min-width: 768px) {
  .all_skills {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
