#skills{
  scroll-margin-top: 90px;
}

#skills-container {
  padding: 60px 0px 160px 100px;
  display: flex;
  justify-content: space-between;
}

#skills-content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: relative;
}

#skills-icons {
  width: 662px;
  height: 664px;
}

#skills-description {
  width: 492px;
  height: 560px;
}

#skills-icons {
  display: flex;
  flex-direction: row;
  gap: 80px;
}

.skill-icons-div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: white;
  font-size: 16px;
  text-align: center;
}

.skill-rows {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 16px 8px 16px 8px;
}

#lerning-icon {
  filter: invert(42%) sepia(93%) saturate(1352%) hue-rotate(87deg)
    brightness(119%) contrast(119%);
}

#skills-description-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: white;
  font-size: 16px;
}

#skills-head {
  width: 100%;
  font-size: 90px;
  font-weight: 700;
  color: #fff;
  line-height: 120%;
  margin-bottom: 35px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

#skills-seperator {
  width: 100%;
  height: 0;
  border: none;
  border-top: 4px solid rgba(28, 218, 230, 1);
  margin-left: 32px;
}

#other-skills-need {
  font-size: 32px;
  font-weight: 700;
}

#other-skills-need span {
  color: rgba(151, 71, 255, 1);
}

#btn-div {
  margin-top: 40px;
}

#other-skills-need p {
  margin: 40px 0px 16px 0px;
}

#highlight-description p {
  margin: 0;
  padding-right: 100px;
}

#skills-more-learnings p {
  margin: 0;
}

.skills-icon {
  transition: transform 0.25s ease;
}

.skill-icons-div:hover .skills-icon {
  transform: scale(1.05) translateY(-12px);
}

@media (max-width: 1285px) {
  .skills-icon {
    transition: none;
  }

  .skill-icons-div:hover .skills-icon {
    transform: none;
    transition: none;
  }

  #skills-container {
    padding: 60px 0px 120px 16px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "highlight"
      "icons"
      "other"
      "more"
      "btn";
    align-items: center;
    gap: 24px;
  }

  #skills-icons {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 28px 20px;
    grid-area: icons;
  }

  .skill-rows {
    display: contents;
  }

  #skills-description {
    display: contents;
  }

  #skills-description-content {
    display: contents;
  }

  #skills-head {
    grid-area: head;
    font-size: 56px;
    justify-content: flex-end;
    text-align: right;
  }

  #skills-seperator {
    width: 160px;
    margin-left: 16px;
  }

  #highlight-description p {
    padding-right: 8px;
    padding-bottom: 40px;
  }

  #highlight-description {
    grid-area: highlight;
    text-align: left;
    width: min(520px, 100%);
    justify-self: start;
  }

  #other-skills-need {
    grid-area: other;
    text-align: right;
    justify-self: end;
    padding-right: 16px;
  }

  #skills-more-learnings {
    grid-area: more;
    text-align: right;
    justify-self: end;
    padding-right: 16px;
  }

  #btn-div {
    grid-area: btn;
    justify-self: center;
  }
}

@media (max-width: 900px) {
  #skills-icons {
    grid-template-columns: repeat(3, minmax(120px, 1fr));
    gap: 24px 16px;
  }

  #skills-head {
    font-size: 44px;
  }

  #other-skills-need {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  #skills-container {
    padding: 40px 0px 80px 12px;
  }

  #skills-icons {
    grid-template-columns: repeat(3, minmax(80px, 1fr));
    gap: 20px 0px;
  }

  #skills-head {
    font-size: 36px;
  }

  .skill-icons-div {
    font-size: 14px;
  }

  .skills-icon {
    width: 40px;
  }
}
