.normal {
  font-weight: normal;
}

.bold {
  font-weight: bold;
}

.black {
  font-weight: 900;
}

.upper {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.lower {
  text-transform: lowercase;
}

.lh-none {
  line-height: 1;
}

.lh-low {
  line-height: 1.2;
}

.lh-normal {
  line-height: 1.4;
}

.no-deco,
.no-deco a {
  text-decoration: none;
}

.deco {
  text-decoration: underline;
}

.deco-hover a:hover {
  text-decoration: underline;
}

a.deco-hover:hover {
  text-decoration: underline;
}

.align-center {
  text-align: center;
}

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}