.skills {
  margin-top: 400px;
  max-width: 1024px;
  margin: 0 auto;
  padding: 5rem 0 2rem;

}

.rates-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.rate-box {
  min-width: 230px;
  max-width: 230px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}

.rate-graphic {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  min-width: 230px;
  max-width: 230px;
  background-color: var(--highlight2-color);
}

.rate-bar1 {
  width: 100%;
  background-color: var(--primary-color);
  height: 0.3rem;
}

.rate-bar2 {
  width: 100%;
  background-color: var(--primary-color);
  height: 0.3rem;
}

.rate-bar3 {
  width: 100%;
  background-color: var(--primary-color);
  height: 0.3rem;
}

.rate-bar4 {
  width: 100%;
  background-color: var(--primary-color);
  height: 0.3rem;
}

.rate-percent {
  min-width: 230px;
  max-width: 230px;
  min-height: 120px;
  max-height: 140px;
  background-color: var(--highlight2-color);
  color: var(--primary-color);
  font-weight: 500;
  font-size: 2.3rem;
  display: block;
  justify-content: center;
  text-align: center;
  padding-top: 30px;

}

.rate-name {
  min-width: 230px;
  max-width: 230px;
  font-size: 1.1rem;
  display: flex;
  flex-wrap: wrap;
  padding-left: 20px;
  text-align: left;

}

@media (max-width: 1000px) {

  .rates-container {
    justify-content: space-evenly;
  }

}