.about_description {
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 40px;
  transition: color 0.3s ease;
}

html.dark-mode .about_description {
  color: rgba(224, 224, 224, 0.8);
}
.about_skills_box {
  margin-bottom: 50px;
  padding: 24px;
  border-bottom: 2px solid #2c98f0;
  transition: border-color 0.3s ease;
}

html.dark-mode .about_skills_box {
  border-bottom: 2px solid #60a5fa;
}
.about_skills_box > i {
  margin-bottom: 20px;
  font-size: 30px;
  color: #2c98f0;
  transition: color 0.3s ease;
}

html.dark-mode .about_skills_box > i {
  color: #60a5fa;
}
.about_skills_box > h3 {
  font-weight: 500;
  margin-bottom: 30px;
  text-transform: capitalize;
}
.about_skills_box:nth-child(2) > i {
  color: #f0a22c;
}
.about_skills_box:nth-child(2) {
  border-bottom: 2px solid #f0a22c;
}
.about_skills_box:nth-child(3) > i {
  color: #f02cc9;
}
.about_skills_box:nth-child(3) {
  border-bottom: 2px solid #f02cc9;
}
.about_skills_box:nth-child(4) > i {
  color: #e71b4ee2;
}
.about_skills_box:nth-child(4) {
  border-bottom: 2px solid #e71b4ee2;
}
@media screen and (min-width: 768px) {
  .about_skills {
    display: flex;
    gap: 20px;
    flex-direction: row;

    justify-content: space-between;
    gap: 30px;
  }
  .about_skills_box {
    flex-grow: 3;
  }
}
