/* _section font */
$section_heading: 16px;

@mixin text{
  color: $color-blue-gray;
  font-size: 14px;
  font-family: "Open Sans", "Arial" !important;
}
@mixin text_muted{
  @include text;
  color: $color-heading;
  font-size: 12px;
}

@mixin sub_heading{
  color: $color-heading;
  line-height: 22px;
  font-size: 16px;
  font-family: "Avenir", "Arial";
}
._sub-heading{
  @include sub_heading;
}

/* This repo only */
@mixin description-text{
  display: block;
  color: #696969;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  font-weight: 300;
}
@mixin heading-text{
  text-align: center;
  text-transform: uppercase;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 1.2px;
  line-height: 27px;
}