/*
 * Responsive font size mixins.
 */
/*
 * Text styling.
 * Also see heading.scss.
 */
.text-bold {
  font-weight: 700;
}

.text-label {
  font-weight: 700;
  margin-right: 5px;
}

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

.text-small-3 {
  font-size: 0.5rem;
}

.text-small-2 {
  font-size: 0.8rem;
}

.text-small-1 {
  font-size: 0.9rem;
}

.text-normal {
  font-size: 1rem;
}

.text-large-1 {
  font-size: 1.1rem;
}

.text-large-2 {
  font-size: 1.3rem;
}

.text-large-3 {
  font-size: 1.5rem;
}

.text-large-4 {
  font-size: 2rem;
}

.text-large-5 {
  font-size: 3rem;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.heading {
  margin-top: 10px;
}
.headingh1 {
  font-size: 3rem;
}
.headingh2 {
  font-size: 1.3rem;
}
.headingh3 {
  font-size: 1.1rem;
}

.heading-level--largest {
  font-size: 3rem;
}

.heading-level--larger {
  font-size: 1.8rem;
}

.heading-level--large {
  font-size: 1.1rem;
}

.heading-color--darkgreen {
  color: #105610;
}

.heading-color--white {
  color: #fff;
}

.heading-color--darkgrey {
  color: #4c4c4c;
}