/* About Section */
.about-myself {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  max-width: 768px;
  min-width: 375px;
  padding: 20% 10%;
  border-top-right-radius: 100px;
  margin-top: 80px;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}

.about-content h2 {
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-size: 40px;
  line-height: 52px;
  color: #172b4d;
  padding-bottom: 20px;
}

.about-content p {
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #344563;
  padding-bottom: 10px;
}

.about-content h3 {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 20px;
  color: #7f8cff;
}

.about-content button {
  color: #396df2;
  font-weight: 500;
  font-size: 17px;
  line-height: 24px;
  letter-spacing: 3%;
  background: #fff;
  width: fit-content;
  border-radius: 10px 10px;
  padding: 12px;
  border: 1px solid #396df2;
  cursor: pointer;
  align-items: center;
}

.about-skills {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  list-style: none;
  padding: 50px 0;
}

.skillList-name {
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
  padding-right: 30px;
  padding-bottom: 20px;
  margin-bottom: 10px;
}

.skillList-name h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
}

.skillList-name button {
  background-color: #fff;
  border: none;
}

.skill-languages {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}

.skill-languages li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px;
  height: 55px;
  background: #f7f7f9;
  border-radius: 8px;
  margin-bottom: 15px;
}

.skill-languages li img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.skill-languages li h4 {
  font-weight: 500;
  font-size: 15px;
  line-height: 20px;
  display: flex;
  align-items: center;
  color: #253858;
}

.icons2 {
  width: 50%;
  height: 30px;
  display: flex;
  list-style: none;
  gap: 10px;
  margin-top: 10px;
}

.icons2 li,
.icons2 li a,
.icons2 li a img {
  width: 15px;
  height: 15px;
}

.skillList-name2 {
  border-bottom: 1px solid #dfe1e6;
}

.about-content button:hover {
  background: #6070ff;
  box-shadow: 0 8px 16px rgba(64, 83, 252, 0.24);
  color: #fff;
}

.about-content button:active {
  border: 1px solid #7f8cff;
  color: #fff;
  background: #2230d2;
}

@media screen and (min-width: 768px) {
  .about-myself {
    flex-direction: row;
    max-width: 100%;
    padding: 10%;
    gap: 20px;
  }

  .about-content {
    flex: 0.4;
  }

  .about-skills {
    flex: 0.6;
    padding: 0 1%;
  }

  .about-content h2 {
    font-weight: 700;
  }

  .about-content h3 {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
  }

  .skill-languages {
    flex-direction: row;
    gap: 10px;
  }

  .skill-languages li {
    flex-direction: column;
    height: 120px;
    width: 122px;
    align-items: flex-start;
  }

  .skillList-name {
    padding: 20px 0;
  }
}
