
/*-------------------------------------------------------*/
/* Typography
/*-------------------------------------------------------*/

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,h2,h3,h4,h5,h6 {
  font-family: $heading-font;
  margin-top: 0;
  margin-bottom: 10px;
  color: $heading-color;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.02em;
}

h3,h4,h5,h6 {
  font-weight: 400;
  letter-spacing: normal;
}

h1 { font-size: 36px; }
h2 { font-size: 30px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

h1 > a, h2 > a, h3 > a, h4 > a, h5 > a, h6 > a {
  color: inherit;
}

h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
  color: $heading-color;
  font-size: 85%;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

@include bp-lg-down { .text-lg-center {text-align: center}; }
@include bp-md-down { .text-md-center {text-align: center}; }
@include bp-sm-down { .text-sm-center {text-align: center}; }
@include bp-xs-down { .text-xs-center {text-align: center}; }

a {
  text-decoration: none;
  color: $main-color;
  outline: none;
  @include transition (color .1s ease-in-out);

  &:hover {
    text-decoration: none;
    color: $bg-dark;
    outline: none;
  }

  &:focus {
    color: $main-color;
    text-decoration: none;
    outline: none;
  }
}

p {
  font-size: 16px;
  color: $text-color;
  font-weight: normal;
  line-height: 30px;
  margin: 0 0 10px;
}


.bottom-line:after {
  content: "";
  display: block;
  width: 100%;
  border-bottom: 1px solid $border-color;
  margin: 14px auto 0;
  z-index: 1;
  position: relative;
}

.lead {
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 400;
  line-height: 37px;
}


blockquote {
  padding: 10px 0 10px 35px;
  margin: 30px 0;
  border-left: 2px solid #e9edef;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 30px;
  font-family: $heading-font;
  color: $heading-color;
  position: relative;
  font-weight: 300;

  p {
    font-size: inherit;
    color: inherit;
    font-family: inherit;
    margin-bottom: 0 !important;
    font-weight: 300;
  }

  & > span {
    color: $main-color;
    font-size: 13px;
  }
}