
.languages {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  list-style: none;
}

.languages li {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-right: 1rem;
  font-weight: 700;
  font-size: 1rem;
}

.languages li::before {
  content: '';
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-image: url('../img/icones/check.svg');
  background-repeat: no-repeat;
  background-size: contain;
  margin-right: .5rem;
}