/*********************
START: ABOUT US
*********************/
section.topAbout {
  margin-block: 180px;
  display: flex;
  justify-content: space-between;
}
section.topAbout h1 {
  width: 40%;
  font-size: var(--h1-size);
}
section.topAbout .rightTopAbout {
  width: 60%;
}
section.topAbout .rightTopAbout .text-About {
  margin-block-end: 40px;
  line-height: var(--line-height);
}
.rightTopAbout ul li {
  padding: 1.5rem 1rem;
  border-bottom: 1px solid var(--text-color2);
  margin-block-end: 0.5rem;
}

.rightTopAbout ul li .accordion {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: var(--txt18);
}

.rightTopAbout ul li .accordion > img {
  transition: all 0.3s ease;
}

.rightTopAbout ul li.open .accordion > img {
  transform: rotate(180deg);
}

.rightTopAbout ul li .accordion h6 {
  color: var(--gray-scale-1);
}

.rightTopAbout ul li .accordion h6,
.rightTopAbout ul li .panel p {
  font-size: 18px;
  font-weight: 400;
  line-height: var(--txt18);
  line-height: var(--line-height150);
}

.rightTopAbout ul li .panel {
  max-height: 0px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.rightTopAbout ul li .panel p {
  margin-block-start: 0.75rem;
  color: var(--gray-scale-3);
}
section.skills {
  display: flex;
  justify-content: space-between;
}
.leftSkills {
  width: 60%;
}
.leftSkills h3 {
  font-size: var(--h2-size);
  margin-block-end: 15px;
}
.leftSkills p {
  line-height: var(--line-height);
}
ul.rightSkills {
  width: 31%;
  display: flex;
  flex-wrap: wrap;
}
ul.rightSkills li {
  background: white;
  color: var(--text-color4);
  padding: 5px 10px;
  border-radius: var(--border-radius);
  margin-block: 6px;
  margin-inline-end: 13px;
  font-size: var(--text-size2);
}
section.picSec {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.leftImageAbout {
  width: 45%;
}
.leftImageAbout img {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}
.rightImageAbout {
  width: 31%;
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  section.topAbout,
  section.skills,
  section.picSec {
    flex-wrap: wrap;
  }
  section.topAbout h1,
  section.topAbout .rightTopAbout,
  .leftSkills,
  ul.rightSkills,
  .leftImageAbout,
  .rightImageAbout {
    width: 100%;
  }
  section.topAbout h1,
  .leftSkills h3 {
    font-size: 3rem;
  }
  section.topAbout .rightTopAbout .text-About {
    margin-block-start: 20px;
  }
  .rightTopAbout ul li .accordion h6 {
    font-size: 22px;
  }
  .leftImageAbout {
    margin-block: 60px 30px;
  }
}

@media screen and (min-width: 577px) and (max-width: 768px) {
}

@media screen and (max-width: 576px) {
}
