/* ------- Helper Styles -------------*/

body {
  background: #eee;
}

/* === HEADING TITLE === */

.title {
  position: relative;
  background: #f8f8f8;
  width: 90%;
  max-width: 500px;
  padding: 2em;
  border: 3px solid rgba(0, 0, 0, 0.08);
  margin: 8% auto 6%;
}
.title h1 {
  text-transform: capitalize;
  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;
}
.title h1:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 2px;
  content: "";
  background-color: #c50000;
}

.title h1 span {
  display: block;
  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;
  margin-top: 8%;
}
.alt-title h1 {
  text-align:center;
  font-size: 3.5em;
  line-height: 1em;
}
.alt-title h1:before {
  left:50%; margin-left:-30px;
}