.skills {
  width: 100%;
  min-width: 300px;
  padding: 0 10px;
}

.skills__title {
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--text-secondary-color);
  margin-top: 15px;
  padding-top: 10px;
  padding-bottom: 20px;
}

.skills__container {
  background-color: var(--primary-color);
  padding: 10px 20px;
  border-radius: 5px;
}

.skill__progress {
  width: 100%;
  margin: 10px auto;
  display: flex;
  flex-direction: column;
  align-items: start;
}

.skill__title {
  width: 40px;
  font-size: 1.6rem;
  letter-spacing: 1.2px;
  color: var(--text-secondary-color);
}

.skill__container {
  margin: auto;
  position: relative;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.skill__bar {
  position: relative;
  top: 9px;
  width: 85%;
  height: 10px;
  border-radius: 30px;
  background: #e2e2e2;
  margin-bottom: 15px;
}

.progressing__bar {
  height: 100%;
  border-radius: 30px;
}

/* Barra de progreso HTML */
.progressing__bar--html {
  background-color: var(--primary-color-html);
}

.progressing__circle--html {
  background: var(--primary-color-html);
}

/* Barra de progreso CSS */
.progressing__bar--css {
  background-color: var(--primary-color-css);
}

.progressing__circle--css {
  background: var(--primary-color-css);
}

/* Barra de progreso React */
.progressing__bar--react {
  background-color: var(--primary-color-react);
}

.progressing__circle--react {
  background: var(--primary-color-react);
}

/* Barra de progreso JS */
.progressing__bar--js {
  background-color: var(--primary-color-js);
}

.progressing__circle--js {
  background: var(--primary-color-js);
}

.progressing__circle {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 3px solid var(--text-primary-color);
  border: 3px solid rgb(234, 234, 241);
  border-radius: 50%;
  transform: translateY(-5px) translateX(-5px);
}

.skill__percent {
  width: 35px;
  font-size: 1.8rem;
  color: var(--text-secondary-color);
  margin-left: 30px;
}

/* Media queries */
/* Desktop */
@media screen and (width >=768px) {
  .skills__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 30px;
  }
}

/* Desktop */
@media screen and (width > 1024px) {
  .skills {
    max-width: 1440px;
    margin: 0 auto;
  }

  .skills__container {
    padding: 35px 120px;
  }
}