/* LAYOUT STYLESHEET
=============================== */

/* Global */
html {
  background-color: #FFFFFF;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "HelveticaNeue-CondensedBold", "Helvetica Neue";
  font-stretch: condensed;
  font-weight: bold;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  line-height: 72px;
}

h2 {
  font-size: 32px;
  line-height: 48px;
}

h3 {
  font-size: 24px;
  line-height: 36px;
}

p {
  font-family: 'Georgia', serif;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 32px;
}

@media(min-width: 768px) {
  p {
    font-size: 18px;
    line-height: 27px;
  }
}

a {
  text-decoration: none;
}

.link a {
  text-decoration: underline;
  color: #000000;
}

.link a:HOVER {
  text-decoration: none;
  color: #000000;
}

em,
i {
  font-style: italic;
}

/* Grid */
.container {
  margin: 0 auto;
  max-width: 1260px;
  width: 100%;
}

/* Components */
.button {
  background-color: #F28929;
  border-radius: 2px;
  color: #FFFFFF;
  font-family: "HelveticaNeue-CondensedBold", "Helvetica Neue";
  font-stretch: condensed;
  font-weight: bold;
  padding: 12px 16px;
  text-decoration: none;
  transition: background-color 0.35s ease-in-out;
}

.button:hover {
  background-color: #F15E2B;
}

.divider {
  border: 1px solid #F28929;
  border-left: none;
  border-right: none;
  padding: 2px 0;
  display: block;
  margin: 0 auto 32px;
  width: 200px;
}
