/*
 * Settings
 * Global variables, config switches
 */
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css");
@import url("https://fonts.googleapis.com/css?family=Lato:400,300,700");
/*
 * The medium font stack, returns the most appropriate system font.
 */
/**
 * Target High DPI devices
 *
 * @include hidpi(1.5) {
 *   width: 20em;
 * }
 *
 */
/**
 * Center transform an element on an axis.
 *
 * position: absolute;
 *
 * @include mix-center;
 * @include mix-center(x);
 * @include mix-center(y);
 * @include mix-center(xy);
 */
/**
 * Calculates the sRGB luma of a colour.
 */
/**
 * Returns the most visible colour for a given background.
 *
 * color: mix-pick-visible-color($background-color, $black-text-color, $white-text-color);
 */
/**
 * Mix a color with white. Alternative to sass lighten.
 *
 * background-color: mix-tint(#6ecaa6, 40%);
 */
/**
 * Mix a color with black. Alternative to sass darken.
 *
 * background-color: mix-tint(#6ecaa6, 40%);
 */
/**
 * Add a clearfix
 *
 * Should be used on the containing element
 * @include mix-clearfix;
 */
/**
 * Truncate text and add an ellipsis
 *
 * @include mix-ellipsis;
 * @include mix-ellipsis(50%);
 */
/**
 * HSL and HSV
 *
 * @see https://gist.github.com/1069204
 */
/**
 * Normal
 */
/**
 * Multiply
 */
/**
 * Lighten
 */
/**
 * Darken
 */
/**
 * Darker Color
 */
/**
 * Lighter Color
 */
/**
 * Linear Dodge
 */
/**
 * Linear Burn
 */
/**
 * Difference
 */
/**
 * Screen
 */
/**
 * Exclusion
 */
/**
 * Overlay
 */
/**
 * Soft Light
 */
/**
 * Hard Light
 */
/**
 * Color Dodge
 */
/**
 * Color Burn
 */
/**
 *  Linear Light
 */
/**
 * Vivid Light
 */
/**
 * Pin Light
 */
/**
 * Hard Mix
 */
/**
 * Color Blend
 */
/**
 * Dissolve
 */
/**
 * Divide
 */
/**
 * Hue
 */
/**
 * Luminosity
 */
/**
 * Saturation
 */
/**
 * Subtract
 */
/**
 * Fix for vw, vh, vmin, vmax on iOS 7.
 * http://caniuse.com/#feat=viewport-units
 *
 * This fix works by replacing viewport units with px values on known screen sizes.
 *
 * iPhone 6 and 6 Plus cannot run iOS 7, so are not targeted by this fix.
 * Target devices running iOS 8+ will incidentally execute the media query,
 * but this will still produce the expected result; so this is not a problem.
 *
 * As an example, replace:
 *
 *   height: 50vh;
 *   font-size: 5vmin;
 *
 * with:
 *
 *   @include viewport-unit(height, 50vh);
 *   @include viewport-unit(font-size, 5vmin);
 */
/*
 * Tools
 * Default mixins and functions
 */
/*
 * The medium font stack, returns the most appropriate system font.
 */
/**
 * Target High DPI devices
 *
 * @include hidpi(1.5) {
 *   width: 20em;
 * }
 *
 */
/**
 * Center transform an element on an axis.
 *
 * position: absolute;
 *
 * @include mix-center;
 * @include mix-center(x);
 * @include mix-center(y);
 * @include mix-center(xy);
 */
/**
 * Calculates the sRGB luma of a colour.
 */
/**
 * Returns the most visible colour for a given background.
 *
 * color: mix-pick-visible-color($background-color, $black-text-color, $white-text-color);
 */
/**
 * Mix a color with white. Alternative to sass lighten.
 *
 * background-color: mix-tint(#6ecaa6, 40%);
 */
/**
 * Mix a color with black. Alternative to sass darken.
 *
 * background-color: mix-tint(#6ecaa6, 40%);
 */
/**
 * Add a clearfix
 *
 * Should be used on the containing element
 * @include mix-clearfix;
 */
/**
 * Truncate text and add an ellipsis
 *
 * @include mix-ellipsis;
 * @include mix-ellipsis(50%);
 */
/**
 * HSL and HSV
 *
 * @see https://gist.github.com/1069204
 */
/**
 * Normal
 */
/**
 * Multiply
 */
/**
 * Lighten
 */
/**
 * Darken
 */
/**
 * Darker Color
 */
/**
 * Lighter Color
 */
/**
 * Linear Dodge
 */
/**
 * Linear Burn
 */
/**
 * Difference
 */
/**
 * Screen
 */
/**
 * Exclusion
 */
/**
 * Overlay
 */
/**
 * Soft Light
 */
/**
 * Hard Light
 */
/**
 * Color Dodge
 */
/**
 * Color Burn
 */
/**
 *  Linear Light
 */
/**
 * Vivid Light
 */
/**
 * Pin Light
 */
/**
 * Hard Mix
 */
/**
 * Color Blend
 */
/**
 * Dissolve
 */
/**
 * Divide
 */
/**
 * Hue
 */
/**
 * Luminosity
 */
/**
 * Saturation
 */
/**
 * Subtract
 */
/**
 * Fix for vw, vh, vmin, vmax on iOS 7.
 * http://caniuse.com/#feat=viewport-units
 *
 * This fix works by replacing viewport units with px values on known screen sizes.
 *
 * iPhone 6 and 6 Plus cannot run iOS 7, so are not targeted by this fix.
 * Target devices running iOS 8+ will incidentally execute the media query,
 * but this will still produce the expected result; so this is not a problem.
 *
 * As an example, replace:
 *
 *   height: 50vh;
 *   font-size: 5vmin;
 *
 * with:
 *
 *   @include viewport-unit(height, 50vh);
 *   @include viewport-unit(font-size, 5vmin);
 */
/*
 * Add container padding to an element
 */
/*
 * Prevent column margin overflow
 */
/*
 * Because you just know we'll be asked to "add a 20% tint to the image"
 */
/*
 * Generic
 * Ground-zero styles (box-sizing, resets, etc)
 */
/*! normalize.css v4.1.1 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in IE and iOS.
 */
html {
  font-family: sans-serif;
  /* 1 */
  line-height: 1.15;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */ }

/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 * 2. Add the correct display in IE.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  /* 1 */
  display: block; }

/**
 * Add the correct display in IE 9-.
 */
audio,
canvas,
progress,
video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline; }

/**
 * Add the correct display in IE 10-.
 * 1. Add the correct display in IE.
 */
template,
[hidden] {
  display: none; }

/* Links
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  text-decoration: underline dotted;
  /* 2 */ }

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit; }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000; }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px; }

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/* Forms
   ========================================================================== */
/**
 * 1. Change font properties to `inherit` in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font: inherit;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Restore the font weight unset by the previous rule.
 */
optgroup {
  font-weight: bold; }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on OS X.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

*, :after, :before {
  box-sizing: border-box; }

/*
 * Base
 * Unclassed HTML elements (type selectors)
 */
html {
  font-size: 14px;
  line-height: 1.4; }

body {
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 300;
  color: #222222; }

h1, h2, h3, h4, h5, h6 {
  margin: 1em 0;
  color: #111111;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1; }

h1 {
  font-size: 2.6180340252em; }

h2 {
  font-size: 2.0225425em; }

h3 {
  font-size: 1.618034em; }

h4 {
  font-size: 1.25em; }

h5 {
  font-size: 1em; }

h6 {
  font-size: 0.7725424806em; }

a {
  color: #222222;
  text-decoration: underline; }
  a:hover, a:focus {
    color: #383838; }
  a:active {
    color: #1f1f1f; }
  a:visited {
    color: #1f1f1f; }

strong {
  font-weight: 500; }

body {
  background-color: #fafafa; }

hr {
  border: 1px solid #e8e8e8;
  border-bottom-style: none; }

img {
  max-width: 100%;
  height: auto; }

ol {
  margin: 0;
  padding: 0;
  list-style: none; }
  ol > li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 5em;
    margin-top: 1.5em; }
    ol > li:before {
      content: counter(step-counter);
      position: absolute;
      top: 0;
      left: 0;
      font-size: 3.2725425314em;
      font-weight: 700;
      line-height: 0.8; }

ul.dash {
  list-style: none;
  padding: 0; }
  ul.dash > li:before {
    content: '\2012';
    margin-right: 0.5em; }

/*
 * Objects
 * Cosmetic-free design patterns
 */
.button {
  padding: 0.9em 1.6em;
  border: none;
  border-radius: 0;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 500; }
  .button:hover, .button:focus {
    outline: none;
    cursor: pointer;
    text-decoration: none; }
  .button:active {
    box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.2); }

.button--primary {
  background-color: #111111; }
  .button--primary, .button--primary:visited {
    color: #ffffff; }
  .button--primary:hover, .button--primary:focus {
    background-color: #292929; }
  .button--primary:active {
    background-color: #414141; }

.button--secondary {
  background-color: #ffffff; }
  .button--secondary, .button--secondary:visited {
    color: #222222; }
  .button--secondary:hover, .button--secondary:focus {
    background-color: #e6e6e6; }
  .button--secondary:active {
    background-color: #cccccc; }

.button--transparent-white {
  color: #ffffff;
  background: transparent; }
  .button--transparent-white:hover, .button--transparent-white:focus {
    color: #e6e6e6; }
  .button--transparent-white:active {
    color: #cccccc; }

form {
  max-width: 320px;
  /*
  > *:not(:last-child) {
    margin-bottom: 1em;
  }
  */ }

.form__error, .hbspt-form .hs-error-msgs {
  margin-top: -0.5em;
  font-size: 0.7725424806em;
  opacity: 0.9;
  font-style: italic; }

input[type="color"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="email"], input[type="month"], input[type="number"], input[type="password"], input[type="search"], input[type="tel"], input[type="text"], input[type="time"], input[type="url"], input[type="week"], input:not([type]), textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0.5em;
  border: 2px solid #222222;
  background-color: #fafafa; }

input[type="color"]:focus, input[type="date"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="email"]:focus, input[type="month"]:focus, input[type="number"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="text"]:focus, input[type="time"]:focus, input[type="url"]:focus, input[type="week"]:focus, input:not([type]):focus, textarea:focus {
  outline: none;
  background-color: #ffffff; }

button[type=submit], .hbspt-form .hs-button {
  padding: 0.5em 1.5em;
  border: 2px solid #222222;
  background-color: #222222;
  color: #ffffff; }
  button[type=submit]:focus, .hbspt-form .hs-button:focus, button[type=submit]:hover, .hbspt-form .hs-button:hover {
    outline: none;
    cursor: pointer;
    color: #ffffff;
    background-color: #383838;
    border-color: #383838; }

.form__checkbox, .hbspt-form .inputs-list {
  display: inline-block;
  height: 1.5em;
  width: 100%; }
  .form__checkbox span:before, .hbspt-form .inputs-list span:before {
    content: "\f00c";
    display: inline-block;
    position: relative;
    width: 1.5em;
    height: 1.5em;
    margin-right: 0.5em;
    color: #fafafa;
    background: #fafafa;
    border: 2px solid #222222;
    font-family: FontAwesome;
    text-align: center; }
  .form__checkbox input[type=checkbox], .hbspt-form .inputs-list input[type=checkbox] {
    display: none; }
  .form__checkbox input[type=checkbox]:checked + span:before, .hbspt-form .inputs-list input[type=checkbox]:checked + span:before {
    color: #222222; }

.clearfix:before, .clearfix:after {
  content: "";
  display: table; }

.clearfix:after {
  clear: both; }

.main__margin {
  margin-top: 3em;
  margin-bottom: 3em; }

.main__margin--top {
  margin-top: 3em; }

.main__margin--bottom {
  margin-bottom: 3em; }

.main__padding--bottom {
  padding-bottom: 3em; }

.main {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: content-box;
  padding-left: 15px;
  padding-right: 15px; }
  .main:after {
    content: " ";
    display: block;
    clear: both; }

@media (min-width: 768px) {
  .main__narrow-center {
    margin-left: 34.7826086957%;
    margin-right: 34.7826086957%; } }

.main__margin--thank-you {
  margin-top: 60px;
  margin-bottom: 60px; }
  @media (min-width: 768px) {
    .main__margin--thank-you {
      margin-top: 300px;
      margin-bottom: 300px; } }

@media (min-width: 768px) {
  .main__intro--left {
    width: 47.8260869565%;
    float: left;
    margin-right: 4.347826087%; } }

@media (min-width: 768px) {
  .main__intro--right {
    width: 39.1304347826%;
    float: right;
    margin-right: 0;
    margin-right: 8.6956521739%; } }

@media (min-width: 768px) {
  .main__half--left {
    width: 47.8260869565%;
    float: left;
    margin-right: 4.347826087%; }
    .main__half--left.main__half--bleed {
      position: absolute;
      left: 0; } }

@media (min-width: 768px) {
  .main__story--right,
  .main__half--right {
    width: 47.8260869565%;
    float: right;
    margin-right: 0; }
    .main__story--right.main__half--bleed,
    .main__half--right.main__half--bleed {
      position: absolute;
      right: 0; } }

@media (min-width: 768px) {
  .main__story--left {
    width: 39.1304347826%;
    float: left;
    margin-right: 4.347826087%; } }

.spacer-top-md {
  margin-top: 30px; }

.spacer-top-lg {
  margin-top: 60px; }

.spacer-top-responsive {
  margin-top: 30px; }
  @media (min-width: 768px) {
    .spacer-top-responsive {
      margin-top: 120px; } }

/*
 * Components
 * Designed components, chunks of UI
 */
.subscribe--inline {
  display: block;
  font-size: 0; }
  .subscribe--inline .subscribe__input,
  .subscribe--inline .subscribe__button {
    display: inline-block; }
    @media (max-width: 768px) {
      .subscribe--inline .subscribe__input,
      .subscribe--inline .subscribe__button {
        display: block;
        margin: 0 auto;
        width: 100%;
        max-width: 384px;
        text-align: center; } }
  @media (min-width: 768px) {
    .subscribe--inline .subscribe__input:focus {
      border-right-width: 2px; } }

.subscribe--block {
  display: block;
  font-size: 0; }
  .subscribe--block .subscribe__input,
  .subscribe--block .subscribe__button {
    display: block;
    width: 100%;
    text-align: center; }

.subscribe__input {
  position: relative;
  width: calc(100% - 150px);
  padding: 0 1.5em;
  border: 2px solid #ffffff;
  color: #ffffff;
  background-color: transparent;
  white-space: nowrap;
  -webkit-transition: border-width 0.2s;
  transition: border-width 0.2s; }
  .subscribe__input:focus {
    outline: none;
    border-left-width: 1em;
    border-right-width: 1em; }
  .subscribe__input::-webkit-input-placeholder {
    opacity: 0.9;
    color: #ffffff;
    text-transform: uppercase; }
  .subscribe__input::-moz-placeholder {
    opacity: 0.9;
    color: #ffffff;
    text-transform: uppercase; }
  .subscribe__input:-ms-input-placeholder {
    opacity: 0.9;
    color: #ffffff;
    text-transform: uppercase; }
  .subscribe__input::placeholder {
    opacity: 0.9;
    color: #ffffff;
    text-transform: uppercase; }

.subscribe__button {
  padding: 0 1.5em;
  border-radius: 0; }

.subscribe__input,
.subscribe__button {
  height: 3em;
  font-size: 0.8rem; }

.contact__label {
  display: inline-block;
  margin-bottom: 0.5em;
  font-size: 0.7725424806em;
  font-weight: 500; }

.contact__input {
  position: relative;
  width: 100%;
  padding: 0.75em 1.5em;
  margin-bottom: 1em;
  border: 2px solid #222222;
  color: #222222;
  background-color: transparent;
  white-space: nowrap;
  -webkit-transition: border-width 0.2s;
  transition: border-width 0.2s; }
  .contact__input:focus {
    outline: none;
    border-right-width: 1em; }
  .contact__input::-webkit-input-placeholder {
    opacity: 0.9;
    color: #222222;
    text-transform: uppercase; }
  .contact__input::-moz-placeholder {
    opacity: 0.9;
    color: #222222;
    text-transform: uppercase; }
  .contact__input:-ms-input-placeholder {
    opacity: 0.9;
    color: #222222;
    text-transform: uppercase; }
  .contact__input::placeholder {
    opacity: 0.9;
    color: #222222;
    text-transform: uppercase; }

.contact__button {
  padding: 0.75em 1.5em;
  border-radius: 0; }

.contact__input,
.contact__button {
  font-size: 0.8rem; }

.product__image {
  display: block;
  margin: 0 auto;
  max-height: 200px; }
  @media (min-width: 768px) {
    .product__image {
      max-height: 100%; } }

.header {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: content-box;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 30px;
  padding-bottom: 30px; }
  .header:after {
    content: " ";
    display: block;
    clear: both; }

@media (min-width: 768px) {
  .header__left {
    width: 65.2173913043%;
    float: left;
    margin-right: 4.347826087%; } }

.header__right {
  padding-top: 1em; }
  @media (min-width: 768px) {
    .header__right {
      width: 30.4347826087%;
      float: right;
      margin-right: 0;
      padding: 0;
      text-align: right; } }

.header__right__social {
  display: inline-block;
  float: right;
  padding-top: 2.5px;
  padding-bottom: 8px;
  padding-left: 1em;
  font-size: 1.2em;
  margin-top: -0.1em; }
  .header__right__social a:not(:first-child) {
    padding-left: 0.25em; }

.footer {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #111111; }
  .footer h2 {
    color: #ffffff; }

.footer__inner {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: content-box;
  padding-left: 15px;
  padding-right: 15px; }
  .footer__inner:after {
    content: " ";
    display: block;
    clear: both; }

@media (min-width: 768px) {
  .footer__left {
    width: 21.7391304348%;
    float: left;
    margin-right: 4.347826087%; } }

.footer__tagline {
  font-size: 0.7725424806em;
  color: #ffffff; }
  .footer__tagline a, .footer__tagline a:visited {
    color: #ffffff;
    text-decoration: none; }
  .footer__tagline a:focus, .footer__tagline a:hover {
    color: #ffffff;
    text-decoration: underline; }

@media (min-width: 768px) {
  .footer__centre {
    width: 47.8260869565%;
    float: left;
    margin-right: 4.347826087%; } }

.footer__centre ul {
  margin: 0;
  padding: 1em 0; }
  @media (min-width: 768px) {
    .footer__centre ul {
      padding: 0; } }

.footer__centre li {
  list-style: none; }
  @media (min-width: 992px) {
    .footer__centre li {
      display: inline-block; }
      .footer__centre li:not(:first-child) {
        border-left: 1px solid #ffffff;
        margin-left: 1em;
        padding-left: 1em; } }

.footer__centre a {
  color: #ffffff;
  text-decoration: none; }
  .footer__centre a:hover {
    text-decoration: underline; }

@media (min-width: 768px) {
  .footer__right {
    width: 21.7391304348%;
    float: right;
    margin-right: 0;
    text-align: right;
    padding: 0; } }

.logo-large {
  max-width: 100%;
  width: 250px;
  height: auto; }

.logo-small {
  max-width: 100%;
  width: 200px;
  height: auto; }

.logo-cta {
  max-width: 100%;
  height: 18px;
  width: auto; }

.logo-cta-gq-online {
  padding-right: 1.5em;
  width: auto;
  height: 58px;
  max-width: 100%; }
  @media (min-width: 768px) and (max-width: 992px) {
    .logo-cta-gq-online {
      display: none; } }
  @media (min-width: 992px) {
    .logo-cta-gq-online {
      height: 92px; } }

.register-button {
  position: relative;
  display: inline-block;
  padding-top: 2.5px;
  padding-bottom: 8px;
  color: #111111;
  font-size: 0.7725424806em;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  overflow: hidden;
  cursor: pointer; }
  @media (min-width: 768px) {
    .register-button {
      font-size: 1em; } }
  .register-button:focus, .register-button:hover {
    color: #292929; }
    .register-button:focus:after, .register-button:hover:after {
      -webkit-transform: translateX(0);
      transform: translateX(0); }
  .register-button:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 100%;
    background-color: #111111;
    -webkit-transform: translateX(-75%);
    transform: translateX(-75%);
    -webkit-transition: -webkit-transform 0.2s;
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s; }

.register-button--white, .register-button--white:visited {
  color: #ffffff; }

.register-button--white:focus, .register-button--white:hover {
  color: #e6e6e6; }

.register-button--white:after {
  background-color: #ffffff; }

.accent-text {
  display: none;
  position: absolute;
  font-size: 17.9442726586em;
  font-weight: 700;
  line-height: 1;
  color: #000000;
  z-index: -100;
  overflow: hidden; }
  @media (min-width: 1400px) {
    .accent-text {
      display: block; } }

.accent-text--left {
  left: 0; }
  .accent-text--left img {
    width: 110px;
    height: auto; }

.accent-text--right {
  right: 0; }
  .accent-text--right img {
    width: 180px;
    height: auto;
    margin-top: 30px; }

.accent-text--top {
  top: 0; }

.accent-text--up {
  bottom: 0; }

.accent-plus {
  position: relative; }

.accent-plus__image {
  display: none;
  position: absolute;
  left: -60px;
  top: 60px;
  width: 30px;
  height: auto; }
  @media (min-width: 1100px) {
    .accent-plus__image {
      display: block; } }

.accent-plus__image--top {
  left: -300px;
  top: -180px; }

.accent-plus-divider {
  margin-top: 3em;
  margin-bottom: 3em; }
  .accent-plus-divider img {
    margin-left: 20%;
    width: 28px; }

.video--full-width {
  position: relative;
  font-size: 0;
  background-color: #222222;
  background-position: center;
  background-size: cover; }

.video__accent {
  position: absolute;
  display: none;
  right: 0;
  top: -46%;
  opacity: 1;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s; }
  .video__accent img {
    max-width: 318px; }
  @media (min-width: 1200px) {
    .video__accent {
      display: block; } }

.video__accent--playing {
  opacity: 0; }

.video__player {
  position: relative;
  display: block;
  height: 0;
  padding: 0 0 56.25%;
  overflow: hidden; }
  .video__player iframe, .video__player embed, .video__player object, .video__player video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    z-index: 5;
    opacity: 0;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s; }
  .video__player:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    cursor: pointer;
    background: url(/images/play.png) no-repeat center;
    background-size: 173px; }

.video__player--playing iframe, .video__player--playing embed, .video__player--playing object, .video__player--playing video {
  opacity: 1; }

.video__player--playing:before {
  display: none; }

ul.share {
  padding: 0;
  margin: 0;
  font-size: 1.5em; }
  ul.share li {
    display: inline-block;
    list-style: none; }
    ul.share li:not(:first-child) {
      padding-left: 0.4em; }

.story-slider {
  position: relative;
  overflow: hidden; }

.story-slider__slide {
  position: absolute;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s; }

.story-slider--forwards .story-slider__slide {
  opacity: 0;
  -webkit-transform: translateX(60px);
  transform: translateX(60px); }

.story-slider--forwards .story-slider__slide--prev {
  opacity: 0;
  -webkit-transform: translateX(-60px);
  transform: translateX(-60px); }

.story-slider--forwards .story-slider__slide--active {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0); }

.story-slider__nav {
  padding: 0;
  text-align: left;
  border-bottom: 2px solid rgba(34, 34, 34, 0.1); }

.story-slider__nav__item {
  list-style: none;
  display: inline-block;
  margin: 0 1em;
  padding: 0.4em 0;
  color: rgba(34, 34, 34, 0.8);
  text-transform: uppercase;
  cursor: pointer; }
  .story-slider__nav__item:first-child {
    margin-left: 0; }
  .story-slider__nav__item:last-child {
    margin-right: 0; }

.story-slider__nav__item--active {
  color: #222222;
  margin-bottom: -2px;
  border-bottom: 2px solid #222222; }

.image-carousel {
  position: relative;
  display: block;
  height: 0;
  padding-bottom: 65%;
  overflow: hidden; }
  @media (min-width: 768px) and (max-width: 992px) {
    .image-carousel {
      padding-bottom: 150%; } }
  @media (min-width: 992px) and (max-width: 1100px) {
    .image-carousel {
      padding-bottom: 120%; } }
  @media (min-width: 1100px) {
    .image-carousel {
      padding-bottom: 70%; } }

.image-carousel__slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: cover;
  background-position: center;
  z-index: 5;
  opacity: 0;
  -webkit-transition: opacity 1s;
  transition: opacity 1s; }

.image-carousel__slide--previous,
.image-carousel__slide--active {
  opacity: 1; }

.image-carousel__slide--active {
  z-index: 10; }

.image-carousel__label {
  position: absolute;
  display: -webkit-box;
  display: flex;
  right: 0;
  bottom: 1em;
  z-index: 20;
  padding: 0.75em 1.5em;
  color: #111111;
  font-size: 1em;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  background-color: rgba(255, 255, 255, 0.95); }
  @media (min-width: 768px) {
    .image-carousel__label {
      bottom: 2em;
      font-size: 1.618034em; } }

.image-carousel__cta, .image-carousel-home__cta {
  position: absolute;
  right: 0;
  bottom: 6.7em;
  z-index: 20;
  padding: 0.75em 1.5em;
  color: #111111;
  font-size: 1em;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
  background-color: rgba(255, 255, 255, 0.95); }
  @media (min-width: 768px) {
    .image-carousel__cta, .image-carousel-home__cta {
      bottom: 7.73em;
      font-size: 1.618034em; } }

.image-carousel-home__cta {
  bottom: 4.6em; }
  @media (min-width: 768px) {
    .image-carousel-home__cta {
      bottom: 5.6em; } }

.hs-form-required {
  display: none; }

.hbspt-form .hs-form-field .input input {
  margin-bottom: 1em; }

.hbspt-form .hs-form-field.hs_promo_code .input input {
  margin-bottom: 0; }

.hbspt-form .inputs-list {
  list-style-type: none;
  padding: 0;
  margin-bottom: 1em; }

.hbspt-form .hs-error-msgs .inputs-list:not(:last-child) {
  margin-top: 1em;
  margin-bottom: 1em; }

.hbspt-form .hs-form-field > label {
  display: none; }

.hbspt-form input#input-disable {
  background-color: #eee; }

/*# sourceMappingURL=app.css.map */
