/*
To make the title and tagline work, add the following to the html file:
    <div class="apd-title">
      <h2>Style apd-title
        <span>Example Tagline Text</span>
      </h2>
    </div>
*/

.apd-title {
  margin-top: 10px;
  margin-bottom: 20px;
}

h1 {
  position: relative;
  padding: 0;
  margin: 0;
  font-family: "Raleway", sans-serif;
  font-weight: 300;
  font-size: 40px;
  color: #080808;
  -webkit-transition: all 0.4s ease 0s;
  -o-transition: all 0.4s ease 0s;
  transition: all 0.4s ease 0s;
}

h2 span {
  display: block;
  font-size: 0.5em;
  line-height: 1.3;
}
h2 em {
  font-style: normal;
  font-weight: 600;
}

/* === HEADING STYLE #2 === */
.apd-title h2 {
  text-transform: capitalize;
}

.apd-title h2 span {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 3em;
  padding-left: 0.25em;
  color: rgba(0, 0, 0, 0.4);
  padding-bottom: 10px;
}

