/**
 * @file
 * Generic global styling
 */

/* fonts */
html {
  -webkit-font-smoothing:antialiased;
  margin-top:0!important;
  background: #fff;
  box-sizing: border-box;
}
*, *::after, *::before {
  box-sizing: inherit;
}
body {
  background: #f7f5f0;
  color: #000;
  font-family: "Whitney A", "Whitney B", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.25;
  margin:0;
  padding:0;
  -webkit-font-smoothing:antialiased;
  text-rendering: optimizeLegibility;
}

#container {
  overflow: visible;
}
.path-frontpage #container,
.ajax-progress {
  display: none;
}

/* links */
.page-wrapper a {
  color: inherit;
  text-decoration: none;
}

/*images*/
.page-wrapper img {
  max-width: 100%;
  height: auto;
}

/* headings */
.page-wrapper h1,
.page-wrapper h2,
.page-wrapper h3,
.page-wrapper h4,
.page-wrapper h5,
.page-wrapper h6 {
  font-family: "Whitney A", "Whitney B", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1;
  margin: 0 0 0.5em;
}
.page-wrapper h1 {
  font-size: 4.5em;
}
.page-wrapper h2 {
  font-size: 1.125em;
}
.page-wrapper h3 {
  font-size: 2em;
}
.page-wrapper h4 {
  font-size: 1.5em;
}
.page-wrapper h5 {
  font-size: 1em;
  line-height: 1.25;
}
.page-wrapper h6 {
  font-size: .9375em;
}
.page-wrapper p {
  margin: 0 0 0.5em;
}
@media only screen and (max-width: 68em) {
  .page-wrapper h1 {
    font-size: 4em;
  }
}
@media only screen and (max-width: 48em) {
  .page-wrapper h1 {
    font-size: 3em;
    margin-bottom: 0.5em;
  }
}
