.about {
  padding: 100px 15px;
  background-color: #fff;
}

.img {
  flex: 0 0 50%;
  max-width: 50%;
}

.img img {
  width: 100%;
  border-radius: 25px;
  display: block;
}

.text {
  flex: 0 0 50%;
  max-width: 50%;
  padding-left: 30px;
}

.text h4 {
  font-size: 25px;
  font-weight: 600;
  margin: 0 0 10px;
  color: #000;
}

.text h6 {
  font-size: 18px;
  font-weight: 500;
  margin: 0 0 25px;
  color: #000;
}

.text h6 span {
  color: #fa5b0f;
  position: relative;
}

.text h6 span::before {
  content: "";
  left: 0;
  right: 90%;
  position: absolute;
  height: 2px;
  bottom: 0px;
  transition: all 0.5s ease;
}

.text h6 span:hover::before {
  content: "";
  left: 0;
  right: 0;
  position: absolute;
  height: 2px;
  background-color: #ff6f00;
  bottom: 0px;
}

.text p {
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
  color: #838383;
}

.skills {
  padding: 20px 0px;
}

.skills h6 {
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 25px;
  color: #000;
}

.skills-list {
  width: 300px;
  display: flex;
  justify-content: space-between;
}

.fa-ul li {
  font-size: 14px;
  font-weight: 400;
  color: #838383
}

.fa-ul .fa-li {
  font-size: 14px;
  font-weight: 400;
  color: #838383
}

.social {
  padding-top: 10spx;
}

.social a {
  height: 35px;
  width: 35px;
  background-color: #000;
  display: inline-block;
  border: 2px solid #000;
  border-radius: 60px;
  line-height: 3px;
  text-align: center;
  margin: 1px 1em 100 auto;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  color: #fa5b0f;
  line-height: 1.8;

}

.social a:hover {
  background-color: transparent;
  color: #000;
}

.social a .fa {
  color: #fff;
  font-size: 14px;
}

.social a .fa:hover {
  color: #000;
}

.social1 {
  padding-top: 10px;
}

.social1 a {
  height: 4em;
  width: 4em;
  background-color: #000;
  display: inline-block;
  border: 8px solid #000;
  border-radius: 60px;
  line-height: 3px;
  text-align: center;
  margin: 1px 1em 100 auto;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  color: #fa5b0f;
  line-height: 1.8;

}

.social1 a:hover {
  background-color: #000;
  color: #ffffff;
}

.social1 a .fa {
  color: #fff;
  font-size: 20px;
}

.social1 a .fa:hover {
  color: #000;
}
/*********************  Skill Bar Section *******************/

.skill-bars {
  width: 700px;
  background: #232323;
  box-shadow: 0 0 10px rgb(0 0 0 /85%);
  border-radius: 10px;
  max-width: 100%;
  padding: 15px;
  margin: 0 auto 30px;
  margin: 3em auto;
  font-family: var(--bs-body-font-family);
}

.skill-bars .bar:not(:first-child) {
  margin: 20px 0;

}

.skill-bars .bar .info {
  margin-bottom: 10px;
}

.skill-bars .bar .info span {
  font-weight: 500;
  font-size: 16px;
  opacity: 0;
  animation: showText 3s 1s linear forwards;
  color: #fff;
}

.skill-bars .bar .progress-line {
  height: 5px;
  width: 100%;
  background: #f0f0f0;
  position: relative;
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 4px;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.05),
    0 0 0px rgb(0 0 0 / 85%);
  animation: animate 3s cubic-bezier(1, 0, 0.5, 1) forwards;
}

.bar .progress-line span {
  height: 100%;
  position: absolute;
  border-radius: 10px;
  transform: scaleX(0);
  transform-origin: left;
  background: #fa5b0f;
  animation: animate 4s 1s cubic-bezier(1, 0, 0.5, 1) forwards;
}

.bar .progress-line.Presentation span {
  width: 50%;
}

.bar .progress-line.Public_Speaking span {
  width: 40%;
}

.bar .progress-line.Debating span {
  width: 85%;
}

.bar .progress-line.Being_a_team_member span {
  width: 90%;
}

.bar .progress-line.Trading span {
  width: 95%;
}

.bar .progress-line.Cooking span {
  width: 85%;
}

.bar .progress-line.Traveling span {
  width: 90%;
}



.progress-line span::before {
  position: absolute;
  content: "";
  top: -10px;
  right: 0;
  height: 0;
  width: 0;
  border: 7px solid transparent;
  border-bottom-width: 0px;
  border-right-width: 0px;
  border-top-color: #fff;
  opacity: 0;
  animation: showText2 1s 3s linear forwards;
}

.progress-line span::after {
  position: absolute;
  top: -28px;
  right: 0;
  font-weight: 500;
  background: #fdfdfd;
  color: #fa5b0f;
  padding: 1px 8px;
  font-size: 12px;
  border-radius: 3px;
  opacity: 0;
  animation: showText2 1s 3s linear forwards;
}

.progress-line.Presentation span::after {
  content: "50%";
}

.progress-line.Public_Speaking span::after {
  content: "40%";
}

.progress-line.Debating span::after {
  content: "85%";
}

.progress-line.Being_a_team_member span::after {
  content: "90%";
}

.progress-line.Trading span::after {
  content: "95%";
}

.progress-line.Cooking span::after {
  content: "85%";
}

.progress-line.Traveling span::after {
  content: "90%";
}



/*********************  Skill Bar Section Close *******************/