/*  Syntax Quick Reference
  --------------------------
  column($ratios: 1, $offset: 0, $cycle: 0, $uncycle: 0, $gutter: $jeet-gutter)
  span($ratio: 1, $offset: 0)
  shift($ratios: 0, $col_or_span: column, $gutter: $jeet-gutter)
  unshift()
  edit()
  center($max_width: 1410px, $pad: 0)
  stack($pad: 0, $align: false)
  unstack()
  align($direction: both)
  cf()
*/
/**
 * Grid settings.
 * All values are defaults and can therefore be easily overidden.
 */
/**
 * List functions courtesy of the wonderful folks at Team Sass.
 * Check out their awesome grid: Singularity.
 */
/**
 * Get  percentage from a given ratio.
 * @param {number} [$ratio=1] - The column ratio of the element.
 * @returns {number} - The percentage value.
 */
/**
 * Work out the column widths based on the ratio and gutter sizes.
 * @param {number} [$ratios=1] - The column ratio of the element.
 * @param {number} [$gutter=$jeet-gutter] - The gutter for the column.
 * @returns {list} $width $gutter - A list containing the with and gutter for the element.
 */
/**
 * Get the set layout direction for the project.
 * @returns {string} $direction - The layout direction.
 */
/**
 * Replace a specified list value with a new value (uses built in set-nth() if available)
 * @param {list} $list - The list of values you want to alter.
 * @param {number} $index - The index of the list item you want to replace.
 * @param {*} $value - The value you want to replace $index with.
 * @returns {list} $list - The list with the value replaced or removed.
 * @warn if an invalid index is supplied.
 */
/**
 * Reverse a list (progressively enhanced for Sass 3.3)
 * @param {list} $list - The list of values you want to reverse.
 * @returns {list} $result - The reversed list.
 */
/**
 * Get the opposite direction to a given value.
 * @param {string} $dir - The direction you want the opposite of.
 * @returns {string} - The opposite direction to $dir.
 * @warn if an incorrect string is provided.
 */
/**
 * Perform a value into a percentage value.
 * @param {number} $value - The value which should be converted.
 * @returns {number} $value - The percentage.
 */
/**
 * Style an element as a column with a gutter.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [$cycle=0] - Easily create an nth column grid where $cycle equals the number of columns.
 * @param {number} [$uncycle=0] - Undo a previous cycle value to allow for a new one.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Aliases for j-column().
 */
/**
 * Get the width of a column and nothing else.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Aliases for j-column-width().
 */
/**
 * Get the gutter size of a column and nothing else.
 * @param {number} [ratios=1] - A width relative to its container as a fraction.
 * @param {number} [gutter=jeet.gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Alias for j-column-gutter().
 */
/**
 * Style an element as a column without any gutters for a seamless row.
 * @param {number} [$ratios=1] - A width relative to its container as a fraction.
 * @param {number} [$offset=0] - A offset specified as a fraction (see $ratios).
 * @param {number} [cycle=0] - Easily create an nth column grid where cycle equals the number of columns.
 * @param {number} [uncycle=0] - Undo a previous cycle value to allow for a new one.
 */
/**
 * Alias for j-span().
 */
/**
 * Reorder columns without altering the HTML.
 * @param {number} [$ratios=0] - Specify how far along you want the element to move.
 * @param {string} [$col-or-span=column] - Specify whether the element has a gutter or not.
 * @param {number} [$gutter=$jeet-gutter] - Specify the gutter width as a percentage of the containers width.
 */
/**
 * Alias for j-shift().
 */
/**
 * Reset an element that has had shift() applied to it.
 */
/**
 * Alias for j-unshift().
 */
/**
 * View the grid and its layers for easy debugging.
 * @param {string} [$color=black] - The background tint applied.
 * @param {boolean} [$important=false] - Whether to apply the style as !important.
 */
/**
 * Aliases for j-edit().
 */
/**
 * Horizontally center an element.
 * @param {number} [$max-width=1410px] - The max width the element can be.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 */
/**
 * Alias for j-center().
 */
/**
 * Uncenter an element.
 */
/**
 * Alias for j-uncenter().
 */
/**
 * Stack an element so that nothing is either side of it.
 * @param {number} [$pad=0] - Specify the element's left and right padding.
 * @param {boolean/string} [$align=false] - Specify the text align for the element.
 */
/**
 * Alias for j-stack().
 */
/**
 * Unstack an element.
 */
/**
 * Alias for j-unstack().
 */
/**
 * Center an element on either or both axes.
 * @requires A parent container with relative positioning.
 * @param {string} [$direction=both] - Specify which axes to center the element on.
 */
/**
 * Alias for j-align().
 */
/**
 * Apply a clearfix to an element.
 */
/**
 * Alias for j-cf().
 */
/**
 * #SETTINGS
 */
/**
 * #TOOLS
 */
/**
 * #GENERIC
 */
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/**
 * Remove default margin.
 */
body {
  margin: 0;
}

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none;
}

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0;
}

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold;
}

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic;
}

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000;
}

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%;
}

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

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
}

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px;
}

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto;
}

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */
}

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible;
}

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none;
}

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
}

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default;
}

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal;
}

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  /* 2 */
  box-sizing: content-box;
}

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto;
}

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold;
}

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

* {
  box-sizing: border-box;
}

svg {
  display: block;
}

@font-face {
  font-family: "BlenderProHeavy";
  src: url('../eot/blendprohea.eot');
  src: url('../eot/blendprohead41d.eot?#iefix') format('embedded-opentype'), url('../woff/blendprohea.woff') format('woff'), url('../ttf/blendprohea.ttf') format('truetype'), url('../svg/blendprohea.svg') format('svg');
}
@font-face {
  font-family: "BlenderProBold";
  src: url('../eot/blendprobol.eot');
  src: url('../eot/blendprobold41d.eot?#iefix') format('embedded-opentype'), url('../woff/blendprobol.woff') format('woff'), url('../ttf/blendprobol.ttf') format('truetype'), url('../svg/blendprobol.svg') format('svg');
}
@font-face {
  font-family: "BlenderProMedium";
  src: url('../eot/blendpromed.eot');
  src: url('../eot/blendpromedd41d.eot?#iefix') format('embedded-opentype'), url('../woff/blendpromed.woff') format('woff'), url('../ttf/blendpromed.ttf') format('truetype'), url('../svg/blendpromed.svg') format('svg');
}
@font-face {
  font-family: "BlenderProBook";
  src: url('../eot/blendproboo.eot');
  src: url('../eot/blendprobood41d.eot?#iefix') format('embedded-opentype'), url('../woff/blendproboo.woff') format('woff'), url('../ttf/blendproboo.ttf') format('truetype'), url('../svg/blendproboo.svg') format('svg');
}
@font-face {
  font-family: "BlenderProThin";
  src: url('../eot/blendprothi.eot');
  src: url('../eot/blendprothid41d.eot?#iefix') format('embedded-opentype'), url('../woff/blendprothi.woff') format('woff'), url('../ttf/blendprothi.ttf') format('truetype'), url('../svg/blendprothi.svg') format('svg');
}
@font-face {
  font-family: "RefrigeratorDeluxe";
  src: url('../eot/refrigeratordeluxe.eot');
  src: url('../eot/refrigeratordeluxed41d.eot?#iefix') format('embedded-opentype'), url('../woff/refrigeratordeluxe.woff') format('woff'), url('../ttf/refrigeratordeluxe.ttf') format('truetype'), url('../svg/refrigeratordeluxe.svg') format('svg');
}
@font-face {
  font-family: "RefrigeratorDeluxeBold";
  src: url('../eot/refrigeratordeluxebold.eot');
  src: url('../eot/refrigeratordeluxeboldd41d.eot?#iefix') format('embedded-opentype'), url('../woff/refrigeratordeluxebold.woff') format('woff'), url('../ttf/refrigeratordeluxebold.ttf') format('truetype'), url('../svg/refrigeratordeluxebold.svg') format('svg');
}
@font-face {
  font-family: "RefrigeratorDeluxeHeavy";
  src: url('../eot/refrigeratordeluxeheavy.eot');
  src: url('../eot/refrigeratordeluxeheavyd41d.eot?#iefix') format('embedded-opentype'), url('../woff/refrigeratordeluxeheavy.woff') format('woff'), url('../ttf/refrigeratordeluxeheavy.ttf') format('truetype'), url('../svg/refrigeratordeluxeheavy.svg') format('svg');
}
@font-face {
  font-family: "RefrigeratorDeluxeLight";
  src: url('../eot/refrigeratordeluxelight.eot');
  src: url('../eot/refrigeratordeluxelightd41d.eot?#iefix') format('embedded-opentype'), url('../woff/refrigeratordeluxelight.woff') format('woff'), url('../ttf/refrigeratordeluxelight.ttf') format('truetype'), url('../svg/refrigeratordeluxelight.svg') format('svg');
}
@font-face {
  font-family: "MontserratBlack";
  src: url('../eot/montserrat-black.eot');
  src: url('../eot/montserrat-blackd41d.eot?#iefix') format('embedded-opentype'), url('../woff/montserrat-black.woff') format('woff'), url('../ttf/montserrat-black.ttf') format('truetype'), url('../svg/montserrat-black.svg') format('svg');
}
@font-face {
  font-family: "MontserratBold";
  src: url('../eot/montserrat-bold.eot');
  src: url('../eot/montserrat-boldd41d.eot?#iefix') format('embedded-opentype'), url('../woff/montserrat-bold.woff') format('woff'), url('../ttf/montserrat-bold.ttf') format('truetype'), url('../svg/montserrat-bold.svg') format('svg');
}
@font-face {
  font-family: "MontserratExtraBold";
  src: url('../eot/montserrat-extrabold.eot');
  src: url('../eot/montserrat-extraboldd41d.eot?#iefix') format('embedded-opentype'), url('../woff/montserrat-extrabold.woff') format('woff'), url('../ttf/montserrat-extrabold.ttf') format('truetype'), url('../svg/montserrat-extrabold.svg') format('svg');
}
@font-face {
  font-family: "MontserratRegular";
  src: url('../eot/montserrat-regular.eot');
  src: url('../eot/montserrat-regulard41d.eot?#iefix') format('embedded-opentype'), url('../woff/montserrat-regular.woff') format('woff'), url('../ttf/montserrat-regular.ttf') format('truetype'), url('../svg/montserrat-regular.svg') format('svg');
}
/**
 * #PLUGINS
 */
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/**
 * #BASE
 */
@media screen and (min-width: 768px) {
  html, body {
    height: 100%;
  }

  #site-wrapper {
    clear: both;
    min-height: 100%;
    height: auto !important;
    height: 100%;
    margin-bottom: -178px;
  }
  #site-wrapper #layout_footer {
    height: 178px;
  }

  #footer {
    clear: both;
    position: relative;
    height: 178px;
  }
}
html,
button,
input,
select,
textarea {
  color: #222;
}

html {
  font-size: 1em;
  height: 100%;
  line-height: 1.4;
}

body {
  font-size: 100%;
  height: 100%;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
  overflow-x: hidden;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

audio,
canvas,
img,
video {
  vertical-align: middle;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: disc outside;
  margin: 1em 0;
  padding: 0 0 0 1.5em;
}

body {
  color: #000000;
  letter-spacing: 0;
}

h1 {
  color: #33aae7;
  font: 400 50px/60px "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  margin: 0;
  text-transform: uppercase;
  text-align: center;
  text-shadow: -6px 5px 2px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 100px;
    line-height: 100px;
    letter-spacing: -3.5px;
    text-shadow: 5px 10px 2px rgba(0, 0, 0, 0.1);
  }
}
h1 a {
  opacity: 1;
  transition: opacity 200ms;
}

h2 {
  color: #2b2b2c;
  font-family: "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: normal;
  margin: 0;
}
h2.orange-standout {
  padding-bottom: 20px;
}
h2.orange-standout:last-child {
  padding-bottom: 0;
}

h3 {
  color: #000000;
  font: 400 14px/14px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.90625rem/0.90625rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  text-transform: uppercase;
  margin: 0 0 16px;
  margin: 0 0 1rem;
}
@media screen and (min-width: 768px) {
  h3 {
    font: 400 2.1875rem/1.5625rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}

h5 {
  color: #000000;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  h5 {
    font-size: 14px;
    line-height: 20px;
  }
}

p {
  color: #000000;
  font: 400 12px/16px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.75rem/1rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  margin: 0 0 20px;
}
@media screen and (min-width: 768px) {
  p {
    font: 400 1rem/1.375rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}

a {
  font: 400 12px/16px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.75rem/1rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  a {
    font: 400 1rem/1.375rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
a.no-touch:hover {
  text-decoration: underline;
}

ul li {
  color: #000000;
  font: 400 12px/16px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.75rem/1rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  margin-bottom: 6px;
}
@media screen and (min-width: 768px) {
  ul li {
    font: 400 1rem/1.375rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}

li a,
p a {
  color: #33aae7;
}

.centre-text {
  text-align: center;
}

/**
 * #OBJECTS
 */
.container {
  padding: 0 25px;
}
@media screen and (min-width: 768px) {
  .container {
    margin: 0 auto;
    max-width: 1400px;
    padding: 0 50px;
  }
}
.container--break-flow {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .container--break-flow {
    padding: 0 50px;
  }
}
.container--700 {
  max-width: 700px;
}
.container--smaller {
  max-width: 1062px;
}
.container--thousand {
  max-width: 1000px;
}
.container--11hund {
  max-width: 1100px;
}
.container--full-width {
  max-width: none;
}

@media screen and (min-width: 768px) {
  .col--two-thirds-first {
    float: left;
    clear: none;
    width: 65.66667%;
    margin-left: 0;
    margin-right: 3%;
    padding-right: 5%;
  }
  .col--two-thirds-first:nth-of-type(3n) {
    margin-right: 0;
    float: right;
  }
  .col--two-thirds-first:nth-of-type(3n + 1) {
    clear: both;
  }
}
.col--one-third-last {
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .col--one-third-last {
    float: left;
    clear: none;
    width: 31.33333%;
    margin-left: 0;
    margin-right: 3%;
    border-top: 0 none;
    margin-right: 0;
    margin-bottom: 0;
  }
  .col--one-third-last:nth-of-type(3n) {
    margin-right: 0;
    float: right;
  }
  .col--one-third-last:nth-of-type(3n + 1) {
    clear: both;
  }
}
@media screen and (min-width: 768px) {
  .col--one-third-first {
    float: left;
    clear: none;
    width: 31.33333%;
    margin-left: 0;
    margin-right: 3%;
    padding-right: 5%;
  }
  .col--one-third-first:nth-of-type(3n) {
    margin-right: 0;
    float: right;
  }
  .col--one-third-first:nth-of-type(3n + 1) {
    clear: both;
  }
}
.col--two-thirds-last {
  margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .col--two-thirds-last {
    float: left;
    clear: none;
    width: 65.66667%;
    margin-left: 0;
    margin-right: 3%;
    margin-right: 0;
    margin-bottom: 0;
  }
  .col--two-thirds-last:nth-of-type(3n) {
    margin-right: 0;
    float: right;
  }
  .col--two-thirds-last:nth-of-type(3n + 1) {
    clear: both;
  }
}
.col--one-third-first-both {
  float: left;
  clear: none;
  width: 48.5%;
  margin-left: 0;
  margin-right: 3%;
}
.col--one-third-first-both:nth-of-type(2n) {
  margin-right: 0;
  float: right;
}
.col--one-third-first-both:nth-of-type(2n + 1) {
  clear: both;
}
@media screen and (min-width: 768px) {
  .col--one-third-first-both {
    float: left;
    clear: none;
    width: 31.33333%;
    margin-left: 0;
    margin-right: 3%;
    padding-right: 5%;
  }
  .col--one-third-first-both:nth-of-type(2n) {
    margin-right: 3%;
    float: left;
  }
  .col--one-third-first-both:nth-of-type(2n + 1) {
    clear: none;
  }
  .col--one-third-first-both:nth-of-type(3n) {
    margin-right: 0;
    float: right;
  }
  .col--one-third-first-both:nth-of-type(3n + 1) {
    clear: both;
  }
}
.col--two-thirds-last-both {
  float: left;
  clear: none;
  width: 48.5%;
  margin-left: 0;
  margin-right: 3%;
}
.col--two-thirds-last-both:nth-of-type(2n) {
  margin-right: 0;
  float: right;
}
.col--two-thirds-last-both:nth-of-type(2n + 1) {
  clear: both;
}
@media screen and (min-width: 768px) {
  .col--two-thirds-last-both {
    float: left;
    clear: none;
    width: 65.66667%;
    margin-left: 0;
    margin-right: 3%;
    margin-right: 0 !important;
    margin-bottom: 50px;
  }
  .col--two-thirds-last-both:nth-of-type(2n) {
    margin-right: 3%;
    float: left;
  }
  .col--two-thirds-last-both:nth-of-type(2n + 1) {
    clear: none;
  }
  .col--two-thirds-last-both:nth-of-type(3n) {
    margin-right: 0;
    float: right;
  }
  .col--two-thirds-last-both:nth-of-type(3n + 1) {
    clear: both;
  }
}
@media screen and (min-width: 768px) {
  .col--one-quarter {
    *zoom: 1;
    float: left;
    clear: none;
    width: 22.75%;
    margin-left: 0;
    margin-right: 3%;
  }
  .col--one-quarter:before, .col--one-quarter:after {
    content: '';
    display: table;
  }
  .col--one-quarter:after {
    clear: both;
  }
  .col--one-quarter:nth-of-type(1000n) {
    margin-right: 0;
    float: right;
  }
  .col--one-quarter:nth-of-type(1000n + 1) {
    clear: both;
  }
}
@media screen and (min-width: 768px) {
  .col--three-quarters {
    *zoom: 1;
    float: left;
    clear: none;
    width: 74.25%;
    margin-left: 0;
    margin-right: 3%;
  }
  .col--three-quarters:before, .col--three-quarters:after {
    content: '';
    display: table;
  }
  .col--three-quarters:after {
    clear: both;
  }
  .col--three-quarters:nth-of-type(1000n) {
    margin-right: 0;
    float: right;
  }
  .col--three-quarters:nth-of-type(1000n + 1) {
    clear: both;
  }
}
@media screen and (min-width: 768px) {
  .col--half {
    *zoom: 1;
    float: left;
    clear: none;
    width: 48.5%;
    margin-left: 0;
    margin-right: 3%;
  }
  .col--half:before, .col--half:after {
    content: '';
    display: table;
  }
  .col--half:after {
    clear: both;
  }
  .col--half:nth-of-type(2n) {
    margin-right: 0;
    float: right;
  }
  .col--half:nth-of-type(2n + 1) {
    clear: both;
  }
}
.col--40 {
  float: left;
  clear: none;
  width: 40%;
  margin-left: 0;
  margin-right: 0;
  padding-right: 10px;
}
.col--60 {
  float: left;
  clear: none;
  width: 60%;
  margin-left: 0;
  margin-right: 0;
}

.inline-list {
  margin: 0;
  list-style: none;
  padding: 0;
}
.inline-list__item {
  display: inline-block;
  vertical-align: top;
}

.unstyled-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bulleted-list {
  list-style-type: disc;
  padding-left: 15px;
  margin: 0;
}

.list--remove-margin {
  margin: 0;
}
.list--dash {
  list-style-type: none;
  padding-left: 10px;
}
@media screen and (min-width: 768px) {
  .list--dash {
    padding-left: 20px;
  }
}
.list--dash li {
  position: relative;
}
.list--dash li:before {
  content: "-";
  display: inline-block;
  position: absolute;
  left: -10px;
  width: 8px;
}
@media screen and (min-width: 768px) {
  .list--dash li:before {
    left: -20px;
  }
}

/**
 * #COMPONENTS
 */
.about-innovation--concept {
  background: #33aae7;
}
.about-innovation--prototype {
  background-color: #0390c8;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=1, startColorstr='#FF0390C8', endColorstr='#FF026193');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHJhZGlhbEdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IiIgcj0iNTglIj48c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjMDM5MGM4Ii8+PHN0b3Agb2Zmc2V0PSI1OCUiIHN0b3AtY29sb3I9IiMwMjYxOTMiLz48L3JhZGlhbEdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background-size: 100%;
  background-image: radial-gradient(ellipse cover at center, #0390c8 0%, #026193 58%);
}
.about-innovation--prototype-progress {
  background-color: #004e75;
  *zoom: 1;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=1, startColorstr='#FF004E75', endColorstr='#FF00344E');
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHJhZGlhbEdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IiIgcj0iNTglIj48c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjMDA0ZTc1Ii8+PHN0b3Agb2Zmc2V0PSI1OCUiIHN0b3AtY29sb3I9IiMwMDM0NGUiLz48L3JhZGlhbEdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
  background-size: 100%;
  background-image: radial-gradient(ellipse cover at center, #004e75 0%, #00344e 58%);
}
.about-innovation--prototype-progress .about-innovation-section-header {
  margin: 0 0 40px;
}
.about-innovation--design {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#002031+0,003754+65,00263b+100 */
  background: #002031;
  /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMjAzMSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjY1JSIgc3RvcC1jb2xvcj0iIzAwMzc1NCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDI2M2IiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #002031 0%, #003754 65%, #00263b 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#002031', endColorstr='#00263b',GradientType=0 );
  /* IE6-8 */
}
.about-innovation__first, .about-innovation__second, .about-innovation__third, .about-innovation__fourth {
  color: #ffffff;
  padding: 35px 0;
}
@media screen and (min-width: 768px) {
  .about-innovation__first, .about-innovation__second, .about-innovation__third, .about-innovation__fourth {
    padding: 80px 0 65px;
  }
}
.about-innovation__first .section-number, .about-innovation__second .section-number, .about-innovation__third .section-number, .about-innovation__fourth .section-number {
  font: 400 18px/18px "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1.125rem/1.125rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: -0.63px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about-innovation__first .section-number, .about-innovation__second .section-number, .about-innovation__third .section-number, .about-innovation__fourth .section-number {
    font: 400 2.25rem/2.25rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: -1.26px;
  }
}
.about-innovation__first .section-heading, .about-innovation__second .section-heading, .about-innovation__third .section-heading, .about-innovation__fourth .section-heading {
  font: 400 32px/32px "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 2rem/2rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about-innovation__first .section-heading, .about-innovation__second .section-heading, .about-innovation__third .section-heading, .about-innovation__fourth .section-heading {
    font: 400 4rem/4rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    margin: 0 0 20px;
  }
}
.about-innovation__first .section-text, .about-innovation__second .section-text, .about-innovation__third .section-text, .about-innovation__fourth .section-text {
  color: #ffffff;
  font: 12px/12px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 0.75rem/0.75rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: 0.12px;
  margin: 0 auto;
  max-width: 680px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about-innovation__first .section-text, .about-innovation__second .section-text, .about-innovation__third .section-text, .about-innovation__fourth .section-text {
    font-size: 1rem;
    line-height: 1.375rem;
    letter-spacing: 0.16px;
  }
}
.about-innovation--design .final-product {
  margin: 0 auto;
  max-width: 980px;
}
.about-innovation--design .final-product img {
  max-width: 100%;
  padding: 20px 0 0;
}
.about-innovation--prototype-progress {
  padding: 35px 0 0;
}
@media screen and (min-width: 768px) {
  .about-innovation--prototype-progress {
    padding: 80px 0 65px;
  }
}
@media screen and (min-width: 768px) {
  .about-innovation--prototype-progress .video-wrapper {
    margin: 0 auto;
    max-width: 990px;
  }
}
.about-innovation--prototype-progress .video {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .about-innovation--prototype-progress .video {
    margin-top: 60px;
  }
}

.concept-sketches {
  overflow: hidden;
}
.concept-sketches .concept-sketch {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .concept-sketches .concept-sketch {
    float: left;
    clear: none;
    width: 31.33333%;
    margin-left: 0;
    margin-right: 3%;
  }
  .concept-sketches .concept-sketch:nth-of-type(3n) {
    margin-right: 0;
    float: right;
  }
  .concept-sketches .concept-sketch:nth-of-type(3n + 1) {
    clear: both;
  }
}
.concept-sketches .concept-sketch img {
  display: inline-block;
  max-width: 100%;
  padding: 30px 0 15px;
}
@media screen and (min-width: 768px) {
  .concept-sketches .concept-sketch img {
    padding: 30px 0;
  }
}
.concept-sketches .concept-sketch .supporting-text {
  font: 400 12px/12px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.75rem/0.75rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .concept-sketches .concept-sketch .supporting-text {
    font: 400 1rem/1.375rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: 0.16px;
  }
}

.prototype-images {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .prototype-images .prototype-image {
    float: left;
    clear: none;
    width: 47.5%;
    margin-left: 0;
    margin-right: 5%;
  }
  .prototype-images .prototype-image:nth-of-type(2n) {
    margin-right: 0;
    float: right;
  }
  .prototype-images .prototype-image:nth-of-type(2n + 1) {
    clear: both;
  }
}
.prototype-images .prototype-image img {
  margin: 0 auto;
  max-width: 100%;
}
.prototype-images .supporting-text {
  font: 400 12px/12px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.75rem/0.75rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .prototype-images .supporting-text {
    font: 400 1rem/1.375rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: 0.16px;
  }
}

.pre-filter-options {
  color: #33aae7;
  font: 400 11px/11px "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.6875rem/0.6875rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: -0.385px;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .pre-filter-options {
    font: 400 1.375rem/1.375rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: -0.77px;
  }
}

.filter-options {
  overflow: hidden;
  margin: 0 auto 30px;
  max-width: 600px;
}
.filter-options .filter-option {
  float: left;
  clear: none;
  width: 31.33333%;
  margin-left: 0;
  margin-right: 3%;
  text-align: center;
}
.filter-options .filter-option:nth-of-type(3n) {
  margin-right: 0;
  float: right;
}
.filter-options .filter-option:nth-of-type(3n + 1) {
  clear: both;
}
.filter-options .filter-option img {
  display: inline-block;
  max-height: 100px;
}
.filter-options .filter-option__title {
  font: 400 13px/13px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.8125rem/0.8125rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: 0.52px;
  text-align: center;
  text-transform: uppercase;
  transition: color .4s;
}
@media screen and (min-width: 768px) {
  .filter-options .filter-option__title {
    font: 400 1.75rem/1.875rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: 1.12px;
  }
}
.filter-options .filter-option__selection-indicator {
  display: none;
}
.filter-options .filter-option--selected .filter-option__title {
  color: #33aae7;
}
.filter-options .filter-option--selected .filter-option__selection-indicator {
  background: url('../png/icon.arrow.blue.about-innovation.png') no-repeat 0 0 transparent;
  display: block;
  height: 13px;
  margin: 15px auto 0;
  width: 22px;
}
.no-touch .filter-options .filter-option:hover .filter-option__title {
  color: #33aae7;
}

.about-innovation-wowwee-labs--desktop-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .about-innovation-wowwee-labs--desktop-only {
    display: block;
  }
}
.about-innovation-wowwee-labs__header {
  padding-top: 60px;
}
.about-innovation-wowwee-labs__header__first {
  font: 400 24px/32px "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1.5rem/2rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: 0.96px;
  text-align: center;
  text-transform: uppercase;
}
.about-innovation-wowwee-labs__header__last {
  margin: 0 auto;
  max-width: 640px;
  text-align: center;
}
.about-innovation-wowwee-labs__seperator {
  background: url('../png/seperator.full-width.png') no-repeat center center transparent;
  margin: 15px 0 0;
  text-align: center;
  width: 100%;
}
.about-innovation-wowwee-labs__seperator span {
  background: #ffffff;
  color: #33aae7;
  display: inline-block;
  font: 400 36px/54px "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 2.25rem/3.375rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  margin: 0 auto;
  text-transform: uppercase;
  padding: 0 40px;
}
.about-innovation-wowwee-labs__sdks {
  font-size: 0;
  padding: 20px 0 40px;
  overflow: hidden;
  text-align: center;
}
.about-innovation-wowwee-labs__sdks .wowwee-labs-sdk {
  display: inline-block;
  text-align: center;
  width: 33.33333%;
}
.about-innovation-wowwee-labs__sdks .wowwee-labs-sdk__thumbnail {
  background: url('../png/bg.hexagon.about-sdk.png') no-repeat 0 0 transparent;
  background-size: contain;
  height: 274px;
  margin: 0 auto;
  max-width: 247px;
  position: relative;
  width: 100%;
}
.about-innovation-wowwee-labs__sdks .wowwee-labs-sdk__thumbnail img {
  width: 100%;
}
.about-innovation-wowwee-labs__sdks .wowwee-labs-sdk__title {
  font: 35px/30px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 2.1875rem/1.875rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: 1.4px;
  padding: 10px 0;
  text-transform: uppercase;
}
.about-innovation-wowwee-labs__sdks .wowwee-labs-sdk__text {
  font: 400 16px/22px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1rem/1.375rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
}
.about-innovation-wowwee-labs .sdk-buttons {
  padding-bottom: 60px;
  text-align: center;
}
.about-innovation-wowwee-labs .sdk-buttons .btn {
  display: inline-block;
  margin: 0 10px;
  max-width: 280px;
  width: 280px;
}

.sdk-wrapper {
  height: 100%;
  position: relative;
  width: 100%;
}
.sdk-wrapper .sdk-mobile-takeover {
  background: #ffffff;
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .sdk-wrapper .sdk-mobile-takeover {
    display: none;
  }
}

.sdk {
  display: none;
}
@media screen and (min-width: 768px) {
  .sdk {
    display: block;
  }
}
.sdk__item {
  border-bottom: 2px solid #eaeaea;
  overflow: hidden;
  padding: 60px 0;
}
.sdk__item:nth-child(even) {
  background-color: #f9f9f9;
}
.sdk__item__first {
  float: left;
  clear: none;
  width: 33.33333%;
  margin-left: 0;
  margin-right: 0;
  overflow: hidden;
  padding-right: 20px;
}
.sdk__item__second {
  float: left;
  clear: none;
  width: 66.66667%;
  margin-left: 0;
  margin-right: 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .sdk__item__second {
    padding: 60px 0 0;
  }
}
.sdk__item__thumbnail {
  background-size: contain;
  margin: 0 auto;
  max-width: 270px;
  position: relative;
  width: 100%;
}
.sdk__item__thumbnail img {
  width: 100%;
}
.sdk__item .sdk-item-second__top, .sdk__item .sdk-item-second__bottom {
  overflow: hidden;
}
.sdk__item .sdk-item-second__top {
  margin-bottom: 20px;
}
.sdk__item .sdk-item-second__bottom {
  clear: both;
}
.sdk__item .sdk-item-second__related {
  position: relative;
}
.sdk__item .sdk-item-second__related__title {
  margin-bottom: 10px;
}
.sdk__item .sdk-item-second__related__title span {
  background: #ffffff;
  color: #acacac;
  font: 400 18px/30px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1.125rem/1.875rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: 0.72px;
  padding-right: 10px;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}
.sdk__item .sdk-item-second__related__title:after {
  background: #eaeaea;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  top: 15px;
  width: 100%;
}
.sdk__item .sdk-item-second__related__products .sdk-related-products__item {
  float: left;
  clear: none;
  width: 31.33333%;
  margin-left: 0;
  margin-right: 3%;
  display: block;
  margin-bottom: 30px;
}
.sdk__item .sdk-item-second__related__products .sdk-related-products__item:nth-of-type(3n) {
  margin-right: 0;
  float: right;
}
.sdk__item .sdk-item-second__related__products .sdk-related-products__item:nth-of-type(3n + 1) {
  clear: both;
}
.sdk__item .sdk-item-second__related__products .sdk-related-products__item:nth-child(4), .sdk__item .sdk-item-second__related__products .sdk-related-products__item:nth-child(5), .sdk__item .sdk-item-second__related__products .sdk-related-products__item:nth-child(6) {
  margin-bottom: 0;
}
.sdk__item .sdk-item-second__related__products .sdk-related-products__item__thumbnail {
  border: 1px solid #eaeaea;
  border-radius: 50%;
  display: inline-block;
  height: 90px;
  margin: 0 10px 0 0;
  overflow: hidden;
  position: relative;
  width: 90px;
  vertical-align: middle;
}
.sdk__item .sdk-item-second__related__products .sdk-related-products__item__thumbnail img {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}
.sdk__item .sdk-item-second__related__products .sdk-related-products__item span {
  color: #2b2b2c;
  display: inline-block;
  font: 400 18px/30px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1.125rem/1.875rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: 0.72px;
  text-transform: uppercase;
  transition: color .4s;
  vertical-align: middle;
}
.no-touch .sdk__item .sdk-item-second__related__products .sdk-related-products__item:hover span {
  color: #33aae7;
}
.sdk__item:nth-child(even) .sdk-item-second__related__title span {
  background: #f9f9f9;
}
.sdk__item__text {
  float: left;
  clear: none;
  width: 60%;
  margin-left: 0;
  margin-right: 0;
  padding-right: 53px;
}
.sdk__item__text h2 {
  font: 400 35px/30px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 2.1875rem/1.875rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: 1.4px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.sdk__item__text .coming-soon {
  font: 600 16px/22px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 600 1rem/1.375rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: 0.16px;
  text-transform: uppercase;
}
.sdk__item__text p a {
  color: #33aae7;
  text-decoration: underline;
}
.sdk__item__downloads {
  float: left;
  clear: none;
  width: 40%;
  margin-left: 0;
  margin-right: 0;
  border-left: 1px solid #eaeaea;
  padding-left: 53px;
}
.sdk__item__downloads .sdk-item-downloads__title {
  color: #757575;
  font: 400 18px/30px "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1.125rem/1.875rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: -0.63px;
  text-transform: uppercase;
}
.sdk__item__downloads .sdk-item-downloads__item {
  margin-bottom: 20px;
}
.sdk__item__downloads .sdk-item-downloads__item:last-child {
  margin-bottom: 0;
}
.sdk__item__downloads .sdk-item-downloads__item .btn {
  max-width: 170px;
  text-align: left;
  position: relative;
  width: 100%;
}
.sdk__item__downloads .sdk-item-downloads__item .btn--sdk .apple-icon {
  background: url('../png/icon.apple.logo.blue.png') no-repeat 0 0 transparent;
  position: absolute;
  height: 27px;
  right: 20px;
  top: 7px;
  width: 25px;
}
.sdk__item__downloads .sdk-item-downloads__item .btn--sdk .android-icon {
  background: url('../png/icon.android.logo.blue.png') no-repeat 0 0 transparent;
  position: absolute;
  height: 27px;
  right: 20px;
  top: 6px;
  width: 23px;
}
.sdk__item__downloads .sdk-item-downloads__item .btn--sdk .usb-icon,
.sdk__item__downloads .sdk-item-downloads__item .btn--sdk .other-icon {
  background: url('../png/icon.usb.logo.blue.png') no-repeat 0 0 transparent;
  position: absolute;
  height: 26px;
  right: 23px;
  top: 6px;
  width: 12px;
}
.sdk__item__downloads .sdk-item-downloads__item .btn--sdk .windows-icon {
  background: url('../png/icon.windows.logo.blue.png') no-repeat 0 0 transparent;
  position: absolute;
  height: 26px;
  right: 17px;
  top: 8px;
  width: 30px;
}
.no-touch .sdk__item__downloads .sdk-item-downloads__item .btn--sdk:hover .apple-icon {
  background-image: url('../png/icon.apple.logo.white.png');
}
.no-touch .sdk__item__downloads .sdk-item-downloads__item .btn--sdk:hover .android-icon {
  background-image: url('../png/icon.android.logo.white.png');
}
.no-touch .sdk__item__downloads .sdk-item-downloads__item .btn--sdk:hover .usb-icon, .no-touch .sdk__item__downloads .sdk-item-downloads__item .btn--sdk:hover .other-icon {
  background-image: url('../png/icon.usb.logo.white.png');
}
.no-touch .sdk__item__downloads .sdk-item-downloads__item .btn--sdk:hover .windows-icon {
  background-image: url('../png/icon.windows.logo.white.png');
}
.sdk__item__downloads .sdk-item-downloads__item .btn--inactive .apple-icon {
  background: url('../png/icon.apple.logo.grey.png') no-repeat 0 0 transparent;
}
.sdk__item__downloads .sdk-item-downloads__item .btn--inactive .android-icon {
  background: url('../png/icon.android.logo.grey.png') no-repeat 0 0 transparent;
}
.sdk__item__downloads .sdk-item-downloads__item .btn--inactive .usb-icon,
.sdk__item__downloads .sdk-item-downloads__item .btn--inactive .other-icon {
  background: url('../png/icon.usb.logo.grey.png') no-repeat 0 0 transparent;
}
.sdk__item__downloads .sdk-item-downloads__item .btn--inactive .windows-icon {
  background: url('../png/icon.windows.logo.grey.png') no-repeat 0 0 transparent;
}
.sdk__item__downloads .sdk-item-downloads__item small {
  color: #757575;
  display: block;
  font: 400 12px/12px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.75rem/0.75rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  margin: 5px 0 0 20px;
}

.sdk-disclaimer {
  background-color: #f0f0f0;
  display: none;
  overflow: hidden;
  padding: 45px 0;
}
@media screen and (min-width: 768px) {
  .sdk-disclaimer {
    display: block;
  }
}
.sdk-disclaimer__half {
  float: left;
  clear: none;
  width: 50%;
  margin-left: 0;
  margin-right: 0;
  padding: 0 50px;
}
.sdk-disclaimer__half:first-child {
  border-right: #c0c0c0 1px solid;
}
.sdk-disclaimer__half:last-child {
  border-left: #c0c0c0 1px solid;
  margin: 0 0 0 -1px;
}
.sdk-disclaimer__heading {
  font: 400 24px/30px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1.5rem/1.875rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: 0.96px;
  margin: 0 0 17px;
  text-transform: uppercase;
}
.sdk-disclaimer p a {
  color: #33aae7;
  text-decoration: underline;
}
.sdk-disclaimer p:last-child {
  margin-bottom: 0;
}
.sdk-disclaimer__first {
  padding-right: 50px;
}
.sdk-disclaimer__last {
  border-left: 2px solid #c0c0c0;
  padding-left: 50px;
}

.btn--sdk-large {
  max-width: 270px !important;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .article {
    float: left;
    clear: none;
    width: 66.66667%;
    margin-left: 0;
    margin-right: 0;
    padding-right: 5%;
  }
}
.article__header {
  margin: 16px auto;
}
@media screen and (min-width: 768px) {
  .article__header {
    margin: 17px auto;
  }
}
.article__header__heading {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 30px;
  line-height: 1.875rem;
  letter-spacing: -1.26px;
  text-align: left;
  text-shadow: 0 0 0 transparent;
}
@media screen and (min-width: 768px) {
  .article__header__heading {
    font-size: 4.5rem;
    letter-spacing: -2.52px;
    line-height: 3.75rem;
  }
}
.article__header__date {
  color: #969696;
}
@media screen and (min-width: 768px) {
  .article__header__date {
    font: 400 0.875rem/1.375rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.article h2 {
  font: 400 18px/18px "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1.125rem/1.125rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .article h2 {
    font: 400 2.25rem/3.75rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.article img {
  display: block;
  height: auto;
  left: -25px;
  margin: 20px 0;
  position: relative;
  right: -25px;
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .article img {
    margin: 30px 0;
    left: auto;
    max-width: 584px;
    right: auto;
    width: 100%;
  }
}
.article blockquote {
  border-top: 2px solid #33aae7;
  border-bottom: 2px solid #33aae7;
  display: block;
  font: 400 18px/24px "BlenderProMedium", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1.125rem/1.5rem "BlenderProMedium", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: 0.18px;
  margin: 20px 0;
  padding: 30px 30px;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .article blockquote {
    font: 400 1.75rem/2.5rem "BlenderProMedium", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: 0.28px;
    margin: 30px 0;
    max-width: 584px;
    padding: 62px 30px 62px 62px;
  }
}
.article blockquote:before {
  background: url('../png/icon.close-quote.png') no-repeat 0 0 transparent;
  background-size: 15px 12px;
  content: "";
  display: inline-block;
  height: 12px;
  left: 0;
  position: absolute;
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
  width: 15px;
}
@media screen and (min-width: 768px) {
  .article blockquote:before {
    background-size: 30px 23px;
    height: 23px;
    margin-top: 8px;
    width: 30px;
  }
}
.article blockquote:after {
  background: url('../png/icon.close-quote.png') no-repeat 0 0 transparent;
  background-size: 15px 12px;
  content: "";
  display: inline-block;
  height: 12px;
  margin-left: 6px;
  position: relative;
  top: 5px;
  width: 15px;
}
@media screen and (min-width: 768px) {
  .article blockquote:after {
    background-size: 30px 23px;
    height: 23px;
    width: 30px;
  }
}

.sidebar {
  background: #f7f7f7;
  overflow: hidden;
  padding: 24px 32px;
}
@media screen and (min-width: 768px) {
  .sidebar {
    float: left;
    clear: none;
    width: 33.33333%;
    margin-left: 0;
    margin-right: 0;
    background: transparent;
    padding: 0;
  }
}
.sidebar__item {
  float: left;
  clear: none;
  width: 48.5%;
  margin-left: 0;
  margin-right: 3%;
  background: #f7f7f7;
}
.sidebar__item:nth-of-type(2n) {
  margin-right: 0;
  float: right;
}
.sidebar__item:nth-of-type(2n + 1) {
  clear: both;
}
@media screen and (min-width: 768px) {
  .sidebar__item {
    display: block;
    clear: both;
    float: none;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    float: none !important;
    margin: 0 auto;
    max-width: 242px;
    padding: 20px 32px 0;
    width: 100%;
  }
  .sidebar__item:first-child {
    margin-left: auto;
  }
  .sidebar__item:last-child {
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) {
  .sidebar__item:first-child {
    padding-top: 35px;
  }
}
@media screen and (min-width: 768px) {
  .sidebar__item:last-child {
    padding-bottom: 60px;
  }
}
.sidebar__item__heading {
  color: #757575;
  font: 400 16px/19px "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1rem/1.2rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: -0.63px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .sidebar__item__heading {
    font: 400 1.125rem/1.875rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: -0.63px;
  }
}
.sidebar__item__name {
  font: 400 14px/16px "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.875rem/1rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: 0.14px;
}
@media screen and (min-width: 768px) {
  .sidebar__item__name {
    font: 400 0.875rem/1rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: 0.14px;
  }
}
.sidebar__item__link {
  color: #33aae7;
  font: 400 14px/30px "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.875rem/1.875rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  .sidebar__item__link {
    font: 400 0.875rem/1.875rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: 0.14px;
  }
}

.articles-grid {
  overflow: hidden;
  position: relative;
}
.articles-grid__empty {
  color: white;
  text-align: center;
}
.articles-grid__item {
  background: #ffffff;
  float: left;
  margin-bottom: 20px;
  width: 48%;
}
@media screen and (min-width: 768px) {
  .articles-grid__item {
    margin-right: 3%;
    width: 31.333333%;
  }
}
.articles-grid__item--double {
  margin-right: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .articles-grid__item--double {
    margin-right: 3%;
    width: 65.666666%;
  }
}
.articles-grid__item__thumbnail {
  height: 0;
  overflow: hidden;
  padding: 100% 0 0;
  position: relative;
}
.articles-grid__item__thumbnail-image {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.articles-grid__item__category {
  bottom: 0;
  left: 0;
  position: absolute;
}
.articles-grid__item__category span {
  background: #33aae7;
  color: #ffffff;
  display: inline-block;
  font: 8px/20px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 0.5rem/20px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  height: 20px;
  padding: 0 10px;
  text-transform: uppercase;
  vertical-align: bottom;
}
@media screen and (min-width: 768px) {
  .articles-grid__item__category span {
    font: 1.125rem/45px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    height: 45px;
  }
}
.articles-grid__item__category span:last-child {
  border-left: 1px solid #ffffff;
  margin-left: -5px;
}
.articles-grid__item__category img {
  height: 10px;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .articles-grid__item__category img {
    height: 100%;
    max-height: 20px;
  }
}
.articles-grid__item__content {
  overflow: hidden;
  padding: 15px;
}
@media screen and (min-width: 768px) {
  .articles-grid__item__content {
    padding: 30px;
  }
}
.articles-grid__item__title {
  font: 400 16px/20px "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1rem/1.25rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .articles-grid__item__title {
    font: 400 1.5rem/1.5rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.articles-grid__item__excerpt {
  display: none;
  font: 400 12px/16px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.75rem/1rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  .articles-grid__item__excerpt {
    display: block;
    font: 400 1em/1.375em "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    margin: 10px 0;
  }
}
.articles-grid__item__meta {
  color: #b5b5b9;
  display: none;
  font: 400 6px/6px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.40625rem/0.40625rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  .articles-grid__item__meta {
    display: block;
    font: 400 0.75rem/0.75rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.articles-grid__item__meta a {
  color: #33aae7;
}
@media screen and (min-width: 768px) {
  .articles-grid__item__meta a {
    font: 400 0.75rem/0.75rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.articles-grid__item .btn--read-more {
  display: none;
}
@media screen and (min-width: 768px) {
  .articles-grid__item .btn--read-more {
    display: block;
  }
}
.articles-grid__item--double .articles-grid__item__excerpt, .articles-grid__item--double .articles-grid__item__meta, .articles-grid__item--double .btn--read-more {
  display: block;
}
.articles-grid__item--double .articles-grid__item__thumbnail {
  padding: 56.34441% 0 0;
}
.articles-grid--masonry {
  margin: 0 auto;
}
.articles-grid .grid-sizer {
  width: 48%;
}
@media screen and (min-width: 1000px) {
  .articles-grid .grid-sizer {
    width: 32%;
  }
}
@media screen and (min-width: 1400px) {
  .articles-grid .grid-sizer {
    width: 24%;
  }
}
@media screen and (min-width: 1600px) {
  .articles-grid .grid-sizer {
    width: 19%;
  }
}
@media screen and (min-width: 1850px) {
  .articles-grid .grid-sizer {
    width: 16%;
  }
}
@media screen and (min-width: 2200px) {
  .articles-grid .grid-sizer {
    width: 12%;
  }
}
.articles-grid .gutter-sizer {
  width: 10px;
}
.articles-grid--masonry .articles-grid__item {
  clear: none !important;
  margin: 0 0 4% !important;
  width: 48%;
}
@media screen and (min-width: 1000px) {
  .articles-grid--masonry .articles-grid__item {
    margin: 0 0 10px !important;
    width: 32%;
  }
}
@media screen and (min-width: 1400px) {
  .articles-grid--masonry .articles-grid__item {
    width: 24%;
  }
}
@media screen and (min-width: 1600px) {
  .articles-grid--masonry .articles-grid__item {
    width: 19%;
  }
}
@media screen and (min-width: 1850px) {
  .articles-grid--masonry .articles-grid__item {
    width: 16%;
  }
}
@media screen and (min-width: 2200px) {
  .articles-grid--masonry .articles-grid__item {
    width: 12%;
  }
}
.articles-grid--masonry .articles-grid__item--double {
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .articles-grid--masonry .articles-grid__item--double {
    width: 64%;
  }
}
@media screen and (min-width: 1400px) {
  .articles-grid--masonry .articles-grid__item--double {
    width: 48%;
  }
}
@media screen and (min-width: 1600px) {
  .articles-grid--masonry .articles-grid__item--double {
    width: 38%;
  }
}
@media screen and (min-width: 1850px) {
  .articles-grid--masonry .articles-grid__item--double {
    width: 32%;
  }
}
@media screen and (min-width: 2200px) {
  .articles-grid--masonry .articles-grid__item--double {
    width: 24%;
  }
}
@media screen and (max-width: 767px) {
  .articles-grid--limited-height .articles-grid__item:not(.articles-grid__item--double) {
    height: auto !important;
  }
}
.articles-grid--limited-height .articles-grid__item__excerpt {
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .articles-grid--limited-height .articles-grid__item__excerpt {
    height: 220px;
  }
}
@media screen and (min-width: 768px) {
  .articles-grid--limited-height .articles-grid__item--double .articles-grid__item__excerpt {
    height: 132px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 767px) {
  .articles-grid--limited .articles-grid__item:nth-child(2n+2) {
    clear: both;
    margin-right: 4% !important;
  }
}
.articles-grid--limited .articles-grid__item:nth-child(2) {
  clear: both;
  margin-right: 4% !important;
}
@media screen and (min-width: 768px) {
  .articles-grid--limited .articles-grid__item:nth-child(2) {
    clear: none;
    margin-right: 0 !important;
  }
}
.articles-grid--limited .articles-grid__item:nth-child(3n+2) {
  margin-right: 0;
}
.articles-grid--limited .articles-grid__item:nth-child(3n+3) {
  clear: none;
}
@media screen and (min-width: 768px) {
  .articles-grid--limited .articles-grid__item:nth-child(3n+3) {
    clear: both;
  }
}
.articles-grid--limited .articles-grid__item:nth-child(4), .articles-grid--limited .articles-grid__item:nth-child(5) {
  display: none;
}
@media screen and (min-width: 768px) {
  .articles-grid--limited .articles-grid__item:nth-child(4), .articles-grid--limited .articles-grid__item:nth-child(5) {
    display: block;
  }
}

.app-store-buttons--inline {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .app-store-buttons--inline {
    text-align: left;
  }
}
.app-store-buttons--inline .app-store-button {
  display: inline-block;
  margin-bottom: 5px;
}
.app-store-buttons--inline .app-store-button:first-child {
  margin-left: 0;
}
.app-store-buttons--inline .app-store-button:nth-child(2) {
  margin: 0 5px;
}
.app-store-buttons--inline .app-store-button:last-child {
  margin-right: 0;
}
.app-store-buttons .app-store-button {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .app-store-buttons .app-store-button {
    height: 47px;
  }
}

.btn {
  background: #000000;
  border: none;
  border-radius: 45px;
  color: white;
  display: inline-block;
  font: 400 9px/24px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.59375rem/1.5rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  height: 37px;
  letter-spacing: 0.57px;
  line-height: 36px;
  max-width: 180px;
  outline: none;
  padding: 0 20px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 200ms, border 200ms, color 200ms;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .btn {
    font-size: 18px;
    height: 45px;
    letter-spacing: 1.08px;
    line-height: 45px;
  }
}
.btn--solid:hover {
  opacity: .75;
}
.btn--hollow {
  background: transparent;
}
.btn--hollow--white {
  border: 1px solid #ffffff;
  color: #ffffff;
}
.no-touch .btn--hollow--white:hover {
  color: #33aae7;
  background: #ffffff;
}
.btn--hollow--black {
  border: 1px solid #000000;
  color: #000000;
}
.no-touch .btn--hollow--black:hover {
  color: #33aae7;
  background: #000000;
}
.btn--hollow--blue {
  border: 1px solid #33aae7;
  color: #33aae7;
}
.no-touch .btn--hollow--blue:hover {
  color: #ffffff;
  background: #33aae7;
}
.btn--double {
  height: auto;
  line-height: 16px;
  line-height: 1rem;
  padding: 6px 0;
  text-align: center;
  white-space: normal;
  width: 100%;
}
.btn--stack {
  display: block;
  margin: 0 0 10px;
  max-width: 180px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .btn--stack-wide {
    max-width: 240px;
    width: 100%;
  }
}
.btn--inline {
  display: inline-block;
  margin-right: 6px;
}
.btn--blank {
  background: transparent;
  height: auto;
  padding: 0;
  width: auto;
}
.btn--blue {
  border: 1px solid #33aae7;
  background: #33aae7;
  color: #ffffff;
}
.no-touch .btn--blue:hover {
  background: #ffffff;
  color: #33aae7;
}
.btn--lime {
  border: 1px solid #7dbb2a;
  background: #7dbb2a;
  color: #ffffff;
}
.no-touch .btn--lime:hover {
  background: transparent;
  color: #7dbb2a;
}
.btn--read-more {
  color: #838c8e;
}
@media screen and (min-width: 768px) {
  .btn--read-more {
    font: 400 18px/12px "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: 1.08px;
    margin: 36px 0 -17px;
  }
}
.btn--read-more:after {
  background: url('../png/icon.arrow.read-more.png') no-repeat 0 0 transparent;
  background-size: 4px 7px;
  content: "";
  display: inline-block;
  height: 7px;
  margin-left: 6px;
  width: 4px;
}
@media screen and (min-width: 768px) {
  .btn--read-more:after {
    background-size: 7px 12px;
    height: 12px;
    margin-left: 6px;
    width: 7px;
  }
}
@media screen and (min-width: 768px) {
  .btn--max-180 {
    max-width: 180px;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .btn--min-180 {
    max-width: none;
    min-width: 180px;
  }
}
.btn--pad-125 {
  clear: both;
  margin: 30px 0 55px;
}
@media screen and (min-width: 768px) {
  .btn--pad-125 {
    margin: 125px 0;
  }
}
.btn--pull-right {
  float: right;
}
.no-touch .btn:hover {
  text-decoration: none;
}
.btn--block {
  background: #000000;
}
@media screen and (min-width: 768px) {
  .btn--small {
    font-size: 13px;
    height: 32px;
    line-height: 32px;
  }
}
.btn--large {
  height: 37.5px;
  line-height: 37.5px;
}
@media screen and (min-width: 768px) {
  .btn--large {
    height: 60px;
    line-height: 60px;
  }
}
@media screen and (min-width: 768px) {
  .btn--variable-width {
    min-width: 0;
    padding: 0 15px;
  }
}
.btn--equal-width {
  padding: 0;
  width: 70px;
}
@media screen and (min-width: 768px) {
  .btn--equal-width {
    width: 105px;
  }
}
.btn--sdk {
  transition: none;
}
.no-touch .btn--sdk:hover {
  background-color: #33aae7;
  color: white;
}
.btn--compatibility {
  max-width: 240px;
  width: 100%;
}
.btn--inactive {
  border-color: #dadada;
  color: #dadada;
  cursor: default;
}
.no-touch .btn--inactive:hover {
  border-color: #dadada;
  background: transparent;
  color: #dadada;
}

.button-bump {
  clear: both;
  text-align: center;
}
.button-bump--plus-pad {
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  .button-bump--plus-pad {
    padding: 60px 0;
  }
}
.button-bump .loader {
  margin-right: 10px;
  position: relative;
  top: -2px;
}

.link {
  color: #33aae7;
  transition: color .4s;
}
.no-touch .link:hover {
  color: #0a222e;
}
.link--back {
  color: #33aae7;
  font: 400 16px/16px "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1rem/1rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: -0.56px;
  text-transform: uppercase;
  transition: color .4s;
}
@media screen and (min-width: 768px) {
  .link--back {
    font: 400 1.125rem/1.125rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: -0.63px;
  }
}
.link--back:before {
  background: url('../png/icon.arrow.left.full.blue.png');
  content: "";
  display: inline-block;
  height: 14px;
  margin-right: 6px;
  position: relative;
  top: -2px;
  width: 14px;
  vertical-align: middle;
}
.link--with-arrow {
  color: #33aae7;
  padding-bottom: 5px;
  transition: color .4s;
}
.link--with-arrow:after {
  background: url('../png/icon.arrow.right.blue.png');
  background-size: 5px 8px;
  content: "";
  display: inline-block;
  height: 8px;
  margin-left: 7px;
  width: 5px;
}
@media screen and (min-width: 768px) {
  .link--with-arrow:after {
    background-size: 7px 12px;
    height: 12px;
    margin-left: 10px;
    width: 7px;
  }
}
.no-touch .link--with-arrow:hover {
  color: #0a222e;
}
.link--dark {
  color: #2b2b2c;
}
.no-touch .link--dark:hover {
  color: white;
}
.link--with-dark-arrow:after {
  background: url('../png/icon.arrow.black.right.png');
  background-size: 5px 8px;
  height: 8px;
  margin-left: 7px;
  width: 5px;
}
@media screen and (min-width: 768px) {
  .link--with-dark-arrow:after {
    background-size: 8px 12px;
    height: 12px;
    margin-left: 10px;
    width: 8px;
  }
}

.callout__heading {
  font: 400 12px/12px "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.77344rem/0.77344rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: 0.7425px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .callout__heading {
    font: 400 1.5rem/0.9rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: 1.44px;
  }
}
.callout__text {
  font: 400 8px/11px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.50656rem/0.7rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  margin: 10px 0 5px !important;
}
@media screen and (min-width: 768px) {
  .callout__text {
    font: 400 1rem/1.375rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.callout .link--callout {
  color: #33aae7;
  font: 400 10px/10px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.66656rem/0.64rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .callout .link--callout {
    font: 400 1.125rem/1.375rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}

.cascading-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .cascading-list__item {
    margin-bottom: 59px;
  }
}
.cascading-list__header {
  background: url('../png/icon.arrow.black.right.png') no-repeat right center;
  border-bottom: 1px solid #000000;
}
.cascading-list__content {
  box-sizing: content-box;
  height: 0;
  overflow: hidden;
  transition: all .4s;
}
@media screen and (min-width: 768px) {
  .cascading-list__content__text {
    float: left;
    clear: none;
    width: 80%;
    margin-left: 0;
    margin-right: 0;
    padding-right: 20px;
  }
}
@media screen and (min-width: 768px) {
  .cascading-list__content__cta {
    float: left;
    clear: none;
    width: 20%;
    margin-left: 0;
    margin-right: 0;
  }
}
.cascading-list__btn {
  padding: 0 15px;
  width: 70px;
}
@media screen and (min-width: 768px) {
  .cascading-list__btn {
    float: right;
    max-width: 180px;
    width: 100%;
  }
}
.cascading-list__item.open .cascading-list__header {
  background: url('../png/icon.arrow.black.down.png') no-repeat right center;
}
.cascading-list__item.open .cascading-list__content {
  border-bottom: 1px solid #000000;
  height: auto;
  padding: 20px 0 20px;
}
@media screen and (min-width: 768px) {
  .cascading-list__item.open .cascading-list__content {
    padding: 40px 0 45px;
  }
}

.category-bar {
  background: #ffffff;
  /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2NmY2ZjZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjU2JSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #cfcfcf 0%, #ffffff 50%, #ffffff 56%, #ffffff 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#cfcfcf', endColorstr='#ffffff',GradientType=0 );
  /* IE6-8 */
  border-bottom: 1px solid #e2dfde;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .category-bar {
    padding: 24px 0 19px;
  }
}
.category-bar__item {
  display: inline-block;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .category-bar__item {
    font: 400 1.125rem/2rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: 1.08px;
    margin: 0 20px;
  }
}
.no-touch .category-bar__item:hover, .category-bar__item.current {
  color: #33aae7;
}

@media screen and (min-width: 1400px) {
  .category-detail {
    overflow: visible !important;
  }
}
.category-detail--search {
  padding-bottom: 50px;
}
@media screen and (min-width: 768px) {
  .category-detail--search {
    padding-bottom: 100px;
  }
}
.category-detail__item {
  border-bottom: 1px solid #eaeaea;
  padding-top: 25px;
  padding-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .category-detail__item {
    padding-bottom: 20px;
    padding-top: 0;
    margin-top: 70px;
    height: 362px;
  }
}
.category-detail__item:first-child {
  margin-top: 0;
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .category-detail__item__half {
    float: left;
    clear: none;
    width: 48.5%;
    margin-left: 0;
    margin-right: 3%;
    height: 100%;
    position: relative;
    bottom: 0;
  }
  .category-detail__item__half:nth-of-type(2n) {
    margin-right: 0;
    float: right;
  }
  .category-detail__item__half:nth-of-type(2n + 1) {
    clear: both;
  }
}
.category-detail__item__heading {
  font: 400 24px/24px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1.5rem/1.5rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: 0.96px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .category-detail__item__heading {
    font: 400 3rem/3rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: 1.92px;
  }
}
.category-detail__item__image-mobile {
  display: block;
  margin: 16px auto;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .category-detail__item__image-mobile {
    display: none;
  }
}
.category-detail__item__image {
  display: none;
  height: 220px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .category-detail__item__image {
    bottom: 0;
    display: block;
    height: 100%;
    left: 50%;
    left: 0;
    margin: auto;
    max-width: none;
    position: absolute;
  }
}

.category-filter {
  background: #33aae7;
  color: #ffffff;
  height: 75px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .category-filter {
    height: 110px;
  }
}
.category-filter__item {
  float: left;
  clear: none;
  width: 25%;
  margin-left: 0;
  margin-right: 0;
  background: transparent;
  cursor: pointer;
  color: #ffffff;
  display: inline-block;
  height: 75px;
  text-transform: uppercase;
  transition: all .4s;
}
@media screen and (min-width: 768px) {
  .category-filter__item {
    height: 110px;
    position: relative;
  }
}
.no-touch .category-filter__item:hover {
  background: #0a222e;
  color: #33aae7;
}
.category-filter__item__container {
  cursor: pointer;
  height: 100%;
  position: relative;
}
.category-filter__item__container:after {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  content: "";
  display: inline-block;
  height: 40px;
  right: 0;
  width: 1px;
}
@media screen and (min-width: 768px) {
  .category-filter__item__container:after {
    display: none;
  }
}
.category-filter__item__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.category-filter__item__inner--y {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
}
.category-filter__item:after {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "";
  display: inline-block;
  right: 0;
  width: 1px;
}
@media screen and (min-width: 768px) {
  .category-filter__item:after {
    background: #ffffff;
    height: 63px;
  }
}
.category-filter__item:last-child:after {
  display: none;
}
.category-filter__item .category-filter-item__first {
  font: 400 12px/12px "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.77719rem/0.77719rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  .category-filter__item .category-filter-item__first {
    font: 400 1.125rem/1.125rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: -0.63px;
  }
}
.category-filter__item .category-filter-item__first:after {
  background: url('../png/down.arrow.white.png') no-repeat 0 0 transparent;
  content: "";
  display: block;
  height: 9px;
  margin: 5px auto;
  width: 16px;
}
.category-filter__item .category-filter-item__selected {
  font: 400 12px/12px "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.77719rem/0.77719rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  .category-filter__item .category-filter-item__selected {
    font: 400 1.75rem/1.875rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.category-filter__item .category-filter-item__dropdown {
  background: #ffffff;
  display: block;
  height: 0;
  left: 0;
  list-style-type: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  transition: height .4s;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .category-filter__item .category-filter-item__dropdown {
    position: relative;
    top: 0;
  }
}
.category-filter__item .category-filter-item__dropdown__item {
  background: #fff;
  border-bottom: 1px solid #eaeaea;
  border-left: 1px solid #eaeaea;
  border-right: 1px solid #eaeaea;
  color: #33aae7;
  font: 400 12px/30px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.75rem/30px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  height: 30px;
  margin-bottom: 0;
  transition: background-color .4s, color .4s;
}
@media screen and (min-width: 768px) {
  .category-filter__item .category-filter-item__dropdown__item {
    font: 400 1.125rem/1.25rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    height: auto;
    letter-spacing: 1.08px;
  }
}
.category-filter__item .category-filter-item__dropdown__item a {
  display: block;
  height: 100%;
  line-height: 30px;
}
@media screen and (min-width: 768px) {
  .category-filter__item .category-filter-item__dropdown__item a {
    line-height: inherit;
    padding: 12px 8px;
  }
}
.no-touch .category-filter__item .category-filter-item__dropdown__item:hover {
  color: #ffffff;
  background-color: #33aae7;
}
.no-touch .category-filter__item .category-filter-item__dropdown__item:hover a {
  color: inherit;
}
.category-filter__heading span {
  border-top: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  display: inline-block;
  font: 400 25px/32px "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1.5625rem/2rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .category-filter__heading span {
    font: 400 2.25rem/2.375rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: 1.44px;
    padding: 9px 0;
  }
}
.no-touch .category-filter__heading:hover {
  background: transparent;
  color: #ffffff;
  cursor: default;
}
.category-filter__item.hover .category-filter-item__dropdown, .no-touch .category-filter__item:hover .category-filter-item__dropdown {
  height: auto;
}

.careers .open-positions__job-function {
  color: #33aae7;
  font: 400 12px/12px "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.75rem/0.75rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: 0.48px;
  margin-bottom: 5px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .careers .open-positions__job-function {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.48px;
  }
}
.careers .open-positions__position {
  font: 400 16px/12px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1rem/0.8rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: 0.64px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .careers .open-positions__position {
    font: 400 2.1875rem/1.5625rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: 0.96px;
    margin-bottom: 16px;
  }
}
.careers__open-positions__no-positions {
  margin: 30px 0 25px;
  padding: 50px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .careers__open-positions__no-positions {
    margin: 106px 0 106px;
    padding: 65px 0 54px;
  }
}
.careers__open-positions__no-positions h2 {
  font: 400 16px/16px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1rem/1rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  leter-spacing: 0.64px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .careers__open-positions__no-positions h2 {
    font: 400 2.1875rem/2.1875rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    leter-spacing: 1.4px;
  }
}
.careers__open-positions__no-positions .no-positions-form-cta {
  font: 400 12px/16px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.75rem/1rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .careers__open-positions__no-positions .no-positions-form-cta {
    margin-top: 38px;
    font: 400 1rem/1.375rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.careers__open-positions__no-positions .no-positions-form-cta a {
  margin-left: 5px;
}
@media screen and (min-width: 768px) {
  .careers__open-positions__no-positions .no-positions-form-cta a {
    margin-left: 10px;
  }
}

.company-profile-cta {
  display: none;
}
@media screen and (min-width: 768px) {
  .company-profile-cta {
    display: block;
    height: 465px;
  }
}
.company-profile-cta__image {
  float: left;
  clear: none;
  width: 33.33333%;
  margin-left: 0;
  margin-right: 0;
  height: 465px;
  position: relative;
}
.company-profile-cta__image img {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  max-width: 366px;
  width: 100%;
}
.company-profile-cta__content {
  float: left;
  clear: none;
  width: 66.66667%;
  margin-left: 0;
  margin-right: 0;
  height: 465px;
  position: relative;
}
.company-profile-cta__content__inner {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.company-profile-cta__content__branding {
  background: url('../svg/logo.inline.blue.svg') no-repeat;
  background-size: auto 50px;
  height: 50px;
}
.company-profile-cta__content__name {
  font: 400 35px/35px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 2.1875rem/2.1875rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  margin: 25px 0 20px;
  text-transform: uppercase;
}
.company-profile-cta__content__text {
  font: 400 16px/22px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1rem/1.375rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  margin-bottom: 20px;
  padding-right: 30%;
}

.contact__standout {
  overflow: hidden;
  position: relative;
  width: 100%;
}
.contact__standout__half {
  display: block;
  height: 149px;
  padding: 40px 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .contact__standout__half {
    float: left;
    clear: none;
    width: 50%;
    margin-left: 0;
    margin-right: 0;
    height: 293px;
  }
}
.contact__standout__first {
  background: url('../png/bg.contact.callout.first.png') no-repeat 0 0 transparent;
  background-size: cover;
}
.contact__standout__second {
  border-top: 1px solid #ffffff;
  background: url('../png/bg.contact.callout.second.png') no-repeat 0 0 transparent;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .contact__standout__second {
    border-top: 0 none;
  }
}
.contact__standout__content-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.contact__standout__pre-title {
  color: #ffffff;
  font: 400 11px/7px "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.72rem/0.43875rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .contact__standout__pre-title {
    font: 400 1.5rem/0.9rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.contact__standout__title {
  color: #000000;
  font: 400 14px/14px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.90656rem/0.90656rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  margin: 10px 0;
  letter-spacing: 0.5802px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .contact__standout__title {
    font: 2.1875rem/2.1875rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: 1.4px;
    margin: 10px 0 30px;
  }
}
.contact__standout address {
  color: #000000;
  font: 400 8px/11px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.50656rem/0.72rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  .contact__standout address {
    font: 400 1rem/1.375rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}

.list-section {
  border-bottom: 1px solid #000000;
  clear: both;
  overflow: hidden;
  padding: 30px 0 0;
}
@media screen and (min-width: 768px) {
  .list-section {
    padding: 80px 0 5px;
  }
}
.list-section:last-child {
  border-bottom: 0 none;
}
.list-section h2 {
  font: 400 14px/10px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.93313rem/0.66656rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  margin-bottom: 10px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .list-section h2 {
    font: 400 2.1875rem/1.5625rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    margin-bottom: 30px;
  }
}
.list-section__list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.list-section__list__item {
  float: left;
  clear: none;
  width: 47.5%;
  margin-left: 0;
  margin-right: 5%;
  margin-bottom: 23px;
}
.list-section__list__item:nth-of-type(2n) {
  margin-right: 0;
  float: right;
}
.list-section__list__item:nth-of-type(2n + 1) {
  clear: both;
}
@media screen and (min-width: 768px) {
  .list-section__list__item {
    float: left;
    clear: none;
    width: 30%;
    margin-left: 0;
    margin-right: 5%;
    margin-bottom: 75px;
  }
  .list-section__list__item:nth-of-type(2n) {
    margin-right: 5%;
    float: left;
  }
  .list-section__list__item:nth-of-type(2n + 1) {
    clear: none;
  }
  .list-section__list__item:nth-of-type(3n) {
    margin-right: 0;
    float: right;
  }
  .list-section__list__item:nth-of-type(3n + 1) {
    clear: both;
  }
}
.list-section__list__item .list-section-item__heading {
  font: 400 12px/12px "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.77313rem/0.77313rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: 0.7422px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .list-section__list__item .list-section-item__heading {
    font: 400 1.5rem/1.5rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: 1.44px;
  }
}
.list-section__list__item .list-section-item__text {
  color: #000000;
  font: 400 8px/11px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.50656rem/0.72rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: 0.08105px;
  margin: 10px 0 16px;
}
@media screen and (min-width: 768px) {
  .list-section__list__item .list-section-item__text {
    font: 400 1rem/1.375rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: 0.16px;
    margin: 18px 0 30px;
  }
}
.list-section__list__item .list-section-item__link {
  color: #33aae7;
  font: 400 10px/10px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.66656rem/0.66656rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  text-transform: uppercase;
  transition: color .4s;
}
@media screen and (min-width: 768px) {
  .list-section__list__item .list-section-item__link {
    font: 400 1.125rem/1.375rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.list-section__list__item .list-section-item__link:after {
  background: url('../png/icon.arrow.right.blue.png');
  background-size: 5px 8px;
  content: "";
  display: inline-block;
  height: 8px;
  margin-left: 7px;
  width: 5px;
}
@media screen and (min-width: 768px) {
  .list-section__list__item .list-section-item__link:after {
    background-size: 7px 12px;
    height: 12px;
    margin-left: 10px;
    width: 7px;
  }
}
.no-touch .list-section__list__item .list-section-item__link:hover {
  color: #0a222e;
}
.list-section__list--one {
  margin: 0;
  padding: 0;
}
.list-section__list--one .list-section__list__item {
  display: block;
  clear: both;
  float: none;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  float: left;
  clear: none;
  width: 100%;
  margin-left: 0;
  margin-right: 3%;
}
.list-section__list--one .list-section__list__item:first-child {
  margin-left: auto;
}
.list-section__list--one .list-section__list__item:last-child {
  margin-right: auto;
}
.list-section__list--one .list-section__list__item:nth-of-type(2n) {
  margin-right: 3%;
  float: left;
}
.list-section__list--one .list-section__list__item:nth-of-type(2n + 1) {
  clear: none;
}
.list-section__list--one .list-section__list__item:nth-of-type(1n) {
  margin-right: 0;
  float: right;
}
.list-section__list--one .list-section__list__item:nth-of-type(1n + 1) {
  clear: both;
}
.list-section__list--two {
  margin: 20px 0;
  padding: 0;
}
.list-section__list--two .list-section__list__item {
  display: block;
  clear: both;
  float: none;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  float: left;
  clear: none;
  width: 100%;
  margin-left: 0;
  margin-right: 3%;
}
.list-section__list--two .list-section__list__item:first-child {
  margin-left: auto;
}
.list-section__list--two .list-section__list__item:last-child {
  margin-right: auto;
}
.list-section__list--two .list-section__list__item:nth-of-type(2n) {
  margin-right: 3%;
  float: left;
}
.list-section__list--two .list-section__list__item:nth-of-type(2n + 1) {
  clear: none;
}
.list-section__list--two .list-section__list__item:nth-of-type(1n) {
  margin-right: 0;
  float: right;
}
.list-section__list--two .list-section__list__item:nth-of-type(1n + 1) {
  clear: both;
}
@media screen and (min-width: 768px) {
  .list-section__list--two .list-section__list__item {
    float: left;
    clear: none;
    width: 48.5%;
    margin-left: 0;
    margin-right: 3%;
  }
  .list-section__list--two .list-section__list__item:nth-of-type(1n) {
    margin-right: 3%;
    float: left;
  }
  .list-section__list--two .list-section__list__item:nth-of-type(1n + 1) {
    clear: none;
  }
  .list-section__list--two .list-section__list__item:nth-of-type(2n) {
    margin-right: 0;
    float: right;
  }
  .list-section__list--two .list-section__list__item:nth-of-type(2n + 1) {
    clear: both;
  }
}
.list-section .list-section-item__heading {
  font: 400 12px/12px "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.77313rem/0.77313rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: 0.7422px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .list-section .list-section-item__heading {
    font: 400 1.5rem/1.5rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: 1.44px;
  }
}
.list-section__text {
  color: #000000;
  font: 400 8px/11px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.50656rem/0.72rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: 0.08105px;
  margin: 10px 0 16px;
}
@media screen and (min-width: 768px) {
  .list-section__text {
    float: left;
    clear: none;
    width: 66.66667%;
    margin-left: 0;
    margin-right: 0;
    font: 400 1rem/1.375rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: 0.16px;
    margin: 18px 0 30px;
  }
}
.list-section__block {
  clear: both;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .list-section__block__first {
    float: left;
    clear: none;
    width: 33.33333%;
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .list-section__block__second {
    float: left;
    clear: none;
    width: 66.66667%;
    margin-left: 0;
    margin-right: 0;
  }
}

.dealers {
  background: url('../png/bg.find-dealers.mobile.png') no-repeat 0 0 #1d3856;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .dealers {
    background: url('../jpg/bg.find-dealers.desktop.jpg') no-repeat 0 0 #1d3856;
    background-size: cover;
  }
}
.dealers__map {
  height: 0;
  margin: 25px 0;
  padding: 62% 0 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .dealers__map {
    margin: 25px auto;
    max-width: 1000px;
    padding: 40% 0 0;
    width: 100%;
  }
}
.dealers__map__inner {
  height: 100%;
  position: absolute;
  top: 0;
  width: 100%;
}
.dealers__callout {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .dealers__callout {
    margin: 0 auto;
    max-width: 1000px;
  }
}
.dealers__callout__bar {
  background: url('../png/bg.dealer-locator-bar.mobile.png') no-repeat 0 0 transparent;
  background-size: 1000px 133px;
  height: 133px;
  padding: 25px;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .dealers__callout__bar {
    background: url('../png/bg.dealer-locator-bar.png') no-repeat 0 0 transparent;
    background-size: 998px 311px;
    height: 323px;
  }
}
.dealers__callout__image {
  left: 20px;
  max-width: 165px;
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .dealers__callout__image {
    left: 104px;
    max-width: 360px;
    top: -7px;
  }
}
.dealers__callout__image .callout-product-image-hex {
  width: 121px;
}
@media screen and (min-width: 768px) {
  .dealers__callout__image .callout-product-image-hex {
    width: auto;
  }
}
.dealers__callout__image .callout-product-image {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  height: 100%;
  margin-left: -5px;
  max-height: 104px;
  width: auto;
}
@media screen and (min-width: 768px) {
  .dealers__callout__image .callout-product-image {
    margin-left: -6px;
    max-height: 240px;
  }
}
.dealers__callout__image--confined {
  top: -5px;
}
@media screen and (min-width: 768px) {
  .dealers__callout__image--confined {
    top: -16px;
  }
}
.dealers__callout__image--confined .callout-product-image {
  left: -16px;
  max-height: none;
  position: relative;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
  width: 165px;
}
@media screen and (min-width: 768px) {
  .dealers__callout__image--confined .callout-product-image {
    left: -48px;
    width: 395px;
  }
}
.dealers__callout__content {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #ffffff;
  font: 400 16px/16px "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1.03125rem/1.03125rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: 0.66px;
  text-transform: uppercase;
  padding-right: 25px;
  right: 0;
  width: 47%;
}
@media screen and (min-width: 768px) {
  .dealers__callout__content {
    font: 400 2.1875rem/2.1875rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: 1.4px;
    padding-right: 12%;
  }
}
@media screen and (min-width: 900px) {
  .dealers__callout__content {
    width: 54%;
  }
}
.dealers__callout__content span {
  display: block;
  text-align: right;
}
.dealers__callout__content .btn {
  clear: both;
  float: right;
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .dealers__callout__content .btn {
    margin-top: 20px;
  }
}
.dealers__search {
  margin: 50px 0 25px;
}
@media screen and (min-width: 768px) {
  .dealers__search {
    margin: 25px 0;
  }
}
.dealers__search__pre-form-text {
  color: #ffffff;
  font: 400 14px/14px "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.875rem/0.9rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  margin: 0 auto;
  max-width: 500px;
  padding: 0 25px;
  text-transform: uppercase;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .dealers__search__pre-form-text {
    font: 400 1.5rem/0.9rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    max-width: 800px;
    padding: 0;
  }
}
.dealers__search__form {
  margin: 10px auto;
  max-width: 500px;
  padding: 0 25px;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .dealers__search__form {
    margin: 25px auto;
    padding: 0;
    max-width: 800px;
    text-align: left;
  }
}
.dealers__search__form input {
  background: url('../png/icon.search.white.large.png') no-repeat 10px 9px #4d657d;
  background-size: 12px 12px;
  border: 0 none;
  color: #ffffff;
  font: 400 16px/26px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1.03125rem/1.625rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: 0.66px;
  height: 26px;
  display: inline-block;
  outline: none;
  text-indent: 35px;
  text-transform: uppercase;
  -webkit-appearance: none;
  vertical-align: sub;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .dealers__search__form input {
    background: url('../png/icon.search.white.large.png') no-repeat 22px 16px #4d657d;
    background-size: 24px 24px;
    height: 56px;
    font: 400 2.1875rem/3.5rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: 1.4px;
    margin-right: 2%;
    text-indent: 67px;
    width: 73%;
  }
}
.dealers__search__form button {
  display: inline-block;
  margin-top: 10px;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .dealers__search__form button {
    margin-top: 0;
    width: 24%;
  }
}
.dealers__search iframe {
  height: 60vw;
  max-height: 621px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .dealers__search iframe {
    margin: 25px 0;
  }
}
.dealers__search__disclaimer {
  color: #ffffff;
  text-align: center;
}
.dealers__location-grid {
  margin: 0 auto;
  max-width: 380px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .dealers__location-grid {
    margin: 25px 0;
    max-width: 100%;
  }
}
.dealers__location-grid__item {
  float: left;
  clear: none;
  width: 48.5%;
  margin-left: 0;
  margin-right: 3%;
  background: #ffffff;
  box-shadow: 0px 3px 4px -1px #2b2b2c;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 92% 100%, 0 100%);
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 88%, 92% 100%, 0 100%);
  margin-bottom: 3%;
  overflow: hidden;
  padding: 10px;
  position: relative;
}
.dealers__location-grid__item:nth-of-type(2n) {
  margin-right: 0;
  float: right;
}
.dealers__location-grid__item:nth-of-type(2n + 1) {
  clear: both;
}
@media screen and (min-width: 768px) {
  .dealers__location-grid__item {
    float: left;
    clear: none;
    width: 23.5%;
    margin-left: 0;
    margin-right: 2%;
    padding: 15px 10px;
  }
  .dealers__location-grid__item:nth-of-type(2n) {
    margin-right: 2%;
    float: left;
  }
  .dealers__location-grid__item:nth-of-type(2n + 1) {
    clear: none;
  }
  .dealers__location-grid__item:nth-of-type(4n) {
    margin-right: 0;
    float: right;
  }
  .dealers__location-grid__item:nth-of-type(4n + 1) {
    clear: both;
  }
}
.dealers__location-grid__item .location-grid-item__logo {
  float: left;
  clear: none;
  width: 20%;
  margin-left: 0;
  margin-right: 0;
}
.dealers__location-grid__item .location-grid-item__logo img {
  max-width: 40px;
  width: 100%;
}
.dealers__location-grid__item .location-grid-item__content {
  float: left;
  clear: none;
  width: 80%;
  margin-left: 0;
  margin-right: 0;
  padding-left: 10px;
}
.dealers__location-grid__item .location-grid-item__content__shop {
  font: 400 14px/17px "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.90625rem/1.1rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .dealers__location-grid__item .location-grid-item__content__shop {
    font: 400 1.5rem/2rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.dealers__location-grid__item .location-grid-item__content__address {
  font: 400 9px/13px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.59375rem/0.8125rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .dealers__location-grid__item .location-grid-item__content__address {
    font: 400 1rem/1.375rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: 0.16px;
  }
}
.dealers__location-grid__item .location-grid-item__content .link--with-arrow {
  font-family: "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .dealers__location-grid__item .location-grid-item__content .link--with-arrow {
    font-family: "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}

.infoBox > img:first-child {
  height: 30px;
  margin: 0 !important;
  width: 30px;
}

.dealers-info-box {
  background: #33aae7;
  border-radius: 3px;
  color: #fff;
  padding: 15px;
  width: 150px;
}
@media screen and (min-width: 768px) {
  .dealers-info-box {
    padding: 30px 15px 15px;
    width: 254px;
  }
}
.dealers-info-box__logo {
  float: left;
  width: 45px;
}
@media screen and (min-width: 768px) {
  .dealers-info-box__logo {
    width: 90px;
  }
}
.dealers-info-box__logo img {
  max-width: 40px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .dealers-info-box__logo img {
    max-width: 70px;
  }
}
.dealers-info-box__content {
  margin: 0 0 0 45px;
}
@media screen and (min-width: 768px) {
  .dealers-info-box__content {
    margin: 0 0 0 90px;
  }
}
.dealers-info-box__name {
  color: #fff;
  font: 13px/17px "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  margin: 0 0 10px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .dealers-info-box__name {
    font: 24px/32px "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    margin: 0 0 20px;
  }
}
.dealers-info-box__address {
  color: #fff;
  font: 9.5px/13px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  margin: 0 0 10px;
}
@media screen and (min-width: 768px) {
  .dealers-info-box__address {
    font: 16px/22px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    margin: 0 0 20px;
  }
}
.dealers-info-box .link {
  display: block;
  font: 12px/12px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .dealers-info-box .link {
    font: 18px/22px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    margin: 0 0 0 90px;
  }
}

.expanding-content {
  overflow: hidden;
  padding: 40px 25px;
}
@media screen and (min-width: 768px) {
  .expanding-content {
    padding: 60px 50px;
  }
}
.expanding-content__item {
  clear: both;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .expanding-content__item {
    padding-bottom: 30px;
  }
}
.expanding-content__item:last-child {
  padding-bottom: 0;
}
.expanding-content__item__header {
  background: url('../png/icon.arrow.black.right.png') no-repeat right center;
  border-bottom: 1px solid #000000;
  cursor: pointer;
  font: 400 16px/40px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1rem/2.5rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: 0.64px;
  margin-bottom: 25px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .expanding-content__item__header {
    font: 400 2.1875rem/3rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: 1.464px;
    margin-bottom: 10px;
  }
}
.expanding-content__item__two-by-grid .expanding-content-item-two-by-grid__item {
  margin-bottom: 45px;
}
@media screen and (min-width: 768px) {
  .expanding-content__item__two-by-grid .expanding-content-item-two-by-grid__item {
    float: left;
    clear: none;
    width: 48.5%;
    margin-left: 0;
    margin-right: 3%;
    margin-bottom: 90px;
  }
  .expanding-content__item__two-by-grid .expanding-content-item-two-by-grid__item:nth-of-type(2n) {
    margin-right: 0;
    float: right;
  }
  .expanding-content__item__two-by-grid .expanding-content-item-two-by-grid__item:nth-of-type(2n + 1) {
    clear: both;
  }
}
.expanding-content__item__two-by-grid .expanding-content-item-two-by-grid__item__heading {
  font: 400 16px/32px "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1rem/2rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .expanding-content__item__two-by-grid .expanding-content-item-two-by-grid__item__heading {
    font: 400 1.5rem/2.25rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.expanding-content__item__two-by-grid .expanding-content-item-two-by-grid__item__thumbnail {
  position: relative;
}
.expanding-content__item__two-by-grid .expanding-content-item-two-by-grid__item__thumbnail img {
  width: 100%;
}
.expanding-content__item__two-by-grid .expanding-content-item-two-by-grid__item__play {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url('../png/btn.play.small.png') no-repeat;
  background-size: 100%;
  height: 32px;
  width: 32px;
}
@media screen and (min-width: 768px) {
  .expanding-content__item__two-by-grid .expanding-content-item-two-by-grid__item__play {
    height: 75px;
    width: 75px;
  }
}
.expanding-content__item__contents-wrapper {
  box-sizing: content-box;
  height: 0;
  overflow: hidden;
  transition: all .4s;
}
@media screen and (min-width: 768px) {
  .expanding-content__item__content-block {
    padding-bottom: 20px;
  }
}
.expanding-content__item__content-block h3 {
  font: 400 16px/20px "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1rem/1.2625rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .expanding-content__item__content-block h3 {
    font: 400 1.5rem/2.25rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.expanding-content__item__callout {
  background: #f3f3f3;
  margin-bottom: 50px;
  padding: 32px 0 28px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .expanding-content__item__callout {
    padding: 65px 0 55px;
    margin-bottom: 100px;
  }
}
.expanding-content__item__callout .callout-heading {
  font: 400 16px/16px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1.03125rem/1.03125rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: 0.66px;
  margin-bottom: 18px;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .expanding-content__item__callout .callout-heading {
    font: 400 2.1875rem/2.1875rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: 1.4px;
    margin-bottom: 35px;
  }
}
.expanding-content__item.open .expanding-content__item__header {
  background: url('../png/icon.arrow.black.down.png') no-repeat right center;
}
.expanding-content__item.open .expanding-content__item__contents-wrapper {
  height: auto;
  padding: 20px 0 20px;
}
@media screen and (min-width: 768px) {
  .expanding-content__item.open .expanding-content__item__contents-wrapper {
    padding: 40px 0 45px;
  }
}

.features__text {
  color: #2b2b2c;
  text-align: center;
}
.features__content {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  width: 100%;
}
.features__images {
  position: relative;
  bottom: 0;
  left: 0;
  padding-bottom: 50%;
  padding-bottom: 42.5%;
  right: 0;
  top: 0;
}
@media screen and (min-width: 768px) {
  .features__images {
    margin: 0 7.5%;
  }
}
.features__image {
  display: none;
  height: 100%;
  left: 0;
  max-height: 500px;
  position: absolute;
  top: 0;
  width: 100%;
}
.features__image--visible {
  display: block;
}
.features__image img {
  max-width: 1000px;
  width: 100%;
}
.features__hotspots {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
}
.features__hotspot {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .features__hotspot {
    min-height: 48px;
    min-width: 48px;
  }
}
.features__hotspot__popup {
  background: rgba(51, 170, 231, 0.8);
  border-radius: 3px;
  bottom: 0;
  display: none !important;
  height: 0;
  height: 221px;
  overflow: hidden;
  position: absolute;
  right: 0;
  width: 0;
  width: 311px;
}
@media screen and (min-width: 768px) {
  .features__hotspot__popup {
    border-radius: 6px;
  }
}
.features__hotspot__popup--right {
  right: auto;
  left: 0;
}
.features__hotspot__popup--bottom {
  bottom: auto;
  top: 0;
}
@media screen and (min-width: 768px) {
  .features__hotspot--open .features__hotspot__popup {
    display: block !important;
    z-index: 30;
  }
}
.features__hotspot__handle {
  background: url('../png/icon.hotspot.png') no-repeat 0 0 transparent;
  display: block;
  position: relative;
  background-size: 22px 22px;
  height: 22px;
  width: 22px;
}
@media screen and (min-width: 768px) {
  .features__hotspot__handle {
    background-size: 48px 48px;
    height: 48px;
    width: 48px;
  }
}
.features__hotspot--open .features__hotspot__handle {
  background-image: url('../png/icon.hotspot-minus.png');
  z-index: 40;
}
.features__hotspot .hotspot-popup__image {
  float: left;
  clear: none;
  width: 40%;
  margin-left: 0;
  margin-right: 0;
  background-size: cover;
  background-position: center center;
  height: 100%;
}
.features__hotspot .hotspot-popup__content {
  float: left;
  clear: none;
  width: 60%;
  margin-left: 0;
  margin-right: 0;
  padding: 10px 10px 28px;
}
@media screen and (min-width: 768px) {
  .features__hotspot .hotspot-popup__content {
    padding: 20px 20px 50px;
  }
}
.features__hotspot .hotspot-popup__content__title {
  color: #ffffff;
  font: 400 11px/11px "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.6875rem/0.6875rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  margin: 0 0 7px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .features__hotspot .hotspot-popup__content__title {
    font-size: 1.5rem;
    line-height: 1.5rem;
    margin: 0 0 15px;
  }
}
.features__hotspot .hotspot-popup__content__text {
  color: #ffffff;
  font: 400 10px/16px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.625rem/1rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  .features__hotspot .hotspot-popup__content__text {
    font-size: 0.8125rem;
    line-height: 1.125rem;
  }
}
.features__hotspot__popup--bottom .hotspot-popup__content {
  padding-bottom: 10px;
  padding-top: 28px;
}
@media screen and (min-width: 768px) {
  .features__hotspot__popup--bottom .hotspot-popup__content {
    padding-bottom: 20px;
    padding-top: 50px;
  }
}
.features__hotspot__popup--no-image {
  height: auto;
}
.features__hotspot__popup--no-image .hotspot-popup__image {
  display: none;
}
.features__hotspot__popup--no-image .hotspot-popup__content {
  float: left;
  clear: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}
.features__mobile-image-detail {
  overflow: hidden;
  display: none;
  margin: 0 auto;
}
.features__mobile-image-detail--visible {
  display: block;
}
@media screen and (min-width: 768px) {
  .features__mobile-image-detail--visible {
    display: none;
  }
}
.features__mobile-image-detail__item {
  overflow: hidden;
  display: none;
}
.features__mobile-image-detail__item:before, .features__mobile-image-detail__item:after {
  background: url('../divider.features-popup.mobile.html') repeat-x 0 0 transparent;
  background-size: 375px 7px;
  background-position: center top;
  content: "";
  display: block;
  height: 7px;
  width: 100%;
}
.features__mobile-image-detail__item--open {
  display: block;
}
.features__thumbnails {
  overflow: hidden;
  padding: 10px 0;
}
.features__thumbnails__inner {
  text-align: center;
  padding: 0 5%;
}
@media screen and (min-width: 768px) {
  .features__thumbnails__inner {
    font-size: 0;
    margin: 0 auto;
    max-width: 1050px;
    padding: 0 25px;
    width: 100%;
  }
}
.features__thumbnails__item {
  float: left;
  clear: none;
  width: 24.25%;
  margin-left: 0;
  margin-right: 1%;
  box-shadow: 0 2px 8px 2px #000;
}
.features__thumbnails__item:nth-of-type(4n) {
  margin-right: 0;
  float: right;
}
.features__thumbnails__item:nth-of-type(4n + 1) {
  clear: both;
}
.features__thumbnails__item--selected {
  box-shadow: 0 0px 12px 2px #33aae7;
}
.features__thumbnails__item img {
  width: 100%;
}
.features__image-caption {
  display: none;
  font: 400 16px/16px "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1.03125rem/1.03125rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  padding: 15px;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .features__image-caption {
    font: 400 2.0625rem/2.0625rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    padding: 35px;
  }
}
.features__image-caption--visible {
  display: block;
}
.features__image-captions {
  position: relative;
  top: 10px;
}

.features-mobile-image-detail__wrapper {
  overflow: hidden;
  width: 90%;
  margin: 10px auto;
}
.features-mobile-image-detail__thumbnail {
  float: left;
  clear: none;
  width: 40%;
  margin-left: 0;
  margin-right: 0;
}
.features-mobile-image-detail__content {
  float: left;
  clear: none;
  width: 60%;
  margin-left: 0;
  margin-right: 0;
  padding-left: 15px;
}
.features-mobile-image-detail__content__heading {
  font: 400 13px/13px "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.8125rem/0.84375rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  text-transform: uppercase;
}
.features-mobile-image-detail__content__text {
  font: 400 7px/10px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.46875rem/0.65625rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: 0.075px;
  margin: 0;
}
.features-mobile-image-detail__wrapper--no-image .features-mobile-image-detail__thumbnail {
  display: none;
}
.features-mobile-image-detail__wrapper--no-image .features-mobile-image-detail__content {
  float: left;
  clear: none;
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
}

.featured-products {
  text-align: center;
}
.featured-products__item {
  display: block;
  overflow: hidden;
  margin: 0 auto;
  padding: 20px 25px 0;
}
@media screen and (min-width: 500px) {
  .featured-products__item {
    padding: 20px 0 0;
  }
}
@media screen and (min-width: 768px) {
  .featured-products__item {
    display: inline-block;
    margin: auto;
    margin-bottom: 100px;
    max-width: 365px;
    width: 33%;
  }
  .featured-products__item:first-of-type {
    float: left;
  }
  .featured-products__item:last-of-type {
    float: right;
  }
}
.featured-products__item:last-child {
  padding-bottom: 20px;
}
.featured-products__item__image img {
  max-width: 300px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .featured-products__item__image img {
    height: 170px;
    max-width: none;
    width: auto;
  }
}
@media screen and (min-width: 850px) {
  .featured-products__item__image img {
    height: 200px;
  }
}
@media screen and (min-width: 1000px) {
  .featured-products__item__image img {
    max-height: 292px;
  }
}
.featured-products__item__logo {
  height: 90px;
  line-height: 90px;
  margin: 0 10px;
}
@media screen and (min-width: 768px) {
  .featured-products__item__logo {
    margin: 0 20px;
  }
}
.featured-products__item__logo img {
  max-height: 50px;
  max-width: 100%;
}
.featured-products__item__splitter {
  background: url('../png/line.product-splitter.png') no-repeat center 0 transparent;
  display: block;
  height: 20px;
  width: 100%;
}
.featured-products__item__product-text {
  font: 400 12px/16px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.75rem/1rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  overflow: hidden;
  margin: 8px 20px 20px;
  max-height: 160px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .featured-products__item__product-text {
    font: 400 1rem/1.375rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    margin: 10px 20px 40px;
    max-height: 220px;
  }
}

/*!
* Fine Uploader
*
* Copyright 2015, Widen Enterprises, Inc. info@fineuploader.com
*
* Version: 5.3.0
*
* Homepage: http://fineuploader.com
*
* Repository: git://github.com/FineUploader/fine-uploader.git
*
* Licensed only under the Widen Commercial License (http://fineuploader.com/licensing).
*/
.qq-uploader {
  position: relative;
  width: 100%;
}

.qq-upload-button {
  display: block;
  width: 105px;
  padding: 7px 0;
  text-align: center;
  background: #880000;
  border-bottom: 1px solid #DDD;
  color: #FFF;
}

.qq-upload-button-hover {
  background: #CC0000;
}

.qq-upload-button-focus {
  outline: 1px dotted #000000;
}

.qq-upload-drop-area, .qq-upload-extra-drop-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 30px;
  z-index: 2;
  background: #FF9797;
  text-align: center;
}

.qq-upload-drop-area span {
  display: block;
  position: absolute;
  top: 50%;
  width: 100%;
  margin-top: -8px;
  font-size: 16px;
}

.qq-upload-extra-drop-area {
  position: relative;
  margin-top: 50px;
  font-size: 16px;
  padding-top: 30px;
  height: 20px;
  min-height: 40px;
}

.qq-upload-drop-area-active {
  background: #FF7171;
}

.qq-upload-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.qq-upload-list li {
  margin: 0;
  padding: 9px;
  line-height: 15px;
  font-size: 16px;
  background-color: #FFF0BD;
}

.qq-upload-file, .qq-upload-spinner, .qq-upload-size,
.qq-upload-cancel, .qq-upload-retry, .qq-upload-failed-text,
.qq-upload-delete, .qq-upload-pause, .qq-upload-continue {
  margin-right: 12px;
  display: inline;
}

.qq-upload-spinner {
  display: inline-block;
  background: url("../loading.html");
  width: 15px;
  height: 15px;
  vertical-align: text-bottom;
}

.qq-drop-processing {
  display: block;
}

.qq-drop-processing-spinner {
  display: inline-block;
  background: url("../processing.html");
  width: 24px;
  height: 24px;
  vertical-align: text-bottom;
}

.qq-upload-delete, .qq-upload-pause, .qq-upload-continue {
  display: inline;
}

.qq-upload-retry, .qq-upload-delete, .qq-upload-cancel,
.qq-upload-pause, .qq-upload-continue {
  color: #000000;
}

.qq-upload-size, .qq-upload-cancel, .qq-upload-retry,
.qq-upload-delete, .qq-upload-pause, .qq-upload-continue {
  font-size: 12px;
  font-weight: normal;
}

.qq-upload-failed-text {
  display: none;
  font-style: italic;
  font-weight: bold;
}

.qq-upload-failed-icon {
  display: none;
  width: 15px;
  height: 15px;
  vertical-align: text-bottom;
}

.qq-upload-fail .qq-upload-failed-text {
  display: inline;
}

.qq-upload-retrying .qq-upload-failed-text {
  display: inline;
  color: #D60000;
}

.qq-upload-list li.qq-upload-success {
  background-color: #5DA30C;
  color: #FFFFFF;
}

.qq-upload-list li.qq-upload-fail {
  background-color: #D60000;
  color: #FFFFFF;
}

.qq-progress-bar {
  display: block;
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #1e5799 0%, #2989d8 50%, #207cca 51%, #7db9e8 100%);
  /* W3C */
  width: 0%;
  height: 15px;
  border-radius: 6px;
  margin-bottom: 3px;
}

.qq-total-progress-bar {
  height: 25px;
  border-radius: 9px;
}

.qq-total-progress-bar-container {
  margin: 9px;
}

INPUT.qq-edit-filename {
  position: absolute;
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
}

.qq-upload-file.qq-editable {
  cursor: pointer;
}

.qq-edit-filename-icon.qq-editable {
  display: inline-block;
  cursor: pointer;
}

INPUT.qq-edit-filename.qq-editing {
  position: static;
  margin-top: -5px;
  margin-right: 10px;
  margin-bottom: -5px;
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.qq-edit-filename-icon {
  display: none;
  background: url("../edit.html");
  width: 15px;
  height: 15px;
  vertical-align: text-bottom;
  margin-right: 5px;
}

.qq-hide {
  display: none;
}

/* <dialog> element styles */
.qq-uploader DIALOG {
  display: none;
}

.qq-uploader DIALOG[open] {
  display: block;
}

.qq-uploader DIALOG {
  display: none;
}

.qq-uploader DIALOG[open] {
  display: block;
}

.qq-uploader DIALOG .qq-dialog-buttons {
  text-align: center;
  padding-top: 10px;
}

.qq-uploader DIALOG .qq-dialog-buttons BUTTON {
  margin-left: 5px;
  margin-right: 5px;
}

.qq-uploader DIALOG .qq-dialog-message-selector {
  padding-bottom: 10px;
}

.qq-uploader DIALOG::-webkit-backdrop {
  background-color: rgba(0, 0, 0, 0.7);
}

.qq-uploader DIALOG::backdrop {
  background-color: rgba(0, 0, 0, 0.7);
}

/*! 2015-08-26 */
.filter-bar {
  background: #ffffff;
  /* Old browsers */
  position: relative;
  z-index: 2000;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .filter-bar {
    height: 89px;
    z-index: initial;
  }
}
.filter-bar__inner {
  margin: 0 auto;
  max-width: 1400px;
  padding: 19px 25px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .filter-bar__inner {
    padding: 32px 50px;
  }
}
.filter-bar__filters {
  color: #000000;
  display: block;
  font: 400 7px/7px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.46875rem/0.46875rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .filter-bar__filters {
    display: inline-block;
    font: 400 1.125rem/0.9rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.filter-bar__filters span {
  display: inline-block;
  font: 400 10px/18px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.625rem/1.125rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  .filter-bar__filters span {
    font: 400 1.125rem/0.9rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.filter-bar__filters__item {
  display: inline-block;
  font: 400 10px/18px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.625rem/1.125rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  margin: 0 7px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .filter-bar__filters__item {
    font: 400 1.125rem/2rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: 1.08px;
    margin: 0 20px;
  }
}
.no-touch .filter-bar__filters__item:hover, .filter-bar__filters__item--current {
  color: #33aae7;
}

.form--application {
  margin: 50px auto 0;
  max-width: 711px;
}
@media screen and (min-width: 768px) {
  .form--application {
    margin: 65px auto 0;
  }
}
.form__row {
  display: block;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .form__row {
    padding-bottom: 48px;
  }
}
.form__row__half {
  padding-bottom: 24px;
}
@media screen and (min-width: 768px) {
  .form__row__half {
    float: left;
    clear: none;
    width: 48.5%;
    margin-left: 0;
    margin-right: 3%;
    padding: 0;
  }
  .form__row__half:nth-of-type(2n) {
    margin-right: 0;
    float: right;
  }
  .form__row__half:nth-of-type(2n + 1) {
    clear: both;
  }
}
.form__row__half--add-padding {
  padding-bottom: 48px;
}
@media screen and (min-width: 768px) {
  .form__row__half--add-padding {
    padding: 0;
  }
}
.form__row__half--no-mobile-padding {
  padding: 0;
}
.form__row__3-7 {
  float: left;
  clear: none;
  width: 41.14286%;
  margin-left: 0;
  margin-right: 3%;
}
.form__row__3-7:nth-of-type(7n) {
  margin-right: 0;
  float: right;
}
.form__row__3-7:nth-of-type(7n + 1) {
  clear: both;
}
.form__row__2-7 {
  float: left;
  clear: none;
  width: 26.42857%;
  margin-left: 0;
  margin-right: 3%;
}
.form__row__2-7:last-child {
  margin-right: 0;
}
.form__row__2-7:last-child {
  margin-right: 0;
}
.form__row--hide-on-mobile {
  display: none;
}
@media screen and (min-width: 768px) {
  .form__row--hide-on-mobile {
    display: block;
  }
}
.form__row--reduce-bottom-margin {
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .form__row--reduce-bottom-margin {
    padding-bottom: 15px;
  }
}
.form label {
  display: block;
  font: 400 13px/16px "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.8125rem/1rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  margin-bottom: 6px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .form label {
    font: 400 1.5rem/1.5rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    margin-bottom: 12px;
  }
}
.form label.label-inline {
  display: inline-block;
}
.form label.label-monserrat {
  font: 400 16px/24px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1rem/1.5rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  margin-right: 10px;
  vertical-align: bottom;
  text-transform: none;
}
.form label.form__error {
  color: red;
  margin: 5px 0 0;
}
@media screen and (min-width: 768px) {
  .form label.form__error {
    font-size: 0.875em;
    line-height: 1rem;
    margin: 5px 0 0;
  }
}
.form input.form__error {
  border: 1px solid red !important;
}
.form input[type="text"],
.form input[type="email"] {
  background: #cAc9c9;
  border: 0 none;
  font: 400 10px/30px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.625rem/30px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  box-shadow: none;
  height: 30px;
  outline: 0 none;
  text-indent: 10px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .form input[type="text"],
  .form input[type="email"] {
    height: 42px;
    font: 400 0.75rem/22px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.form textarea {
  background: #cAc9c9;
  border: 0 none;
  box-shadow: none;
  font: 400 10px/30px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.625rem/30px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  height: 100px;
  outline: none;
  padding: 5px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .form textarea {
    height: 145px;
    font: 400 0.75rem/22px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    padding: 10px;
  }
}
.form .upload-surround {
  display: inline-block;
  font-size: 0;
  overflow: hidden;
  position: relative;
  max-width: 180px;
  width: 100%;
}
.form .upload-surround input {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
}
.form button {
  max-width: 180px;
  width: 100%;
}
.form .form-submit {
  margin: 0 0 42px;
  width: 95px;
}
@media screen and (min-width: 768px) {
  .form .form-submit {
    margin: 0;
    max-width: 180px;
    width: 100%;
  }
}
.form--show-placeholders label {
  display: block;
}
@media screen and (min-width: 768px) {
  .form--show-placeholders label {
    display: none;
  }
}
.form--show-placeholders input::-webkit-input-placeholder {
  color: transparent;
}
@media screen and (min-width: 768px) {
  .form--show-placeholders input::-webkit-input-placeholder {
    color: #6b6b6b;
    font: 400 0.75rem/1rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.form--show-placeholders input::-moz-placeholder {
  color: transparent;
}
@media screen and (min-width: 768px) {
  .form--show-placeholders input::-moz-placeholder {
    color: #6b6b6b;
    font: 400 0.75rem/1rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.form--show-placeholders input:-ms-input-placeholder {
  color: transparent;
}
@media screen and (min-width: 768px) {
  .form--show-placeholders input:-ms-input-placeholder {
    color: #6b6b6b;
    font: 400 0.75rem/1rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.form--show-placeholders input.placeholder {
  color: transparent;
}
@media screen and (min-width: 768px) {
  .form--show-placeholders input.placeholder {
    color: #6b6b6b;
    font: 400 0.75rem/1rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}

.post-form-submit-message {
  display: none;
  margin: 0 auto 48px;
  max-width: 711px;
  overflow: hidden;
}

.post-form-submit {
  float: left;
  clear: none;
  width: 66.66667%;
  margin-left: 0;
  margin-right: 0;
  background: #33aae7;
  color: #ffffff;
  padding: 15px 30px;
}
@media screen and (min-width: 768px) {
  .post-form-submit {
    padding: 25px 60px;
  }
}
.post-form-submit__first {
  text-transform: uppercase;
  font: 400 16px/16px "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1rem/1rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  .post-form-submit__first {
    font: 400 2rem/2rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: 0.32px;
  }
}
.post-form-submit__last {
  font: 400 8px/22px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.5rem/1.375rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  .post-form-submit__last {
    font: 400 1rem/1.375rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}

.skinned-wrapper {
  background: url('../png/dropdown-arrow.png') no-repeat 0 0 #cAc9c9;
  background-position: right 10px top 12px;
  height: 30px;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .skinned-wrapper {
    background-position: right 10px top 19px;
    height: 42px;
  }
}

.skinned-wrapper select {
  border: 1px solid transparent;
  cursor: pointer;
  font: 400 10px/22px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.625rem/22px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  opacity: 0;
  height: 100%;
  position: relative;
  width: 100%;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .skinned-wrapper select {
    font: 400 0.75rem/22px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}

.skinned-wrapper .skinned-text {
  color: #6b6b6b;
  cursor: pointer;
  font: 400 12px/22px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.75rem/22px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  position: absolute;
  text-indent: 10px;
  top: 4px;
  z-index: 1;
  width: 150px;
}
@media screen and (min-width: 768px) {
  .skinned-wrapper .skinned-text {
    line-height: 42px;
    top: 0;
  }
}

.qq-uploader {
  padding-top: 5px;
}

/* default: non javascript version of select */
.global-banner {
  background: transparent;
  box-sizing: content-box;
  margin: 0 auto;
  max-width: 1000px;
  min-height: 81px;
  overflow: hidden;
  padding: 20px 0;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .global-banner {
    min-height: 60px;
    padding: 46px 0 82px;
  }
}
.global-banner__inner {
  background: #ffffff;
  border-radius: 4px;
  padding: 10px;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .global-banner__inner {
    min-height: 60px;
    padding: 15px 20px;
  }
}
.global-banner__first {
  display: block;
  font: 400 16px/22px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1rem/1.4rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: 0.48px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .global-banner__first {
    font: 400 1.5rem/2rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: 1.44px;
    text-transform: uppercase;
  }
}
@media screen and (min-width: 1100px) {
  .global-banner__first {
    display: inline-block;
  }
}
.global-banner__second {
  color: #33aae7;
  display: inline-block;
  font: 400 12px/16px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.75rem/1rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: 0.4095px;
}
@media screen and (min-width: 768px) {
  .global-banner__second {
    display: inline-block;
    font: 400 1.5rem/2rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: 1.44px;
    padding-right: 0;
  }
}
.global-banner__last {
  display: inline-block;
  font: 400 12px/22px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.75rem/1.4rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: 0.4095px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .global-banner__last {
    display: inline-block;
    font: 400 1.5rem/2rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: 1.44px;
  }
}
.global-banner__button {
  color: #838c8e;
  display: block;
  font: 400 12px/16px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.75rem/1rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .global-banner__button {
    font: 400 1.5rem/2rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.global-banner__button:after {
  background: url('../png/icon.arrow.read-more.png') no-repeat 0 0 transparent;
  background-size: cover;
  content: "";
  display: inline-block;
  height: 8px;
  margin-left: 10px;
  width: 5px;
}
@media screen and (min-width: 768px) {
  .global-banner__button:after {
    height: 12px;
    width: 7px;
  }
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .global-banner {
    padding: 365px 0;
  }
}

.navigation-bar__menu-toggle {
  position: relative;
  display: inline-block;
  margin: 20px 13px;
  height: 9px;
  width: 20px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .navigation-bar__menu-toggle {
    display: none;
  }
}
.navigation-bar__menu-toggle .bars {
  display: block;
  width: 20px;
  height: 1px;
  background: #000;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -0.5px;
  transition: all .2s linear;
}
.navigation-bar__menu-toggle .bars:before, .navigation-bar__menu-toggle .bars:after {
  display: block;
  width: 20px;
  height: 1px;
  background: #000;
  content: "";
  position: absolute;
  transition: .2s linear;
}
.navigation-bar__menu-toggle .bars:before {
  top: -4px;
}
.navigation-bar__menu-toggle .bars:after {
  bottom: -4px;
}
.navigation-bar .active {
  display: none;
}

.header {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .header {
    padding: 15px 0 0;
  }
}
@media screen and (min-width: 768px) {
  .header__heading {
    margin: 0 0 15px;
  }
}
.header__heading--smaller {
  font-size: 40px;
  letter-spacing: -1.4px;
  line-height: 36px;
}
@media screen and (min-width: 768px) {
  .header__heading--smaller {
    font-size: 64px;
    letter-spacing: -2.275px;
    line-height: 64px;
  }
}
.header__heading--reduce-line-height {
  line-height: 34px;
  line-height: 2.125rem;
}
@media screen and (min-width: 768px) {
  .header__heading--reduce-line-height {
    line-height: 3.5rem;
  }
}
@media screen and (min-width: 1000px) {
  .header__heading--reduce-line-height {
    line-height: 4.5rem;
  }
}
.header__heading--50-top {
  padding-top: 20px;
  padding-bottom: 44px;
}
.header__text {
  text-align: center;
}
.header--max-640 {
  max-width: 640px;
}

.hero {
  background: #ffffff;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .hero {
    height: 712px;
  }
}
.hero__cta {
  transition: all 0.4s;
}
.hero__cta--watch {
  font-size: 14px;
  padding: 0 20px;
  max-width: none;
  margin-bottom: 10px;
}
.hero__cta--watch span {
  position: relative;
  top: -1px;
}
@media screen and (min-width: 768px) {
  .hero__cta--watch span {
    top: -2px;
  }
}
.hero__cta--watch img {
  position: relative;
  width: 20px;
  top: -3px;
}
@media screen and (min-width: 768px) {
  .hero__cta--watch img {
    top: -4px;
    width: 30px;
  }
}
@media screen and (min-width: 768px) {
  .hero__cta--watch {
    padding: inherit;
    font-size: inherit;
  }
}
.hero__cta--buy {
  font-size: 14px;
  padding-top: 0 20px;
  max-width: none;
}
.hero__cta--buy span {
  position: relative;
  top: -3px;
}
.hero__cta--buy img {
  height: 23px;
  position: relative;
  top: -1px;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .hero__cta--buy {
    display: inline-block;
  }
}
@media screen and (min-width: 768px) {
  .hero__cta--buy {
    padding: inherit;
    padding-right: 20px;
    padding-left: 20px;
    font-size: inherit;
  }
}
.hero__bg {
  background: url(../fpo.hero.bg.mobile.html) no-repeat center top transparent;
  background-position: center top;
  background-size: auto 100%;
  height: 100%;
  transition: background-position 200ms;
  padding-bottom: 230px;
}
@media screen and (min-width: 768px) {
  .hero__bg {
    background: url('../fpo.hero.home.html') no-repeat center center 140px transaprent;
    background-attachment: fixed;
    background-position: center 140px;
    background-size: 1920px 709px;
    padding-bottom: 0;
  }
  .page-head-compressed .hero__bg {
    background-position: center 70px;
  }
}
.hero__slash {
  background: url('../svg/bg.hero-slash.svg') no-repeat center top;
  background-size: 1920px 144px;
  bottom: 0;
  height: 144px;
  left: 0;
  position: absolute;
  width: 100%;
}
.hero__heading {
  color: #ffffff;
  font: 400 40px/40px "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 2.53125rem/2.53125rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: -1.4175px;
  text-align: left;
  text-shadow: -6px 5px 2px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .hero__heading {
    font: 400 4.5rem/3.3rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: -2.52px;
    text-shadow: 10px 15px 2px rgba(0, 0, 0, 0.1);
  }
}
@media screen and (min-width: 1000px) {
  .hero__heading {
    font: 400 6.25rem/4.5rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: -3.5px;
  }
}
.hero__heading sup {
  font: 400 16px/16px "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1rem/1rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  .hero__heading sup {
    font: 400 1.875rem/1.875rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    vertical-align: top;
    position: relative;
    top: 0;
  }
}
.hero__heading--small {
  color: #ffffff;
  font: 400 32px/26px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 2rem/1.625rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: 1.28px;
  text-align: left;
  text-transform: uppercase;
  text-shadow: none;
}
@media screen and (min-width: 768px) {
  .hero__heading--small {
    font: 400 2.1875rem/2.5rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: 1.4px;
  }
}
.hero__heading--black {
  color: #000000;
}
.hero__heading--blue {
  color: #33aae7;
}
.hero__heading--centered {
  text-align: center;
}
.hero__text {
  color: #ffffff;
  font: 400 12px/16px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.75rem/1rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  margin: 10px 0 15px;
}
@media screen and (min-width: 768px) {
  .hero__text {
    font: 400 1rem/1.375rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    max-width: 40%;
    margin: 20px 0 30px;
  }
}
.hero__text--black {
  color: #000000;
}
.hero__text--white {
  color: #ffffff;
}
.hero__text--centered {
  text-align: center;
}
.hero__keyart-content {
  left: 20px;
  position: absolute;
  bottom: 40px;
  width: 80%;
}
@media screen and (min-width: 768px) {
  .hero__keyart-content {
    width: 40%;
    position: relative;
    top: auto;
  }
}
.hero__keyart-content--white .hero__keyart-content__first, .hero__keyart-content--white .hero__keyart-content__text {
  color: #ffffff;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.1);
}
.hero__keyart-content--black .hero__keyart-content__first, .hero__keyart-content--black .hero__keyart-content__text {
  color: #2b2b2c;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.1);
}
.hero__keyart-content__first {
  font: 400 12px/16px "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: 0.48px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .hero__keyart-content__first {
    font: 400 24px/32px "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: 0.96px;
  }
}
.hero__keyart-content__logo {
  margin: 10px 0;
}
.hero__keyart-content__logo img {
  height: 45px;
}
@media screen and (min-width: 768px) {
  .hero__keyart-content__logo img {
    height: 67px;
  }
}
@media screen and (min-width: 768px) {
  .hero__keyart-content__buttons {
    bottom: -65px;
    position: absolute;
    width: 630px;
  }
}
.hero__content {
  position: relative;
}
.hero__content-block {
  position: absolute;
  bottom: 40px;
  width: 80%;
}
@media screen and (min-width: 768px) {
  .hero__content-block {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    float: left;
    padding-bottom: 0;
    padding-right: 10%;
    width: 35%;
  }
}
.hero__content-block small {
  color: #acacac;
  font: 400 18px/18px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1.125rem/1.125rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .hero__content-block small {
    font: 400 1.125rem/1.125rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
@media screen and (min-width: 768px) {
  .hero__content-block .hero__text {
    margin: 0 0 20px;
    max-width: 100%;
  }
}
.hero__image {
  bottom: 32px;
  left: 50%;
  pointer-events: none;
  position: absolute;
  -webkit-transform: translate(-73px);
      -ms-transform: translate(-73px);
          transform: translate(-73px);
  width: 100%;
}
@media screen and (min-width: 360px) {
  .hero__image {
    bottom: 34px;
  }
}
@media screen and (min-width: 380px) {
  .hero__image {
    bottom: 25px;
  }
}
@media screen and (min-width: 400px) {
  .hero__image {
    bottom: 32px;
  }
}
@media screen and (min-width: 440px) {
  .hero__image {
    bottom: 27px;
  }
}
@media screen and (min-width: 480px) {
  .hero__image {
    bottom: 25px;
  }
}
@media screen and (min-width: 500px) {
  .hero__image {
    bottom: 36px;
    width: 70%;
  }
}
@media screen and (min-width: 550px) {
  .hero__image {
    bottom: 33px;
  }
}
@media screen and (min-width: 600px) {
  .hero__image {
    bottom: 30px;
  }
}
@media screen and (min-width: 630px) {
  .hero__image {
    bottom: 27px;
  }
}
@media screen and (min-width: 670px) {
  .hero__image {
    -webkit-transform: translate(0);
        -ms-transform: translate(0);
            transform: translate(0);
    bottom: 37px;
    width: 60%;
  }
}
@media screen and (min-width: 730px) {
  .hero__image {
    bottom: 33px;
  }
}
@media screen and (min-width: 768px) {
  .hero__image {
    left: 50%;
    bottom: 0;
    width: auto;
  }
}
.hero__image img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .hero__image img {
    width: auto;
  }
}
.hero--news {
  position: relative;
}
@media screen and (min-width: 768px) {
  .hero--news {
    background-size: cover;
    background-position: center top;
    height: 622px;
  }
}
.hero__news-image {
  position: relative;
  width: 100%;
}
.hero__news-info {
  background: #33aae7;
  overflow: hidden;
  padding: 29px 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .hero__news-info {
    background: rgba(51, 170, 231, 0.95);
    bottom: 0;
    padding: 25px 0;
    position: absolute;
  }
}
.hero__news-info__title {
  float: left;
  clear: none;
  width: 31.33333%;
  margin-left: 0;
  margin-right: 3%;
}
.hero__news-info__title:nth-of-type(3n) {
  margin-right: 0;
  float: right;
}
.hero__news-info__title:nth-of-type(3n + 1) {
  clear: both;
}
.hero__news-info__title .news-info-title {
  font: 400 16px/16px "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1rem/1rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  .hero__news-info__title .news-info-title {
    font: 400 2.1875rem/2.1875rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.hero__news-info__title .news-info-meta {
  color: #ffffff;
  font: 400 9px/16px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.6rem/1rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  margin-top: 6px;
}
@media screen and (min-width: 768px) {
  .hero__news-info__title .news-info-meta {
    font: 400 0.75rem/1rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.hero__news-info__title .news-info-meta a {
  color: #000000;
  font: 400 9px/16px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.6rem/1rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  .hero__news-info__title .news-info-meta a {
    font: 400 0.75rem/1rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.hero__news-info__excerpt {
  float: left;
  clear: none;
  width: 65.66667%;
  margin-left: 0;
  margin-right: 3%;
  margin-right: 0;
}
.hero__news-info__excerpt:nth-of-type(3n) {
  margin-right: 0;
  float: right;
}
.hero__news-info__excerpt:nth-of-type(3n + 1) {
  clear: both;
}
.hero__news-info__excerpt .news-info-text {
  font: 400 12px/16px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.75rem/1rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  .hero__news-info__excerpt .news-info-text {
    float: left;
    clear: none;
    width: 60%;
    margin-left: 0;
    margin-right: 0;
    font: 400 1rem/1.375rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
@media screen and (min-width: 768px) {
  .hero__news-info__excerpt .news-info-link {
    float: left;
    clear: none;
    width: 40%;
    margin-left: 0;
    margin-right: 0;
  }
}
.hero__news-info__excerpt .news-info-link a {
  margin-top: 20px;
  max-width: 90px;
}
@media screen and (min-width: 768px) {
  .hero__news-info__excerpt .news-info-link a {
    float: right;
    max-width: 180px;
  }
}
.hero--home .hero__bg {
  padding-bottom: 290px;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .hero--home .hero__bg {
    padding-bottom: 0;
    background-size: auto;
  }
}
@media screen and (min-width: 500px) and (max-width: 767px) {
  .hero--home .hero__bg {
    height: 1100px;
  }
}
@media screen and (min-width: 768px) {
  .hero--home .hero__content {
    width: 50%;
  }
}
@media screen and (max-width: 499px) {
  .hero--home .hero__content {
    top: 160px;
  }
}
@media screen and (min-width: 768px) {
  .hero--home .hero__text {
    max-width: none;
  }
}
.hero--news-article {
  margin-bottom: 34px;
}
.hero--news-article img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .hero--news-article {
    margin-bottom: 75px;
    max-height: 620px;
    overflow: hidden;
  }
  .hero--news-article img {
    width: 100%;
  }
}
.hero--product-landing {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 620px;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .hero--product-landing {
    height: 450px;
  }
}
@media screen and (min-width: 768px) {
  .hero--product-landing__mobile {
    display: none;
  }
}
.hero--product-landing__desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .hero--product-landing__desktop {
    display: block;
  }
}
.hero--product-landing .hero__product-landing-image {
  margin: 10px 0;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .hero--product-landing .hero__product-landing-image {
    float: right;
    margin: 44px 0;
    max-width: 50%;
  }
}
.hero--product-landing .hero__product-landing-image img {
  max-width: 100%;
}
.hero--detail {
  background-color: #222;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 620px;
}
@media screen and (min-width: 768px) {
  .hero--detail {
    background-size: cover;
    height: 650px;
  }
}
@media screen and (min-width: 768px) {
  .hero--detail__mobile {
    display: none;
  }
}
.hero--detail__desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .hero--detail__desktop {
    display: block;
  }
}
.hero--about .hero__content--no-banner {
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  .hero--about .hero__content--no-banner {
    padding-top: 160px;
  }
}
.hero--about .hero__bg {
  min-height: 350px;
}
@media screen and (min-width: 768px) {
  .hero--about .hero__bg {
    background-position: center 197px;
    min-height: 0;
  }
  .page-head-compressed .hero--about .hero__bg {
    background-position: center 127px;
  }
}
.hero--careers .hero__bg {
  padding-bottom: 330px;
}
.hero--careers .hero__content {
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  .hero--careers .hero__content {
    padding-top: 160px;
  }
}
.hero--primasugarinas .hero__keyart-content__logo img {
  height: 100px;
}
@media screen and (min-width: 768px) {
  .hero--primasugarinas .hero__keyart-content__logo img {
    height: 200px;
  }
}

.history-filter {
  background: #33aae7;
  height: 75px;
  overflow: hidden;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .history-filter {
    height: 60px;
  }
}
.history-filter span, .history-filter a {
  color: #ffffff;
  display: inline-block;
  font: 400 14px/14px "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.875rem/0.875rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  height: 75px;
  transition: color .4s, border .4s;
  text-transform: uppercase;
  vertical-align: top;
}
@media screen and (min-width: 768px) {
  .history-filter span, .history-filter a {
    height: 60px;
  }
}
.history-filter span:first-child, .history-filter a:first-child {
  margin-left: 0;
}
.history-filter span:last-child, .history-filter a:last-child {
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .history-filter span, .history-filter a {
    font: 400 1.25rem/3.75rem "BlenderProMedium", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: -0.7px;
  }
}
.history-filter__show-in-bar {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .history-filter__show-in-bar {
    display: inline-block !important;
  }
}
.history-filter__item {
  border-bottom: 6px solid #33aae7;
  float: left;
  padding: 0 10px;
  width: 25%;
}
@media screen and (min-width: 768px) {
  .history-filter__item {
    float: none;
    margin: 0 20px;
    width: auto;
  }
}
.no-touch .history-filter__item:hover {
  border-bottom: 6px solid white;
}
.history-filter__item--current {
  border-bottom: 6px solid white;
  color: white;
}
.history-filter__item--all {
  background: url('../png/icon.history.all.white.png') no-repeat 0 0 transparent;
  background-position: center 10px;
  background-size: 23px 21px;
  padding-top: 40px;
}
@media screen and (min-width: 768px) {
  .history-filter__item--all {
    background-size: 16px 13px;
    background-position: 0 56%;
    padding-top: 0;
    padding-left: 30px;
  }
}
.history-filter__item--launch {
  background: url('../png/icon.history.launch.white.png') no-repeat 0 0 transparent;
  background-position: center 2px;
  background-size: 12px 35px;
  padding-top: 40px;
}
@media screen and (min-width: 768px) {
  .history-filter__item--launch {
    background-position: 0 center;
    padding-top: 0;
    padding-left: 20px;
  }
}
.history-filter__item--technology {
  background: url('../png/icon.history.technology.white.png') no-repeat 0 0 transparent;
  background-position: center 10px;
  background-size: 23px 21px;
  padding-top: 40px;
}
@media screen and (min-width: 768px) {
  .history-filter__item--technology {
    background-position: 0 center;
    padding-top: 0;
    padding-left: 30px;
  }
}
.history-filter__item--award {
  background: url('../png/icon.history.award.white.png') no-repeat 0 0 transparent;
  background-position: center 10px;
  background-size: 23px 21px;
  padding-top: 40px;
}
@media screen and (min-width: 768px) {
  .history-filter__item--award {
    background-position: 0 center;
    padding-top: 0;
    padding-left: 30px;
  }
}

.how-we-innovate {
  background: #2c2c2c;
  padding-bottom: 50px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .how-we-innovate {
    background: none;
    padding: 0;
  }
}
.how-we-innovate__header {
  padding: 40px 0 0;
}
@media screen and (min-width: 768px) {
  .how-we-innovate__header {
    padding: 0;
    position: absolute;
    top: 80px;
    width: 100%;
    z-index: 10;
  }
}
.how-we-innovate__header__first {
  color: #ffffff;
  font: 400 12px/12px "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.75rem/0.75rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .how-we-innovate__header__first {
    font: 400 1.5rem/1.5rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-sapcing: 0.96px;
  }
}
.how-we-innovate__header__heading {
  line-height: 40px;
  line-height: 2.5rem;
  text-shadow: -6px 5px 2px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .how-we-innovate__header__heading {
    line-height: 5rem;
  }
}
.how-we-innovate__steps {
  overflow: hidden;
}
.how-we-innovate__steps .floating-button {
  position: absolute;
  left: 50%;
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 25px;
}
@media screen and (min-width: 768px) {
  .how-we-innovate__steps .floating-button {
    bottom: 40px;
  }
}
.how-we-innovate__step {
  position: relative;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#2c2c2c+0,484848+50,2f2f2f+100 */
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .how-we-innovate__step {
    height: 955px;
  }
}
.how-we-innovate__step--first {
  padding-top: 25px;
}
@media screen and (min-width: 768px) {
  .how-we-innovate__step--first {
    background-color: #303030;
    *zoom: 1;
    filter: progid:DXImageTransform.Microsoft.gradient(gradientType=1, startColorstr='#FF303030', endColorstr='#FF1A1A1A');
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHJhZGlhbEdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IiIgcj0iNTglIj48c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjMzAzMDMwIi8+PHN0b3Agb2Zmc2V0PSI1OCUiIHN0b3AtY29sb3I9IiMxYTFhMWEiLz48c3RvcCBvZmZzZXQ9IjU4JSIgc3RvcC1jb2xvcj0iIzFhMWExYSIvPjwvcmFkaWFsR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
    background-size: 100%;
    background-image: radial-gradient(ellipse cover at center, #303030 0%, #1a1a1a 58%, #1a1a1a 58%);
  }
}
@media screen and (min-width: 768px) {
  .how-we-innovate__step--second {
    background-color: #494949;
    *zoom: 1;
    filter: progid:DXImageTransform.Microsoft.gradient(gradientType=1, startColorstr='#FF494949', endColorstr='#FF292929');
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHJhZGlhbEdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IiIgcj0iNTglIj48c3RvcCBvZmZzZXQ9IjAlIiBzdG9wLWNvbG9yPSIjNDk0OTQ5Ii8+PHN0b3Agb2Zmc2V0PSI1OCUiIHN0b3AtY29sb3I9IiMyOTI5MjkiLz48L3JhZGlhbEdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=');
    background-size: 100%;
    background-image: radial-gradient(ellipse cover at center, #494949 0%, #292929 58%);
  }
}
@media screen and (min-width: 768px) {
  .how-we-innovate__step--third {
    background: #373737;
  }
}
@media screen and (min-width: 768px) {
  .how-we-innovate__step {
    float: left;
    clear: none;
    width: 33.33333%;
    margin-left: 0;
    margin-right: 0;
    padding-top: 227px;
    padding-bottom: 80px;
  }
}
.how-we-innovate__step__header {
  color: #ffffff;
  text-align: center;
}
.how-we-innovate__step__header .step-number {
  font: 16px/27px "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 1rem/1.6875rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  .how-we-innovate__step__header .step-number {
    font: 2rem/1.6875rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.how-we-innovate__step__header .step-title {
  font: 32px/27px "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 2rem/1.6875rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: -0.56px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .how-we-innovate__step__header .step-title {
    font: 4rem/3.375rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: -2.24px;
  }
}
.how-we-innovate__step__text {
  color: #ffffff;
  padding: 0 25px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .how-we-innovate__step__text {
    margin: 0 0 25px;
    padding: 0 40px;
  }
}
@media screen and (min-width: 768px) {
  .how-we-innovate__step .centre-text {
    padding: 15px 0 0;
  }
}
.how-we-innovate__step__image {
  margin: 40px 0;
  position: relative;
}
@media screen and (min-width: 768px) {
  .how-we-innovate__step__image {
    height: 240px;
    margin: 40px 0 0;
  }
}
@media screen and (min-width: 1000px) {
  .how-we-innovate__step__image {
    height: 296px;
  }
}
@media screen and (min-width: 1334px) {
  .how-we-innovate__step__image {
    height: 370px;
  }
}
.how-we-innovate__step__image img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .how-we-innovate__step__image img {
    position: absolute;
    left: 50%;
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 100%;
    width: auto;
  }
}
.how-we-innovate__step__divider {
  background: url('../png/divider.about-landing.innovation.mobile.png') no-repeat center top transparent;
  background-size: 366px auto;
  background-size: cover;
  height: 9px;
  margin: 40px auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .how-we-innovate__step__divider {
    background: url('../png/divider.about-landing.innovation.desktop.png') no-repeat center top transparent;
    background-size: 199px 13px;
    height: 13px;
    margin: 20px 0;
    max-width: none;
    width: 100%;
  }
}

.inline-promo-list {
  padding-top: 20px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .inline-promo-list {
    height: auto;
  }
}
.inline-promo-list__item {
  display: inline-block;
  margin: 0 5px 40px;
  width: 70px;
}
@media screen and (min-width: 768px) {
  .inline-promo-list__item {
    margin: 0 20px 20px;
    width: auto;
  }
}
.inline-promo-list__item img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .inline-promo-list__item img {
    width: auto;
  }
}
.inline-promo-list--news .inline-promo-list__item {
  display: none;
}
@media screen and (min-width: 768px) {
  .inline-promo-list--news .inline-promo-list__item {
    display: inline-block;
  }
}
.inline-promo-list--news .inline-promo-list__item:nth-child(1), .inline-promo-list--news .inline-promo-list__item:nth-child(2), .inline-promo-list--news .inline-promo-list__item:nth-child(3) {
  display: inline-block;
}

.inline-promo-list-container {
  min-height: 140px;
  padding: 24px 0 28px;
}
@media screen and (min-width: 768px) {
  .inline-promo-list-container {
    height: auto;
  }
}

.inline-video {
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
}
.inline-video__thumb {
  cursor: pointer;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}
.inline-video__video {
  display: none;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.inline-video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url('../png/btn.play.large.png') no-repeat center;
  background-size: 100%;
  height: 70px;
  width: 70px;
  z-index: 20;
}
@media screen and (min-width: 768px) {
  .inline-video__play {
    height: 141px;
    width: 141px;
  }
}
.inline-video--playing .inline-video__thumb, .inline-video--playing .inline-video__play {
  display: none;
}
.inline-video--playing .inline-video__video {
  display: block;
}

.header__heading--left-align {
  text-align: left;
}
.header__heading--with-padding {
  padding: 23px 0 30px;
}
@media screen and (min-width: 768px) {
  .header__heading--with-padding {
    padding: 66px 0 42px;
  }
}
.header.header-max-640 {
  max-width: 640px;
}
.header.header-max-680 {
  max-width: 680px;
}

.off-white-secondary {
  background: #f3f3f3;
}

.hide-on-desktop {
  display: block;
}
@media screen and (min-width: 768px) {
  .hide-on-desktop {
    display: none;
  }
}

.back-link {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .back-link {
    position: relative;
    z-index: 2000;
  }
}
@media screen and (min-width: 768px) {
  .back-link {
    padding-top: 23px;
    padding-bottom: 0;
  }
}

.main--add-pad {
  padding-top: 137px;
}

.page-wrapper {
  height: 100%;
  position: relative;
  width: 100%;
}

.manuals__first {
  overflow: hidden;
}
.manuals__second {
  clear: both;
  overflow: hidden;
}
.manuals__product-images {
  margin: 0 auto 15px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .manuals__product-images {
    margin-right: 3%;
  }
}
.manuals__product-images .slick-dots {
  clear: both;
  display: inline-block;
  list-style-type: none;
  margin: 10px 0 0;
  padding: 0;
}
.manuals__product-images .slick-dots li {
  display: inline-block;
  margin: 0 4px;
  outline: none;
}
.manuals__product-images .slick-dots li:last-child {
  margin-right: 0;
}
.manuals__product-images .slick-dots li button {
  background: #33aae7;
  border: none;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  outline: none;
  padding: 0;
  position: relative;
  text-indent: -9999px;
  -webkit-appearance: none;
  width: 8px;
}
.manuals__product-images .slick-dots li.slick-active button {
  background: #2b2b2c;
}
.manuals__product-info {
  padding-bottom: 25px;
}
.manuals__product-info__heading {
  font: 400 13px/16px "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.84375rem/1rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .manuals__product-info__heading {
    font: 400 1.5rem/2.25rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.manuals__product-info__stat {
  font: 400 8px/16px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.5rem/1rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  .manuals__product-info__stat {
    font: 400 0.8125rem/1.375rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.manuals__product-info__stat .stat-key {
  font: 600 8px/16px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 600 0.5rem/1rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .manuals__product-info__stat .stat-key {
    font: 600 0.8125rem/1.375rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.manuals__product-summary {
  padding-bottom: 25px;
}
.manuals__product-summary__heading {
  font: 400 13px/16px "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.84375rem/1rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .manuals__product-summary__heading {
    font: 400 1.5rem/2.25rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.manuals__product-summary__content {
  font-size: 10px;
  font-size: 0.625rem;
  letter-spacing: 0.1px;
  line-height: 12px;
  line-height: 0.75rem;
}
@media screen and (min-width: 768px) {
  .manuals__product-summary__content {
    font-size: 0.8125rem;
    letter-spacing: 0.13px;
    line-height: 1.375rem;
    min-height: 225px;
  }
}
.manuals__devices-and-downloads {
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 768px) {
  .manuals__devices-and-downloads {
    overflow: visible;
  }
}
.manuals__compatibility, .manuals__downloads {
  float: left;
  clear: none;
  width: 50%;
  margin-left: 0;
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .manuals__compatibility, .manuals__downloads {
    float: none;
    width: 100%;
  }
}
.manuals__compatibility__heading, .manuals__downloads__heading {
  font: 400 13px/16px "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.84375rem/1rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .manuals__compatibility__heading, .manuals__downloads__heading {
    font: 400 1.5rem/2.25rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.manuals__compatibility {
  padding-right: 10px;
}
@media screen and (min-width: 768px) {
  .manuals__compatibility {
    float: none;
  }
}
.manuals__compatibility__heading {
  background: url('../png/icon.sheets.png') no-repeat 0 0 transparent;
  background-size: 20px 24px;
  line-height: 16px;
  line-height: 1rem;
  margin-bottom: 15px;
  padding-left: 30px;
}
@media screen and (min-width: 768px) {
  .manuals__compatibility__heading {
    background-size: 39px 48px;
    line-height: 1.5rem;
    margin-bottom: 35px;
    padding-left: 50px;
  }
}
@media screen and (min-width: 768px) {
  .manuals__compatibility p {
    font: 400 0.75rem/1.375rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.manuals__downloads {
  border-left: 1px solid #6d6d6d;
  float: right;
  padding-left: 10px;
}
@media screen and (min-width: 768px) {
  .manuals__downloads {
    border: 0 none;
    float: none;
    padding-left: 0;
    padding-bottom: 45px;
  }
}
.manuals__downloads__heading {
  background: url('../png/icon.adobe.png') no-repeat 0 2px transparent;
  background-size: 22px 22px;
  line-height: 16px;
  line-height: 1rem;
  padding-left: 30px;
}
@media screen and (min-width: 768px) {
  .manuals__downloads__heading {
    background-size: 43px 42px;
    line-height: 1.5rem;
    padding-left: 53px;
  }
}
.manuals__downloads__thumbnail {
  margin: 10px 0;
}
@media screen and (min-width: 768px) {
  .manuals__downloads__thumbnail {
    margin: 10px 0 20px;
  }
}
.manuals__downloads__thumbnail img {
  max-width: 180px;
}
.manuals__register-product {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .manuals__register-product {
    width: 75%;
  }
}
@media screen and (min-width: 768px) {
  .manuals__register-product:before {
    background: url('../png/divider.png') repeat-x 0 0 transparent;
    content: "";
    display: block;
    height: 13px;
    padding-bottom: 45px;
    width: 100%;
  }
}
.manuals__register-product__heading {
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .manuals__register-product__heading {
    font-size: 2.1875rem;
  }
}
.manuals__additional-software {
  display: none;
}
@media screen and (min-width: 768px) {
  .manuals__additional-software {
    display: block;
    float: left;
    clear: none;
    width: 33.33333%;
    margin-left: 0;
    margin-right: 0;
    float: right;
  }
}
@media screen and (min-width: 768px) {
  .manuals__additional-software:before {
    background: url('../png/divider.png') repeat-x 0 0 transparent;
    content: "";
    display: block;
    height: 13px;
    padding-bottom: 45px;
    width: 100%;
  }
}
.manuals__additional-software__heading {
  font: 400 13px/16px "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.84375rem/1rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  .manuals__additional-software__heading {
    font: 400 1.5rem/1.5rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.manuals__additional-software__item {
  margin-bottom: 10px;
}
.manuals__additional-software__item span {
  display: inline-block;
  margin-right: 30px;
  vertical-align: middle;
}
.manuals__additional-software__item--apple span {
  background: url('../png/icon.apple.logo.grey.darker.png') no-repeat 0 0 transparent;
  height: 27px;
  width: 25px;
}
.manuals__additional-software__item--windows span {
  background: url('../png/icon.windows.logo.grey.darker.png') no-repeat 0 0 transparent;
  height: 27px;
  width: 25px;
}
.manuals__additional-software__item--android span {
  background: url('../png/icon.android.logo.grey.darker.png') no-repeat 0 0 transparent;
  height: 27px;
  width: 25px;
}

.media-downloads {
  display: none;
}
@media screen and (min-width: 768px) {
  .media-downloads {
    display: block;
  }
}
.media-downloads h2 {
  font: 400 36px/60px "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 2.25rem/3.75rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .media-downloads h2 {
    font: 400 2.25rem/3.75rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.media-downloads__item {
  position: relative;
}
@media screen and (min-width: 768px) {
  .media-downloads__item {
    float: left;
    clear: none;
    width: 31.33333%;
    margin-left: 0;
    margin-right: 3%;
    margin-bottom: 10px;
  }
  .media-downloads__item:nth-of-type(3n) {
    margin-right: 0;
    float: right;
  }
  .media-downloads__item:nth-of-type(3n + 1) {
    clear: both;
  }
}
@media screen and (min-width: 768px) {
  .media-downloads__item__image {
    width: 100%;
  }
}
.media-downloads__item__text {
  color: #33aae7;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .media-downloads__item__text {
    font: 400 0.875rem/1.875rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: 0.14px;
    margin: 10px 0;
  }
}
.media-downloads__item__text:before {
  background: url('../png/icon.download.png') no-repeat 0 0 transparent;
  content: "";
  display: inline-block;
  height: 19px;
  margin-right: 8px;
  position: relative;
  top: 3px;
  width: 14px;
}
.media-downloads__item__text:after {
  color: #898989;
  content: "(.zip)";
  display: inline-block;
  margin-left: 4px;
}
.media-downloads__item__link {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.modal {
  *zoom: 1;
  background-color: #33aae7;
  border-radius: 0 !important;
  display: none;
  height: 100%;
  left: 0;
  margin: 0 auto;
  overflow: auto;
  max-width: 705px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
}
.modal:before, .modal:after {
  content: '';
  display: table;
}
.modal:after {
  clear: both;
}
@media screen and (min-width: 768px) {
  .modal {
    border-radius: 6px !important;
    box-shadow: -1px 10px 25px 0px #222222;
    height: auto;
    left: 50%;
    margin-bottom: 40px;
    overflow: hidden;
    position: absolute;
    top: 20px;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 705px;
  }
}
.modal--active {
  display: block;
}
.modal__close {
  background: url('../svg/asset-close-modal.svg') no-repeat 0 0 transparent;
  background-size: 35px 34px;
  display: block;
  height: 35px;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 35px;
  z-index: 1;
}
.modal__close--bottom {
  background: url('../svg/asset-close-modal-white.svg') no-repeat 0 0 transparent;
  background-size: 35px 34px;
  display: block;
  height: 35px;
  margin: 30px auto;
  left: initial;
  position: relative;
  right: initial;
  top: initial;
  width: 35px;
}
.modal__header {
  *zoom: 1;
  background-color: #fff;
  position: relative;
}
.modal__header:before, .modal__header:after {
  content: '';
  display: table;
}
.modal__header:after {
  clear: both;
}
@media screen and (min-width: 768px) {
  .modal__header {
    padding: 70px 50px 220px;
  }
}
.modal__header:after {
  background: url('../svg/asset.angle.blue.model.svg') no-repeat 0 0 transparent !important;
  background-size: cover !important;
  content: "";
  display: block;
  height: 60px;
  left: 0;
  position: absolute;
  top: 120px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .modal__header:after {
    bottom: 0;
    height: 82px;
    top: auto;
  }
}
.modal__header__image {
  height: 172px;
  position: relative;
  width: 152px;
}
@media screen and (min-width: 768px) {
  .modal__header__image {
    height: 220px;
    float: left;
    width: 190px;
  }
}
.modal__header__image .dealers__callout__image {
  bottom: -15px;
  left: 30px;
  top: auto;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .modal__header__image .dealers__callout__image {
    bottom: 20px;
    left: auto;
  }
}
.modal__header__image .dealers__callout__image .callout-product-image-hex {
  width: 100%;
}
.modal__header__title {
  background: #33aae7;
  padding: 50px 10% 0;
}
@media screen and (min-width: 768px) {
  .modal__header__title {
    background: transparent;
    float: right;
    margin-top: 28px;
    padding: 0;
  }
}
.modal__header__title h1 {
  color: #2b2b2c;
  font: 400 50px/40px "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: -1.5px;
  text-align: left;
  text-shadow: 0px 7px 2px rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .modal__header__title h1 {
    font: 400 70px/50px "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: -2.45px;
    text-shadow: 1px 15px 2px rgba(0, 0, 0, 0.1);
  }
}
.modal__header__title h4 {
  color: #2b2b2c;
  font: 400 13px/13px "BlenderProMedium", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  margin: 0;
  text-align: left;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .modal__header__title h4 {
    font: 400 17px/17px "BlenderProMedium", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: -0.34px;
  }
}
.modal__partners {
  *zoom: 1;
  padding: 50px 20px 0;
}
.modal__partners:before, .modal__partners:after {
  content: '';
  display: table;
}
.modal__partners:after {
  clear: both;
}
.modal__partners__item {
  float: left;
  clear: none;
  width: 48.5%;
  margin-left: 0;
  margin-right: 3%;
  margin-bottom: 45px;
  position: relative;
  text-align: center;
}
.modal__partners__item:nth-of-type(2n) {
  margin-right: 0;
  float: right;
}
.modal__partners__item:nth-of-type(2n + 1) {
  clear: both;
}
@media screen and (min-width: 768px) {
  .modal__partners__item {
    float: left;
    clear: none;
    width: 31.33333%;
    margin-left: 0;
    margin-right: 3%;
  }
  .modal__partners__item:nth-of-type(2n) {
    margin-right: 3%;
    float: left;
  }
  .modal__partners__item:nth-of-type(2n + 1) {
    clear: none;
  }
  .modal__partners__item:nth-of-type(3n) {
    margin-right: 0;
    float: right;
  }
  .modal__partners__item:nth-of-type(3n + 1) {
    clear: both;
  }
}
.modal__partners__item:nth-of-type(odd):after {
  background: url('../png/asset-dashed-seperator.png') no-repeat center center transparent;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  right: -2px;
  top: 0;
  width: 3px;
}
@media screen and (min-width: 768px) {
  .modal__partners__item:nth-of-type(odd):after {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .modal__partners__item:nth-of-type(3n+2):before {
    background: url('../png/asset-dashed-seperator.png') no-repeat center center transparent;
    content: "";
    height: 100%;
    left: -9px;
    position: absolute;
    top: 0;
    width: 3px;
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .modal__partners__item:nth-of-type(3n+2):after {
    background: url('../png/asset-dashed-seperator.png') no-repeat center center transparent;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    right: -9px;
    top: 0;
    width: 3px;
  }
}
.modal__partners .partner-item {
  text-align: center;
}
.modal__partners .partner-item__logo {
  display: block;
  min-height: 80px;
  margin: 0 auto 8px;
  position: relative;
}
.modal__partners .partner-item__logo img {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-height: 100%;
  max-width: 90%;
}
.modal__partners .partner-item__btn {
  background-color: #2b2b2c;
  border-radius: 20px;
  color: #fff;
  display: inline-block;
  font: 400 18px/57px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1.125rem/3.5625rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  line-height: 20px;
  letter-spacing: 1.08px;
  padding: 3px 20px;
  text-align: center;
  text-transform: uppercase;
}
.modal__copy {
  color: #fff;
  font: 400 11px/19px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  padding: 11px 55px 5px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .modal__copy {
    padding: 11px 55px 5px;
  }
}

.page-blocker {
  background: rgba(0, 0, 0, 0.8);
  height: 100%;
  display: none;
  left: 0;
  overflow: auto;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 11000;
}
@media screen and (min-width: 768px) {
  .page-blocker {
    z-index: 900px;
  }
}
.page-blocker--active {
  display: block;
}

.no-scroll {
  overflow: hidden;
  position: fixed;
}
@media screen and (min-width: 768px) {
  .no-scroll {
    position: relative;
  }
}

.navigation-bar {
  overflow: hidden;
  position: relative;
}
.navigation-bar__branding {
  background: url('../svg/logo.inline.svg') no-repeat 0 0 transparent;
  background-size: auto 27px;
  height: 27px;
  display: inline-block;
  margin-top: 11px;
  text-indent: -9999px;
  transition: margin-top 200ms;
  width: 100px;
}
@media screen and (min-width: 768px) {
  .navigation-bar__branding {
    background: url('../svg/logo.inline.svg') no-repeat 0 0 transparent;
    background-size: auto 54px;
    height: 54px;
    margin-top: -4px;
    width: 200px;
    vertical-align: top;
  }
  .page-head-compressed .navigation-bar__branding {
    background-size: auto 50px;
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .navigation-bar__shift {
    display: inline-block;
    position: absolute;
    right: 30px;
    top: 6px;
  }
}
@media screen and (min-width: 768px) {
  .navigation-bar__inner {
    height: 54px;
  }
}
.navigation-bar__navigation {
  margin-top: 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .navigation-bar__navigation {
    display: inline-block;
    margin-top: 0;
  }
}
@media screen and (min-width: 1100px) {
  .navigation-bar__navigation {
    position: absolute;
    left: 50%;
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
.navigation-bar__navigation__item {
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  color: rgba(255, 255, 255, 0.7);
  display: block;
  font: 400 16px/30px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1rem/1.875rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  padding: 10px 0;
  transition: color .4s;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .navigation-bar__navigation__item {
    border: 0 none;
    display: inline-block;
    font: 400 1.375em/54px "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    margin: 0 15px;
    padding: 0;
  }
  .navigation-bar__navigation__item:first-child {
    margin-left: 0;
  }
  .navigation-bar__navigation__item:last-child {
    margin-right: 0;
  }
}
.no-touch .navigation-bar__navigation__item:hover, .navigation-bar__navigation__item--current {
  color: #33aae7;
}
.navigation-bar__search-form {
  display: inline-block;
  height: 34px;
  margin-bottom: 20px;
  position: relative;
  top: 10px;
  width: 100%;
  vertical-align: top;
}
@media screen and (min-width: 768px) {
  .navigation-bar__search-form {
    margin-right: 10px;
    margin-bottom: 0;
    top: 0;
    width: 150px;
  }
}
.navigation-bar__search-form__close {
  background: url('../png/icon.search-close.png') no-repeat 0 0 transparent;
  display: block;
  height: 20px;
  left: 10px;
  position: absolute;
  text-indent: -9999px;
  top: 10px;
  width: 20px;
  z-index: 90;
}
.navigation-bar__search-form__input {
  background: url('../png/icon.search.gray.png') no-repeat right 12px top 9px #2b2b2c;
  border: 2px solid #ffffff;
  border-radius: 40px;
  color: #ffffff;
  font-family: "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-size: 12px;
  height: 34px;
  line-height: 34px;
  outline: none;
  text-indent: 10px;
  position: absolute;
  top: 0;
  transition: all .4s;
  -webkit-appearance: none;
  width: 100%;
  z-index: 100;
}
.navigation-bar__search-form__input::-webkit-input-placeholder {
  color: transparent;
}
.navigation-bar__search-form__input::-moz-placeholder {
  color: transparent;
}
.navigation-bar__search-form__input:-ms-input-placeholder {
  color: transparent;
}
.navigation-bar__search-form__input.placeholder {
  color: transparent;
}
@media screen and (min-width: 768px) {
  .navigation-bar__search-form__input {
    width: 150px;
  }
}
.navigation-bar__search-form__input:focus {
  background: url('../png/icon.search.white.png') no-repeat right 12px top 9px #33aae7;
  text-indent: 40px;
  width: 100%;
  z-index: 80;
}
.navigation-bar__search-form__input:focus::-webkit-input-placeholder {
  color: #ffffff;
}
.navigation-bar__search-form__input:focus::-moz-placeholder {
  color: #ffffff;
}
.navigation-bar__search-form__input:focus:-ms-input-placeholder {
  color: #ffffff;
}
.navigation-bar__search-form__input:focus.placeholder {
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .navigation-bar__search-form__input:focus {
    width: 170px;
  }
}
@media screen and (min-width: 900px) {
  .navigation-bar__search-form__input:focus {
    width: 356px;
  }
}
@media screen and (min-width: 900px) {
  .navigation-bar__search-form__input--no-instagram:focus {
    width: 306px;
  }
}
.navigation-bar__social {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  left: 16px;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 20px 0;
}
@media screen and (min-width: 768px) {
  .navigation-bar__social {
    display: none;
    -webkit-flex-direction: initial;
        -ms-flex-direction: initial;
            flex-direction: initial;
    -webkit-justify-content: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }
}
@media screen and (min-width: 1000px) {
  .navigation-bar__social {
    display: inline-block;
    margin: 0;
  }
}
.navigation-bar__social__item {
  display: inline-block;
  height: 40px;
  margin: 0 4%;
  text-indent: -9999px;
  vertical-align: middle;
  width: 40px;
}
.no-flexbox .navigation-bar__social__item {
  margin: 0 4%;
}
@media screen and (min-width: 768px) {
  .navigation-bar__social__item {
    height: 40px;
    margin: 0 0 0 6px;
    width: 40px;
  }
}
.navigation-bar__social__item:first-child {
  margin-left: 0;
}
@media screen and (min-width: 900px) {
  .navigation-bar__social__item:first-child {
    margin-left: 6px;
  }
}
.navigation-bar__social__item:last-child {
  margin-right: 0;
}
.navigation-bar__social__item--facebook {
  background: url('../png/icon.facebook.png');
}
.no-touch .navigation-bar__social__item--facebook:hover {
  background: url('../png/icon.facebook.blue.png');
}
.navigation-bar__social__item--twitter {
  background: url('../png/icon.twitter.png');
}
.no-touch .navigation-bar__social__item--twitter:hover {
  background: url('../png/icon.twitter.blue.png');
}
.navigation-bar__social__item--youtube {
  background: url('../png/icon.youtube.png');
}
.no-touch .navigation-bar__social__item--youtube:hover {
  background: url('../png/icon.youtube.blue.png');
}
.navigation-bar__social__item--instagram {
  background: url('../png/icon.instagram.png');
}
.no-touch .navigation-bar__social__item--instagram:hover {
  background: url('../png/icon.instagram.blue.png');
}

.menu-toggle {
  position: absolute;
  display: block;
  margin: auto;
  height: 15px;
  right: 25px;
  top: 16px;
  width: 27px;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .menu-toggle {
    display: none;
  }
}
.menu-toggle .bars {
  display: block;
  width: 27px;
  height: 3px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -1.5px;
  transition: all .2s linear;
}
.menu-toggle .bars:before, .menu-toggle .bars:after {
  display: block;
  width: 27px;
  height: 3px;
  background: #fff;
  content: "";
  position: absolute;
  transition: .2s linear;
}
.menu-toggle .bars:before {
  top: -6px;
}
.menu-toggle .bars:after {
  bottom: -6px;
}
.page-head--open .menu-toggle .bars {
  background-color: transparent;
}
.page-head--open .menu-toggle .bars:before {
  top: 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.page-head--open .menu-toggle .bars:after {
  bottom: 0;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.overlay {
  height: 100%;
  left: 0;
  position: fixed;
  top: 50px;
  transition: top 200ms;
  width: 100%;
  z-index: 500;
}
@media screen and (min-width: 768px) {
  .overlay {
    top: 140px;
  }
}
@media screen and (min-width: 768px) {
  .page-head-compressed .overlay {
    top: 70px;
  }
}
.overlay--360 {
  display: none;
  background: #ffffff;
}
.overlay--360 .overlay__360-image {
  padding-top: 55px;
}
@media screen and (min-width: 768px) {
  .overlay--360 .overlay__360-image {
    padding-top: 65px;
  }
}
.overlay--360 .overlay__360-image img {
  width: 100%;
}
.overlay--360 .overlay__360-image__controls {
  overflow: hidden;
  position: relative;
  padding-top: 30px;
}
.overlay--360 .overlay__360-image__controls .stop-point {
  background: #ffffff;
  border: 1px solid rgba(51, 170, 231, 0.2);
  border-radius: 20px;
  color: #33aae7;
  display: inline-block;
  font: 400 35px/45px "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 2.1875rem/2.8125rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  height: 45px;
  max-width: 180px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  z-index: 1;
}
.overlay--360 .overlay__360-image__controls .stop-point--front {
  float: left;
}
.overlay--360 .overlay__360-image__controls .stop-point--rear {
  float: right;
}
.overlay--360 .overlay__360-image__controls .slider {
  background: #33aae7;
  border: 1px solid #33aae7, 1;
  border-radius: 20px;
  cursor: pointer;
  color: #ffffff;
  font: 400 18px/45px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1.125rem/2.8125rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  height: 45px;
  max-width: 180px;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 3;
}
.overlay--360 .overlay__360-image__controls .slide-bar {
  background: url('../png/slider-bar.png') repeat-x left center transparent;
  height: 45px;
  position: absolute;
  top: 29px;
  width: 100%;
}
.overlay--360 .overlay__360-image__controls .ui-slider {
  margin: 0 360px 0 180px;
  position: relative;
}
.overlay--360 .overlay__360-image__controls .ui-slider-handle {
  background: #33aae7;
  border: 1px solid #33aae7, 1;
  border-radius: 20px;
  cursor: pointer;
  color: #ffffff;
  font: 400 18px/45px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1.125rem/2.8125rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  height: 45px;
  max-width: 180px;
  outline: none;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
}
.overlay--video {
  display: none;
  background: #2b2b2c;
}
.overlay--caption {
  background: #2b2b2c;
  display: none;
}
.overlay--caption .overlay__image {
  text-align: center;
  padding-top: 55px;
}
@media screen and (min-width: 768px) {
  .overlay--caption .overlay__image {
    padding-top: 65px;
  }
}
.overlay--caption .overlay__image img {
  width: 100%;
}
.overlay--caption .overlay__image__caption {
  padding-top: 30px;
}
@media screen and (min-width: 768px) {
  .overlay--caption .overlay__image__caption {
    padding-top: 65px;
  }
}
.overlay--caption .overlay__image__caption .caption-title {
  color: #ffffff;
  font: 400 17px/18px "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1.09375rem/1.125rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .overlay--caption .overlay__image__caption .caption-title {
    font: 400 2.1875rem/2.25rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.overlay--caption .overlay__image__caption .caption-text {
  color: #ffffff;
  margin: 0 auto;
  max-width: 640px;
  text-align: center;
  width: 100%;
}
.overlay__close {
  background: url('../png/icon.close.white.png') no-repeat 0 0 transparent;
  background-size: 40px 40px;
  height: 40px;
  position: absolute;
  right: 50px;
  top: 40px;
  width: 40px;
  z-index: 12;
}
@media screen and (min-width: 768px) {
  .overlay__close {
    background-size: 50px 51px;
    height: 51px;
    width: 50px;
  }
}
.overlay__close--dark {
  background: url('../png/icon.close.dark.png') no-repeat 0 0 transparent;
  background-size: 50px 51px;
  height: 51px;
  width: 50px;
}
.overlay--video .overlay__close, .overlay--caption .overlay__close {
  right: 20px;
  top: 40px;
}
@media screen and (min-width: 768px) {
  .overlay--video .overlay__close, .overlay--caption .overlay__close {
    top: 80px;
    right: 50px;
  }
}
.overlay__video {
  height: 100%;
  position: relative;
}
.overlay__video__inner {
  bottom: 140px;
  position: absolute;
  transition: bottom 200ms;
  top: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-head-compressed .overlay__video__inner {
    bottom: 70px;
  }
}
.overlay__video iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.page-foot {
  background: #181818;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-foot {
    height: 194px;
    padding: 25px 0;
  }
}
.page-foot__info {
  overflow: hidden;
}
.page-foot__primary {
  padding: 25px;
}
@media screen and (min-width: 768px) {
  .page-foot__primary {
    float: left;
    clear: none;
    width: 50%;
    margin-left: 0;
    margin-right: 0;
    position: relative;
    left: -51.5%;
    left: -50%;
    padding: 0;
  }
}
.page-foot__secondary {
  background: #212121;
  padding: 25px;
}
@media screen and (min-width: 768px) {
  .page-foot__secondary {
    float: left;
    clear: none;
    width: 50%;
    margin-left: 0;
    margin-right: 0;
    position: relative;
    left: 51.5%;
    left: 50%;
    background: transparent;
    padding: 0;
  }
}
.page-foot__mail-signup__heading {
  color: #33aae7;
  font: 400 16px/16px "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1rem/1rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .page-foot__mail-signup__heading {
    font: 400 1.5rem/1.625rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.page-foot__mail-signup__text {
  color: #ffffff;
  font: 400 12px/16px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.75rem/1rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  .page-foot__mail-signup__text {
    font: 400 0.75rem/1rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.page-foot__mail-signup__input {
  overflow: hidden;
  padding: 10px 0;
}
@media screen and (min-width: 768px) {
  .page-foot__mail-signup__input {
    padding: 20px 0 0;
  }
}
.page-foot__mail-signup__input .mail-signup-input__field {
  float: left;
  clear: none;
  width: 65.66667%;
  margin-left: 0;
  margin-right: 3%;
  background: #4d4d4d;
  border: 0 none;
  color: #ffffff;
  font: 400 9px/24px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.59375rem/1.5rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  height: 37px;
  outline: none;
  text-indent: 10px;
  -webkit-appearance: none;
}
.page-foot__mail-signup__input .mail-signup-input__field:nth-of-type(3n) {
  margin-right: 0;
  float: right;
}
.page-foot__mail-signup__input .mail-signup-input__field:nth-of-type(3n + 1) {
  clear: both;
}
.page-foot__mail-signup__input .mail-signup-input__field::-webkit-input-placeholder {
  color: #ffffff;
}
.page-foot__mail-signup__input .mail-signup-input__field::-moz-placeholder {
  color: #ffffff;
}
.page-foot__mail-signup__input .mail-signup-input__field:-ms-input-placeholder {
  color: #ffffff;
}
.page-foot__mail-signup__input .mail-signup-input__field.placeholder {
  color: #ffffff;
}
@media screen and (min-width: 768px) {
  .page-foot__mail-signup__input .mail-signup-input__field {
    font: 400 0.75rem/1rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    height: 43px;
  }
}
.page-foot__mail-signup__input .mail-signup-input__button {
  float: left;
  clear: none;
  width: 31.33333%;
  margin-left: 0;
  margin-right: 3%;
  clear: none !important;
  margin-right: 0;
}
.page-foot__mail-signup__input .mail-signup-input__button:nth-of-type(3n) {
  margin-right: 0;
  float: right;
}
.page-foot__mail-signup__input .mail-signup-input__button:nth-of-type(3n + 1) {
  clear: both;
}
.page-foot__mail-signup__age {
  color: #ffffff;
  font: 400 12px/16px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.75rem/1rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  .page-foot__mail-signup__age {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font: 400 0.75rem/1rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    margin: 10px 0 0;
  }
}
.page-foot__primary__first {
  overflow: hidden;
}
.page-foot__branding {
  float: left;
  clear: none;
  width: 65.66667%;
  margin-left: 0;
  margin-right: 3%;
  background: url('../svg/logo.inline.gray.svg') no-repeat -7px 0 transparent;
  background-size: 180px 50px;
  display: inline-block;
  height: 50px;
  text-indent: -9999px;
}
.page-foot__branding:nth-of-type(3n) {
  margin-right: 0;
  float: right;
}
.page-foot__branding:nth-of-type(3n + 1) {
  clear: both;
}
@media screen and (min-width: 768px) {
  .page-foot__branding {
    background: url('../svg/logo.inline.gray.svg') no-repeat -10px 0 transparent;
    background-size: 180px 50px;
    display: inline-block;
    height: 50px;
    text-indent: -9999px;
    width: 180px;
  }
}
@media screen and (min-width: 1080px) {
  .page-foot__branding {
    background: url('../svg/logo.inline.gray.svg') no-repeat -10px 0 transparent;
    background-size: 200px 54px;
    height: 54px;
    width: 200px;
  }
}
.page-foot__cta {
  float: left;
  clear: none;
  width: 31.33333%;
  margin-left: 0;
  margin-right: 3%;
  clear: none;
  margin-right: 0;
  margin-top: 16px;
}
.page-foot__cta:nth-of-type(3n) {
  margin-right: 0;
  float: right;
}
.page-foot__cta:nth-of-type(3n + 1) {
  clear: both;
}
@media screen and (min-width: 768px) {
  .page-foot__cta {
    margin-top: 0;
    width: auto;
  }
}
@media screen and (min-width: 1080px) {
  .page-foot__cta {
    margin-top: 0;
    width: 31.33333%;
  }
}
.page-foot__navigation {
  padding-top: 13px;
}
.page-foot__navigation__item {
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  color: rgba(255, 255, 255, 0.7);
  display: block;
  font: 400 16px/30px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1rem/1.875rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  padding: 10px 0;
  transition: color .4s;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .page-foot__navigation__item {
    border: 0 none;
    display: inline-block;
    font-size: 0.9rem;
    line-height: 0.9rem;
    margin-right: 10px;
  }
}
@media screen and (min-width: 1080px) {
  .page-foot__navigation__item {
    border: 0 none;
    display: inline-block;
    font-size: 1.125rem;
    line-height: 1.125rem;
    margin-right: 25px;
  }
}
.no-touch .page-foot__navigation__item:hover {
  color: #33aae7;
}
.page-foot__copy-info {
  color: #8b8b8b;
  font: 400 9px/13px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.5875rem/0.84375rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  padding: 0 25px 25px;
}
@media screen and (min-width: 768px) {
  .page-foot__copy-info {
    font: 400 0.75rem/1.25rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    margin: -26px 0 0;
    padding: 0;
  }
}
@media screen and (min-width: 1080px) {
  .page-foot__copy-info {
    line-height: 2.25rem;
  }
}

.page-head-sizer {
  background: url('../gif/bg.page-head.gif');
  height: 50px;
}
@media screen and (min-width: 768px) {
  .page-head-sizer {
    height: 140px;
  }
}
@media screen and (min-width: 768px) {
  .page-head-sizer--compressed {
    height: 70px !important;
  }
}

.page-head {
  background: url('../gif/bg.page-head.gif');
  box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.25);
  left: 0;
  max-height: 50px;
  overflow: hidden;
  position: fixed;
  transition: height 200ms, max-height 200ms;
  top: 0;
  width: 100%;
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  .page-head {
    height: 140px;
    max-height: none;
  }
}
.page-head--open {
  overflow: auto;
  max-height: 100vh;
  z-index: 3000;
}
@media screen and (min-width: 768px) {
  .page-head--open {
    overflow: hidden;
    max-height: none;
    z-index: 1000;
  }
}
@media screen and (min-width: 768px) {
  .page-head--compressed {
    height: 70px !important;
  }
}
.page-head__inner {
  margin: 0 auto;
  max-width: 1600px;
  padding: 0 25px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-head__inner {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding: 0 30px;
  }
}

.partners-cloud {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .partners-cloud {
    padding-bottom: 135px;
  }
}
.partners-cloud__filter {
  color: #ffffff;
  display: inline-block;
  font: 400 16px/14px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1rem/0.9rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  margin: 0 auto 39px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .partners-cloud__filter {
    display: inline-block;
    font: 400 1.125rem/0.9rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    margin: 0 auto 69px;
  }
}
.partners-cloud__filter span {
  display: inline-block;
  font: 400 18px/14px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1.125rem/0.9rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
}
.partners-cloud__filter__item {
  border-radius: 25px;
  color: #ffffff;
  display: inline-block;
  font: 400 16px/25px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif !important;
  font: 400 1rem/1.5625rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif !important;
  height: 25px;
  margin-bottom: 10px;
  padding: 0 15px;
}
@media screen and (min-width: 768px) {
  .partners-cloud__filter__item {
    font: 400 1.125rem/1.5625rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif !important;
  }
}
.partners-cloud__filter__item:hover {
  background: #33aae7;
  color: #ffffff;
}
.partners-cloud__logos {
  text-align: center;
}
.partners-cloud__logos__item {
  display: inline-block;
  margin: 10px 20px;
}

.post-products {
  margin-top: 38px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .post-products {
    margin: 50px 0;
  }
}
.post-products__heading {
  font: 400 18px/18px "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1.125rem/1.125rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .post-products__heading {
    font: 400 2.25rem/3.75rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.post-products__strip {
  background: #33aae7;
  margin: 10px 0 38px;
  overflow: hidden;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .post-products__strip {
    overflow: visible;
    margin-bottom: 26px;
    min-height: 322px;
  }
}
.post-products__strip__content {
  float: left;
  clear: none;
  width: 50%;
  margin-left: 0;
  margin-right: 0;
  padding: 31px 0 33px;
}
@media screen and (min-width: 768px) {
  .post-products__strip__content {
    float: left;
    clear: none;
    width: 60%;
    margin-left: 0;
    margin-right: 0;
    padding: 58px 0 48px;
  }
}
.post-products__strip__heading {
  color: #ffffff;
  font: 400 24px/22px "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1.5rem/1.40625rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: -0.84px;
  margin: 0 0 5px;
}
@media screen and (min-width: 768px) {
  .post-products__strip__heading {
    font: 400 3rem/2.8125rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: -1.68px;
    margin: 0 0 15px;
  }
}
.post-products__strip__text {
  color: #ffffff;
  padding-right: 5%;
}
@media screen and (min-width: 768px) {
  .post-products__strip__text {
    line-height: 1.875rem;
    padding-right: 5%;
  }
}
.post-products__strip__image {
  float: left;
  clear: none;
  width: 50%;
  margin-left: 0;
  margin-right: 0;
  background: url('../png/bg.hex-news-product.png') no-repeat;
  background-size: 100% 100%;
}
@media screen and (min-width: 768px) {
  .post-products__strip__image {
    float: left;
    clear: none;
    width: 40%;
    margin-left: 0;
    margin-right: 0;
    margin-bottom: -30px;
    margin-top: -30px;
    max-width: 346px;
  }
}
.post-products__strip__image-inner {
  height: 0;
  padding: 112.13873% 0 0;
  position: relative;
}
.post-products__strip__image-inner img {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-height: 80%;
  max-width: 80%;
}

.product-categories {
  text-align: center;
}
.product-categories__filter {
  color: #000000;
  display: none;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .product-categories__filter {
    display: inline-block;
    font: 400 1.125rem/0.9rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.product-categories__filter span {
  display: inline-block;
  font: 400 18px/14px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1.125rem/0.9rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
}
.product-categories__filter__item {
  border-radius: 25px;
  display: inline-block;
  font: 400 18px/25px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif !important;
  font: 400 1.125rem/1.5625rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif !important;
  height: 25px;
  padding: 0 15px;
}
.product-categories__filter__item:hover {
  background: #33aae7;
  color: #ffffff;
}
.product-categories__category-items {
  text-align: center;
}
.product-categories__category-item {
  float: left;
  clear: none;
  width: 31.33333%;
  margin-left: 0;
  margin-right: 3%;
  overflow: hidden;
  padding: 20px 0;
}
.product-categories__category-item:nth-of-type(3n) {
  margin-right: 0;
  float: right;
}
.product-categories__category-item:nth-of-type(3n + 1) {
  clear: both;
}
.product-categories__category-item__inner {
  margin: 0 auto;
  max-width: 269px;
}
.product-categories__category-item__image {
  width: 100%;
}
.product-categories__category-item__name {
  font: 400 16px/16px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1rem/1rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  margin: 10px 0;
  text-transform: uppercase;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .product-categories__category-item__name {
    font: 400 2.1875rem/1.5625rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: 1.4px;
    margin: 20px 0;
  }
}
.product-categories__category-item__link {
  padding: 0 5px;
}
@media screen and (min-width: 768px) {
  .product-categories__category-item__link {
    padding: 0 20px;
  }
}
.product-categories__category-items--four-items .product-categories__category-item {
  float: left;
  clear: none;
  width: 22.75%;
  margin-left: 0;
  margin-right: 3%;
}
.product-categories__category-items--four-items .product-categories__category-item:nth-of-type(4n) {
  margin-right: 0;
  float: right;
}
.product-categories__category-items--four-items .product-categories__category-item:nth-of-type(4n + 1) {
  clear: both;
}
.product-categories__view-all {
  padding: 20px 0 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .product-categories__view-all {
    padding: 40px 0 60px;
  }
}
.product-categories__view-all a {
  position: relative;
  z-index: 1;
}
.product-categories__heading {
  font: 400 18px/19px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1.125rem/1.2rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: letters-spacing(40, 18px);
  letter-spacing: letters-spacing(40, 1.125rem);
  margin-top: 72px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .product-categories__heading {
    font: 400 1.75rem/2.4rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: letters-spacing(40, 1.125rem);
    text-align: left;
  }
}

.product-landing {
  padding-top: 45px;
}
@media screen and (min-width: 768px) {
  .product-landing {
    padding-top: 59px;
  }
}
.product-landing__item {
  padding-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .product-landing__item {
    padding-bottom: 59px;
  }
}
.product-landing__item__detail {
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .product-landing__item__detail {
    padding-bottom: 0;
  }
}
.product-landing__item .product-landing-item-detail__heading {
  font: 400 24px/24px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1.5rem/1.5rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: 1.92px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .product-landing__item .product-landing-item-detail__heading {
    font: 400 3rem/3rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    float: left;
    letter-spacing: 1.92px;
    margin: 0 0 10px;
    width: 30%;
  }
}
@media screen and (min-width: 768px) {
  .product-landing__item .product-landing-item-detail__text {
    width: 30%;
  }
}
.product-landing__item .product-landing-item-detail__image {
  margin: 40px 0;
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .product-landing__item .product-landing-item-detail__image {
    float: right;
    margin: 0 0 -35px;
    max-width: 63%;
  }
}
.product-landing__popular {
  clear: both;
  position: relative;
}
@media screen and (min-width: 768px) {
  .product-landing__popular {
    margin-top: -35px;
  }
}
.product-landing__popular .product-landing-popular__heading {
  position: relative;
}
.product-landing__popular .product-landing-popular__heading span {
  background: #ffffff;
  color: #acacac;
  display: inline-block;
  font-family: "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.72px;
  padding-right: 10px;
  position: relative;
  text-transform: uppercase;
  z-index: 2;
}
.product-landing__popular .product-landing-popular__heading:after {
  background: #e8e8e8;
  content: "";
  display: inline-block;
  height: 1px;
  position: relative;
  top: -27px;
  width: 100%;
  z-index: 1;
}
.product-landing__popular .product-landing-popular__wrapper {
  overflow: hidden;
}
.product-landing__popular .product-landing-popular__wrapper .slick-dots {
  clear: both;
  float: right;
  list-style-type: none;
  margin: -25px 0 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .product-landing__popular .product-landing-popular__wrapper .slick-dots {
    margin: 25px 10px 0 0;
  }
}
.product-landing__popular .product-landing-popular__wrapper .slick-dots li {
  display: inline-block;
  margin: 0 4px;
  outline: none;
}
.product-landing__popular .product-landing-popular__wrapper .slick-dots li:last-child {
  margin-right: 0;
}
.product-landing__popular .product-landing-popular__wrapper .slick-dots li button {
  background: rgba(51, 170, 231, 0.2);
  border: none;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  outline: none;
  padding: 0;
  position: relative;
  text-indent: -9999px;
  -webkit-appearance: none;
  width: 8px;
}
.product-landing__popular .product-landing-popular__wrapper .slick-dots li.slick-active button {
  background: #33aae7;
}
.product-landing__popular .product-landing-popular__item {
  outline: 0 none;
  position: relative;
}
@media screen and (min-width: 768px) {
  .product-landing__popular .product-landing-popular__item {
    margin: 0 10px 0;
  }
}
.product-landing__popular .product-landing-popular__item__image {
  border: 1px solid #e8e8e8;
  height: 0;
  overflow: hidden;
  padding: 55.31401% 0 0;
  position: relative;
}
.product-landing__popular .product-landing-popular__item__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-height: 80%;
  max-width: 60%;
}
.product-landing__popular .product-landing-popular__item__image .hover-overlay {
  background: rgba(255, 255, 255, 0);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: background .4s;
  width: 100%;
  z-index: 1;
}
.product-landing__popular .product-landing-popular__item__title {
  border-bottom: 1px solid #e8e8e8;
  color: #33aae7;
  font: 400 16px/35px "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1rem/2.1875rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  transition: color .4s;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .product-landing__popular .product-landing-popular__item__title {
    font: 400 1.125rem/2.1875rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: -0.63px;
  }
}
.no-touch .product-landing__popular .product-landing-popular__item:hover .product-landing-popular__item__title {
  color: #acacac;
}
.no-touch .product-landing__popular .product-landing-popular__item:hover .product-landing-popular__item__image .hover-overlay {
  background: rgba(255, 255, 255, 0.2);
}
.product-landing__popular .product-landing-popular__item__link {
  bottom: 0;
  left: 0;
  outline: 0 none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}
.product-landing__view-more {
  clear: both;
  overflow: hidden;
  padding-top: 15px;
}
@media screen and (min-width: 768px) {
  .product-landing__view-more {
    padding-top: 28px;
  }
}

.product-signup {
  padding-bottom: 30px;
}
.product-signup .container {
  display: inline-block;
  left: 50%;
  position: relative;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 0 7%;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .product-signup .container {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .product-signup .container {
    max-width: 100%;
    padding: 0;
  }
}
@media screen and (min-width: 820px) {
  .product-signup .container {
    max-width: 915px;
    padding: 0;
  }
}
.product-signup .container hr {
  background: #000;
  margin: 0 auto 15px;
  min-width: 220px;
  padding: 0 10px;
  max-width: 100%;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .product-signup .container hr {
    margin: 20px auto 30px;
    max-width: 535px;
    padding: 0;
    opacity: 1;
  }
}
@media screen and (min-width: 820px) {
  .product-signup .container hr {
    margin: 0px auto 30px;
    max-width: 675px;
    padding: 0;
  }
}
.product-signup__image {
  display: inline-block;
  max-width: 125px;
  width: 25%;
}
.product-signup__image img {
  margin-right: 4%;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .product-signup__image {
    max-width: 285px;
    width: auto;
  }
  .product-signup__image img {
    margin-right: 30px;
    max-width: 285px;
    width: auto;
  }
}
.product-signup__form {
  color: #2b2b2c;
  display: inline-block;
  float: right;
}
.product-signup__form h3 {
  color: #33aae7;
  font: 400 15px/15px "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.975rem/0.975rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  margin: 10px 0;
}
@media screen and (min-width: 768px) {
  .product-signup__form h3 {
    font: 400 1.5rem/1.5rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.product-signup__form p {
  font: 400 8px/8px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.55rem/0.55rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .product-signup__form p {
    font: 400 0.75rem/0.75rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: 0.12px;
    margin-bottom: 20px;
  }
}
.product-signup__form input {
  background: #e6e6e6;
  border: none;
  font: 400 8px/11px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.55rem/0.725rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  .product-signup__form input {
    font: 400 0.75rem/0.925rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.product-signup__form input[type="text"] {
  float: left;
  margin-right: 5%;
  padding: 10px 7px;
  width: 55%;
}
@media screen and (min-width: 768px) {
  .product-signup__form input[type="text"] {
    margin-right: 25px;
    padding: 17px 15px;
    width: 225px;
  }
}
@media screen and (min-width: 880px) {
  .product-signup__form input[type="text"] {
    width: 340px;
  }
}
.product-signup__form input[type="checkbox"] {
  margin-right: 5px;
}
.product-signup__form button {
  float: left;
  font: 400 18px/18px "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1.125rem/1.125rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  position: relative;
  top: 2px;
}
@media screen and (max-width: 768px) {
  .product-signup__form button {
    font-size: 0.775rem;
    height: 33px;
    padding: 7px;
    top: -1px;
    width: 40%;
  }
}
.product-signup__form br {
  display: block;
  margin-top: 5px;
}
@media screen and (min-width: 768px) {
  .product-signup__form br {
    margin-top: 10px;
  }
}
.product-signup__form label {
  font: 400 8px/8px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.55rem/0.55rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
}
@media screen and (min-width: 768px) {
  .product-signup__form label {
    font: 400 0.75rem/0.75rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.product-signup__form--to-submit {
  width: 70%;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .product-signup__form--to-submit {
    width: 480px;
  }
}
@media screen and (min-width: 880px) {
  .product-signup__form--to-submit {
    width: 590px;
  }
}
.product-signup__form--submitted {
  display: none;
  width: 70%;
}
.product-signup__form--submitted h2 {
  color: #33aae7;
  display: table-cell;
  font: 400 24px/24px "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1.525rem/1.525rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .product-signup__form--submitted h2 {
    -webkit-transform: translate(-20%, 100%);
        -ms-transform: translate(-20%, 100%);
            transform: translate(-20%, 100%);
  }
}
@media screen and (min-width: 768px) {
  .product-signup__form--submitted {
    height: 200px;
    width: auto;
  }
  .product-signup__form--submitted h2 {
    font: 400 2.125rem/2.125rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}

.InlineBlock {
  display: inline-block;
}

.promo-standout {
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 0 42px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .promo-standout {
    padding: 60px 0 60px;
  }
}
.promo-standout__image img {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .promo-standout__logo {
    padding-bottom: 30px;
  }
}
.promo-standout__logo img {
  max-width: 50%;
  width: auto;
}
@media screen and (min-width: 768px) {
  .promo-standout__logo img {
    height: 35px;
    max-width: none;
  }
}
.promo-standout__heading {
  font: 400 16px/24px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1rem/1.5rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .promo-standout__heading {
    font: 400 2.1875rem/2.1875rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    margin: 0 0 10px;
  }
}
.promo-standout .col--two-thirds-last-both {
  margin-bottom: 0;
}
.promo-standout--black .promo-standout__heading, .promo-standout--black p {
  color: #2b2b2c;
}
.promo-standout--white .promo-standout__heading, .promo-standout--white p {
  color: #fff;
}

.quadrant {
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .quadrant {
    padding: 170px 0 0;
  }
}
.quadrant__first__image {
  margin: 15px 0;
}
@media screen and (min-width: 768px) {
  .quadrant__first__image {
    float: left;
    clear: none;
    width: 50%;
    margin-left: 0;
    margin-right: 0;
    float: right;
    margin-bottom: 0;
    margin-top: -130px;
  }
}
.quadrant__first__image img {
  max-width: 100%;
}
@media screen and (min-width: 768px) {
  .quadrant__first__content {
    float: left;
    clear: none;
    width: 50%;
    margin-left: 0;
    margin-right: 0;
    float: left;
    padding-left: 20px;
  }
}
.quadrant__first__content--white h1, .quadrant__first__content--white p {
  color: #ffffff;
}
.quadrant__first__content h1 {
  font: 400 47px/32px "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 2.96875rem/2.03125rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: -1.6625px;
  padding-bottom: 10px;
  text-align: left;
  text-shadow: 5px 10px 2px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 768px) {
  .quadrant__first__content h1 {
    font: 400 6.25rem/4.8125rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: -3.5px;
    padding-bottom: 20px;
  }
}
.quadrant__first__content:after {
  background-color: #ffffff;
  content: "";
  display: block;
  height: 1px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .quadrant__first__content:after {
    margin-left: -20px;
    margin-top: 35px;
  }
}
.quadrant__first__content--black h1,
.quadrant__first__content--black p {
  color: #2b2b2c;
}
.quadrant__first__content--black:after {
  background-color: #2b2b2c;
}
.quadrant__first__content--no-app:after {
  display: none;
}
.quadrant__last {
  clear: both;
  margin-top: 22px;
}
@media screen and (min-width: 768px) {
  .quadrant__last {
    margin-top: 50px;
  }
}
@media screen and (min-width: 768px) {
  .quadrant__last__content {
    float: left;
    clear: none;
    width: 50%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 20px;
  }
}
.quadrant__last__content--white h3, .quadrant__last__content--white p {
  color: #ffffff;
}
.quadrant__last__content--black h3, .quadrant__last__content--black p {
  color: #2b2b2c;
}
.quadrant__last__content h3 {
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  .quadrant__last__content h3 {
    margin-bottom: 10px;
    line-height: 2.1875rem;
  }
}
.quadrant__last__image {
  margin-top: 22px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .quadrant__last__image {
    float: left;
    clear: none;
    width: 50%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 0;
    position: relative;
  }
}
.quadrant__last__image--vertical {
  margin-bottom: -50px;
}
@media screen and (min-width: 768px) {
  .quadrant__last__image--vertical {
    margin-bottom: -66px;
  }
}
.quadrant__last__image .phone-image {
  position: relative;
  max-width: 100%;
}
.quadrant__last__image .phone-image--horizontal {
  background: url('../png/phone-horizontal.png') no-repeat 0 0 transparent;
  background-size: contain;
  height: 150px;
  width: 100%;
}
@media screen and (min-width: 400px) {
  .quadrant__last__image .phone-image--horizontal {
    height: 200px;
    width: 100%;
  }
}
@media screen and (min-width: 500px) {
  .quadrant__last__image .phone-image--horizontal {
    height: 250px;
    width: 100%;
  }
}
@media screen and (min-width: 630px) {
  .quadrant__last__image .phone-image--horizontal {
    height: 320px;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .quadrant__last__image .phone-image--horizontal {
    height: 300px;
    width: 100%;
  }
}
.quadrant__last__image .phone-image--vertical {
  background: url('../png/phone-vertical.png') no-repeat 0 0 transparent;
  background-size: contain;
  height: 354px;
  margin: 0 auto;
  width: 200px;
}
@media screen and (min-width: 768px) {
  .quadrant__last__image .phone-image--vertical {
    height: 465px;
    width: 260px;
  }
}
.quadrant__last__image .phone-overlay--horizontal {
  display: block;
  position: absolute;
  left: 25%;
  top: 5%;
  width: 53%;
}
.quadrant__last__image .phone-overlay--vertical {
  display: block;
  position: absolute;
  left: 6%;
  top: 10%;
  width: 76%;
}

.section {
  clear: both;
  overflow: hidden;
}
@media screen and (min-width: 1100px) {
  .section--overflow {
    overflow: visible;
  }
}
.section__heading-pre {
  color: #000000;
  font: 400 12px/12px "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.75rem/0.75rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .section__heading-pre {
    font-size: 1.5em;
    line-height: 1rem;
  }
}
.section__header {
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  max-width: 1400px;
  padding-top: 39px;
  padding-bottom: 39px;
}
@media screen and (min-width: 768px) {
  .section__header {
    padding: 95px 40px;
  }
}
.section__header--with-lines {
  display: table;
}
@media screen and (min-width: 768px) {
  .section__header--with-lines {
    padding: 43px 40px;
  }
}
.section__header--with-lines .section__header__line-left {
  background: url('../png/line.heading.left.png') no-repeat 0 center transparent;
  display: table-cell;
  height: 10px;
  width: 504px;
}
.section__header--with-lines .section__header__line-right {
  background: url('../png/line.heading.left.png') no-repeat 0 center transparent;
  display: table-cell;
  height: 10px;
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
  width: 504px;
}
.global-banner + .section__header {
  padding-top: 0;
}
.section__header--featured-products {
  padding: 44px 0 0;
}
@media screen and (min-width: 768px) {
  .section__header--featured-products {
    padding: 107px 0 35px;
  }
}
.section__header--remove-padding-top {
  padding-top: 0;
}
.section__header--nowrap {
  white-space: nowrap;
}
.section__heading {
  color: #33aae7;
  font: 400 40px/29px "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 2.5rem/1.8125rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  position: relative;
  text-transform: uppercase;
}
.section__header--with-lines .section__heading {
  display: table-cell;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .section__header--with-lines .section__heading {
    white-space: nowrap;
  }
}
@media screen and (min-width: 768px) {
  .section__heading {
    font: 400 4.25rem/3.5rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
@media screen and (min-width: 1000px) {
  .section__heading {
    font: 400 6.25rem/6.25rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.section__heading--remove-shadow {
  text-shadow: 0 0 0;
}
.section__heading--white {
  color: #ffffff;
}
.section__heading--blue {
  color: #33aae7;
}
.section__heading--cello-bg {
  text-shadow: 5px 10px 2px rgba(0, 0, 0, 0.1);
}
.section__heading--small {
  text-align: center;
  font: 400 27px/34px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1.6875rem/2.125rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: 1.08px;
}
@media screen and (min-width: 768px) {
  .section__heading--small {
    font-size: 2.1875rem;
    line-height: 3.5rem;
    letter-spacing: 1.4px;
  }
}
.section__heading--reduce-line-height {
  line-height: 34px;
  line-height: 2.125rem;
}
@media screen and (min-width: 768px) {
  .section__heading--reduce-line-height {
    line-height: 3.5rem;
  }
}
@media screen and (min-width: 1000px) {
  .section__heading--reduce-line-height {
    line-height: 4.5rem;
  }
}
.section--dark {
  background: #2b2b2c;
}
.section--add-padding {
  padding-top: 30px;
}
@media screen and (min-width: 768px) {
  .section--add-padding {
    padding-top: 56px;
  }
}
.section__content {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .section__content--half {
    float: left;
    clear: none;
    width: 50%;
    margin-left: 0;
    margin-right: 0;
  }
}
.section__content__pre {
  color: #ffffff;
  font: 400 11px/12px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.71875rem/0.805rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .section__content__pre {
    font: 400 1.5rem/2rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.section__content__text {
  font: 400 8px/11px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.5rem/0.71875rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  padding: 10px 0;
}
@media screen and (min-width: 768px) {
  .section__content__text {
    padding: 30px 0;
    font: 400 1rem/1.375rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.section__content__text p {
  color: #ffffff;
}
.section__content--wowwee-labs-first {
  float: left;
  clear: none;
  width: 60%;
  margin-left: 0;
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .section__content--wowwee-labs-first {
    float: left;
    clear: none;
    width: 50%;
    margin-left: 0;
    margin-right: 0;
  }
}
.section__content--wowwee-labs--second {
  float: left;
  clear: none;
  width: 40%;
  margin-left: 0;
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .section__content--wowwee-labs--second {
    float: left;
    clear: none;
    width: 50%;
    margin-left: 0;
    margin-right: 0;
  }
}
.section--wowwee-labs {
  background: url('../png/bg.elements.png') no-repeat right top #2b2b2c;
  background-size: contain;
  overflow: visible;
  position: relative;
  padding: 48px 0;
}
@media screen and (min-width: 768px) {
  .section--wowwee-labs {
    background: url('../png/bg.elements.png') no-repeat right top #2b2b2c;
    padding: 132px 0;
    height: 730px;
  }
}
.section--wowwee-labs .section__heading {
  width: 60%;
}
@media screen and (min-width: 768px) {
  .section--wowwee-labs .section__heading {
    width: 100%;
  }
}
.section--wowwee-labs .section__image {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  overflow: hidden;
  position: absolute;
  width: 50%;
  right: 0;
}
@media screen and (max-width: 767px) {
  .section--wowwee-labs .section__image {
    top: 50% !important;
  }
}
@media screen and (min-width: 768px) {
  .section--wowwee-labs .section__image {
    top: -50px;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
@media screen and (min-width: 1400px) {
  .section--wowwee-labs .section__image {
    left: 50%;
    width: 700px;
  }
}
.section--wowwee-labs .section__image img {
  float: right;
  margin-right: 10px;
  width: 140px;
}
@media screen and (min-width: 768px) {
  .section--wowwee-labs .section__image img {
    margin-right: 0;
    max-width: 580px;
    width: 100%;
  }
}
.section__image {
  position: relative;
}
.section--product-categories {
  padding-bottom: 30px;
}
.section--product-categories .section__header {
  padding-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .section--product-categories .section__header {
    padding-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .section--product-categories .section__header {
    padding-bottom: 48px;
  }
}

.section--full-width {
  width: 100%;
}
.section--off-white {
  background: #f7f7f7;
}
.section--off-white-secondary {
  background: #f3f3f3;
}
.section--legal p {
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .section--legal p {
    margin-bottom: 2rem;
  }
}
.section--video {
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
}
.section--underlap-shift {
  margin-top: -50px;
  padding-top: 50px;
}
@media screen and (min-width: 768px) {
  .section--underlap-shift {
    margin-top: -70px;
    padding-top: 70px;
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.sub-navigation-bar {
  background: #ffffff;
  border-bottom: 1px solid #e2dfde;
  position: relative;
  text-align: center;
}
.sub-navigation-bar__item {
  color: #2b2b2c;
  font: 400 10px/18px "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 0.625rem/1.125rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  transition: color .4s;
  display: inline-block;
  margin: 0 7px;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .sub-navigation-bar__item {
    font: 400 1.125rem/3.5625rem "RefrigeratorDeluxeBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: 1.08px;
    margin: 0 10px;
  }
}
.no-touch .sub-navigation-bar__item:hover, .sub-navigation-bar__item--current {
  color: #33aae7;
}
.sub-navigation-bar__item--highlighted {
  border-radius: 20px;
  border: 1px solid #33aae7;
  background: #33aae7;
  color: #ffffff;
  line-height: 18px;
  line-height: 1.125rem;
  margin: 6px 7px 9px;
  padding: 3px 20px;
  transition: all .4s;
}
@media screen and (min-width: 393px) {
  .sub-navigation-bar__item--highlighted {
    margin: 0 7px;
  }
}
@media screen and (min-width: 768px) {
  .sub-navigation-bar__item--highlighted {
    line-height: 1.125rem;
  }
}
.no-touch .sub-navigation-bar__item--highlighted:hover {
  background: transparent;
  border-color: #33aae7;
  color: #33aae7;
}
.sub-navigation-bar--product-detail {
  min-height: 33px;
  padding: 3px 0;
  border-bottom: 0 none;
}
@media screen and (min-width: 768px) {
  .sub-navigation-bar--product-detail {
    min-height: 57px;
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .sub-navigation-bar--product-detail .sub-navigation-bar__item {
    margin: 0 21px;
  }
}
.sub-navigation-bar--fixed {
  box-shadow: 0px 15px 30px 0px rgba(0, 0, 0, 0.25);
  left: 0;
  position: fixed;
  top: 50px;
  transition: top 200ms;
  width: 100%;
  z-index: 2000;
}
@media screen and (min-width: 768px) {
  .sub-navigation-bar--fixed {
    height: 57px;
    top: 140px;
    z-index: 900;
  }
}
@media screen and (min-width: 768px) {
  .page-head-compressed .sub-navigation-bar--fixed {
    top: 70px;
  }
}
.page-head-open .sub-navigation-bar--fixed {
  display: block;
}
.overlay-open .sub-navigation-bar--fixed {
  display: none !important;
}

.sub-navigation-bar-spacer {
  height: 22px;
}
@media screen and (min-width: 768px) {
  .sub-navigation-bar-spacer {
    height: 57px;
  }
}

.technology #gallery {
  padding-top: 14px;
}
.technology__text {
  color: #ffffff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .technology__text {
    margin: 0 auto;
    width: 640px;
  }
}
.technology__grid {
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .technology__grid {
    padding: 76px 0;
  }
}
.technology__grid .technology-grid__item {
  box-shadow: 0 8px 20px -4px #000000;
  background: #181818;
  margin-bottom: 15px;
  overflow: hidden;
  padding: 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .technology__grid .technology-grid__item {
    float: left;
    clear: none;
    width: 49.5%;
    margin-left: 0;
    margin-right: 1%;
    margin-bottom: 15px;
  }
  .technology__grid .technology-grid__item:nth-of-type(2n) {
    margin-right: 0;
    float: right;
  }
  .technology__grid .technology-grid__item:nth-of-type(2n + 1) {
    clear: both;
  }
}
.technology__grid .technology-grid__item__thumbnail {
  float: left;
  clear: none;
  width: 33.33333%;
  margin-left: 0;
  margin-right: 0;
  height: 100%;
  left: 0;
}
.technology__grid .technology-grid__item__thumbnail img {
  max-width: 100%;
}
.technology__grid .technology-grid__item__content {
  float: left;
  clear: none;
  width: 66.66667%;
  margin-left: 0;
  margin-right: 0;
  float: right;
  color: #ffffff;
  padding-left: 20px;
}
.technology__grid .technology-grid__item__content .technology-grid-item-content__heading {
  font: 400 16px/24px "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1rem/1.5rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .technology__grid .technology-grid__item__content .technology-grid-item-content__heading {
    font: 400 1.5rem/2.25rem "RefrigeratorDeluxe", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  }
}
.technology__grid .technology-grid__item__content .technology-grid-item-content__text {
  color: #ffffff;
}
.technology .expand-image-grid__item {
  float: left;
  clear: none;
  width: 48.5%;
  margin-left: 0;
  margin-right: 3%;
  background: #000000;
  margin-bottom: 3%;
  position: relative;
}
.technology .expand-image-grid__item:nth-of-type(2n) {
  margin-right: 0;
  float: right;
}
.technology .expand-image-grid__item:nth-of-type(2n + 1) {
  clear: both;
}
@media screen and (min-width: 768px) {
  .technology .expand-image-grid__item {
    float: left;
    clear: none;
    width: 24.25%;
    margin-left: 0;
    margin-right: 1%;
    margin-bottom: 1vw;
  }
  .technology .expand-image-grid__item:nth-of-type(2n) {
    margin-right: 1%;
    float: left;
  }
  .technology .expand-image-grid__item:nth-of-type(2n + 1) {
    clear: none;
  }
  .technology .expand-image-grid__item:nth-of-type(4n) {
    margin-right: 0;
    float: right;
  }
  .technology .expand-image-grid__item:nth-of-type(4n + 1) {
    clear: both;
  }
}
.technology .expand-image-grid__item a {
  display: block;
}
.technology .expand-image-grid__item img {
  width: 100%;
}
.technology .expand-image-grid__item .icon-expand {
  background: url('../png/icon.resize.png') no-repeat 0 0 transparent;
  background-size: 10px 10px;
  height: 10px;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 10px;
}
@media screen and (min-width: 768px) {
  .technology .expand-image-grid__item .icon-expand {
    background-size: 18px 18px;
    height: 18px;
    width: 18px;
  }
}
.technology .expand-image-grid__item .icon-360 {
  background: url('../png/icon.360.png') no-repeat 0 0 transparent;
  background-size: 16px 23px;
  display: none;
  bottom: 10px;
  height: 23px;
  position: absolute;
  right: 10px;
  width: 16px;
}
@media screen and (min-width: 768px) {
  .technology .expand-image-grid__item .icon-360 {
    display: block;
    background-size: 36px 43px;
    height: 43px;
    width: 36px;
  }
}

.text-banner {
  color: #ffffff;
  background: #33aae7;
  padding: 25px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .text-banner {
    padding: 60px 0;
  }
}
.text-banner h3 {
  color: #ffffff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .text-banner h3 {
    margin-bottom: .5rem;
  }
}
.text-banner p {
  color: #ffffff;
  text-align: center;
}

.timeline {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f1f1f1+0,d6d6d6+40,c2c2c2+100 */
  background: #f1f1f1;
  /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2YxZjFmMSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjQwJSIgc3RvcC1jb2xvcj0iI2Q2ZDZkNiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjMmMyYzIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #f1f1f1 0%, #d6d6d6 40%, #c2c2c2 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f1f1f1', endColorstr='#c2c2c2',GradientType=0 );
  /* IE6-8 */
  padding: 0 0 40px;
}
.timeline--small {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,cfcfcf+50,b2b2b2+100 */
  background: #ffffff;
  /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjUwJSIgc3RvcC1jb2xvcj0iI2NmY2ZjZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNiMmIyYjIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  /* FF3.6+ */
  /* Chrome,Safari4+ */
  /* Chrome10+,Safari5.1+ */
  /* Opera 11.10+ */
  /* IE10+ */
  background: linear-gradient(to bottom, #ffffff 0%, #cfcfcf 50%, #b2b2b2 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#b2b2b2',GradientType=0 );
  /* IE6-8 */
}
@media screen and (min-width: 768px) {
  .timeline {
    padding: 40px 0;
  }
}
.timeline__heading {
  color: #616264;
  display: none;
  font: 400 20px/20px "BlenderProMedium", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1.25rem/1.25rem "BlenderProMedium", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: -0.7px;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .timeline__heading {
    display: block;
  }
}
.timeline__wrapper-outer, .timeline__wrapper {
  overflow: hidden;
  margin: 0 auto;
  position: relative;
  padding: 0 25px;
  width: 100%;
}
@media screen and (min-width: 500px) {
  .timeline__wrapper-outer, .timeline__wrapper {
    margin: 0 auto;
    padding: 0;
    width: 500px;
  }
}
@media screen and (min-width: 930px) {
  .timeline__wrapper-outer, .timeline__wrapper {
    margin: 0 auto;
    padding: 0;
    width: 930px;
  }
}
.timeline__wrapper {
  padding: 0 0 150px;
}
@media screen and (min-width: 500px) {
  .timeline__wrapper {
    padding-bottom: 150px;
  }
}
.timeline__wrapper--reduce-padding {
  padding: 0 0 40px;
}
@media screen and (min-width: 500px) {
  .timeline__wrapper--reduce-padding {
    padding-bottom: 40px;
  }
}
.timeline__line {
  background: url('../png/timeline.tracks.png') repeat-y 0 0;
  height: 100%;
  left: 40px;
  position: absolute;
  top: 45px;
  width: 7px;
}
@media screen and (min-width: 500px) {
  .timeline__line {
    left: 20px;
    top: 0;
  }
}
@media screen and (min-width: 930px) {
  .timeline__line {
    position: absolute;
    left: 50%;
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 0;
  }
}
.timeline__line--offset {
  top: 60px;
}
@media screen and (min-width: 930px) {
  .timeline__line--offset {
    top: 143px;
  }
}
.timeline__item {
  margin-top: 45px;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 500px) {
  .timeline__item {
    margin-top: 60px;
  }
}
@media screen and (min-width: 930px) {
  .timeline__item {
    width: 50%;
  }
}
@media screen and (min-width: 930px) {
  .timeline__item:nth-of-type(1) {
    margin-top: 60px;
    top: 0 !important;
  }
}
@media screen and (min-width: 930px) {
  .timeline__item:nth-of-type(even) {
    float: left;
    top: 105px;
  }
}
@media screen and (min-width: 930px) {
  .timeline__item:nth-of-type(odd) {
    float: right;
  }
}
.timeline__item__date {
  color: #ffffff;
  font: 400 31px/46px "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1.9375rem/2.92813rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  left: 53px;
  position: absolute;
  top: -43px;
  text-transform: uppercase;
  text-shadow: 2px 2px 1px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 500px) {
  .timeline__item__date {
    font: 400 1.5rem/2.5rem "BlenderProBold", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    margin-left: 45px;
    left: 70px;
    letter-spacing: -0.84px;
    text-shadow: 5px 5px 2px rgba(0, 0, 0, 0.1);
    top: -50px;
  }
}
@media screen and (min-width: 930px) {
  .timeline__item__date {
    left: 50px;
  }
}
.timeline__item__spout {
  position: absolute;
  left: 3px;
  margin-top: -16px;
  margin-top: -16.5px;
  top: 50%;
  width: 40px;
}
@media screen and (min-width: 500px) {
  .timeline__item__spout {
    left: 0;
    margin-top: -25px;
    top: 50%;
    width: 65px;
  }
}
@media screen and (min-width: 930px) {
  .timeline__item__spout {
    left: -22px;
  }
}
.timeline__item__spout .line {
  background: #ffffff;
  height: 2px;
  position: absolute;
  right: 0;
  top: 15px;
  width: 10px;
}
@media screen and (min-width: 500px) {
  .timeline__item__spout .line {
    right: -10px;
    top: 24px;
    width: 30px;
  }
}
.timeline__item__spout .timeline-icon {
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: transparent;
  height: 30px;
  position: absolute;
  width: 30px;
}
@media screen and (min-width: 500px) {
  .timeline__item__spout .timeline-icon {
    height: 45px;
    width: 45px;
  }
}
.timeline__item__spout .timeline-icon .icon-launch {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url('../png/icon.history.launch.blue.png') no-repeat 0 0 transparent;
  background-size: 10px 27px;
  height: 27px;
  width: 10px;
}
@media screen and (min-width: 500px) {
  .timeline__item__spout .timeline-icon .icon-launch {
    background-size: 21px 58px;
    height: 58px;
    width: 21px;
  }
}
.timeline__item__spout .timeline-icon .icon-technology {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url('../png/icon.history.technology.blue.png') no-repeat 0 0 transparent;
  background-size: 16px 18px;
  height: 18px;
  width: 16px;
}
@media screen and (min-width: 500px) {
  .timeline__item__spout .timeline-icon .icon-technology {
    background-size: 28px 31px;
    height: 31px;
    width: 28px;
  }
}
.timeline__item__spout .timeline-icon .icon-award {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url('../png/icon.history.award.blue.png') no-repeat 0 0 transparent;
  background-size: 16px 17px;
  height: 17px;
  width: 16px;
}
@media screen and (min-width: 500px) {
  .timeline__item__spout .timeline-icon .icon-award {
    background-size: 26px 25px;
    height: 25px;
    width: 26px;
  }
}
.timeline__item .timeline-shape__left-spike {
  display: none;
}
@media screen and (min-width: 500px) {
  .timeline__item .timeline-shape__left-spike {
    background-color: #ffffff;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 50%);
    clip-path: polygon(100% 0, 100% 100%, 0 50%);
    display: block;
    position: absolute;
    height: 100%;
  }
}
.timeline__item .timeline-shape__left-spike span {
  display: block;
  width: 45px;
}
.timeline__item .timeline-shape__content {
  background: #ffffff;
  min-height: 89px;
  margin: 0 110px 0 0;
  overflow: hidden;
  padding: 15px 0;
  position: relative;
}
@media screen and (min-width: 500px) {
  .timeline__item .timeline-shape__content {
    background: #ffffff;
    height: 150px;
    margin: 0 148px 0 44px;
    min-height: 0;
    padding: 0;
  }
}
.timeline__item .timeline-shape__content__inner {
  padding: 0 0 0 15px;
  width: 100%;
}
@media screen and (min-width: 500px) {
  .timeline__item .timeline-shape__content__inner {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    padding: 0 0 0 10px;
  }
}
.timeline__item .timeline-shape__content__heading {
  color: #33aae7;
  font: 400 16px/16px "BlenderProHeavy", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 400 1rem/1rem "BlenderProHeavy", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  letter-spacing: 0.48px;
  padding: 0 0 10px;
  text-transform: uppercase;
}
@media screen and (min-width: 500px) {
  .timeline__item .timeline-shape__content__heading {
    font: 400 1.375rem/1rem "BlenderProHeavy", "Helvetica Neue", "Helvetica", Arial, sans-serif;
    letter-spacing: 0.66px;
    padding: 0 10px 10px 0;
    padding-top: 0;
  }
}
.timeline__item .timeline-shape__content__text {
  color: #9a9a9a;
  font: 300 12px/16px "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  font: 300 0.75rem/1rem "MontserratRegular", "Helvetica Neue", "Helvetica", Arial, sans-serif;
  overflow: hidden;
  margin: 0;
  padding: 0 15px 0 0;
}
@media screen and (min-width: 500px) {
  .timeline__item .timeline-shape__content__text {
    padding: 0 10px 0 0;
  }
}
.timeline__item .timeline-shape__image {
  background: #fff;
  display: inline-block;
  -webkit-clip-path: polygon(72% 0, 100% 50%, 72% 100%, 0% 100%, 0% 0%);
  clip-path: polygon(72% 0, 100% 50%, 72% 100%, 0% 100%, 0% 0%);
  height: 100%;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  width: 110px;
  vertical-align: top;
}
@media screen and (min-width: 500px) {
  .timeline__item .timeline-shape__image {
    height: 150px;
    right: 0;
    width: auto;
  }
}
.timeline__item .timeline-shape__image img {
  height: 89px;
  left: 0;
  margin: -45px 0 0;
  position: absolute;
  top: 50%;
}
@media screen and (min-width: 500px) {
  .timeline__item .timeline-shape__image img {
    height: 100%;
    margin: 0;
    position: relative;
    left: auto;
    top: auto;
  }
}
.timeline__item .timeline-shape__image__inner {
  height: 100%;
  position: relative;
  width: 100%;
}
.timeline__item__shape {
  margin-left: 40px;
}
@media screen and (min-width: 500px) {
  .timeline__item__shape {
    margin-left: 70px;
  }
}
@media screen and (min-width: 930px) {
  .timeline__item__shape {
    margin-left: 50px;
  }
}
@media screen and (min-width: 930px) {
  .timeline__item:nth-child(even) .timeline__item__date {
    left: 0;
  }
}
@media screen and (min-width: 930px) {
  .timeline__item:nth-child(even) .timeline__item__spout {
    left: auto;
    right: -23px;
  }
  .timeline__item:nth-child(even) .timeline__item__spout .line {
    left: -10px;
    right: auto;
  }
  .timeline__item:nth-child(even) .timeline__item__spout .timeline-icon {
    right: 0;
  }
}
@media screen and (min-width: 930px) {
  .timeline__item:nth-child(even) .timeline__item__shape {
    margin-left: 0;
    margin-right: 50px;
  }
  .timeline__item:nth-child(even) .timeline__item__shape .timeline-shape__image {
    right: 51px;
  }
}

/**
 * #TRUMPS
*/
.increase-paragraph-spacing p {
  margin-bottom: 0;
  padding-bottom: 25px;
}
@media screen and (min-width: 768px) {
  .increase-paragraph-spacing p {
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .hide-on-mobile {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .hide-on-desktop {
    display: none !important;
  }
}

/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Image replacement
 */
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  /* IE 6/7 fallback */
  *text-indent: -9999px;
}

.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 150%;
}

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */
.hidden {
  display: none !important;
  visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

/*
 * Hide visually and from screenreaders, but maintain layout
 */
.invisible {
  visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}

.clearfix:after {
  clear: both;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.clearfix {
  *zoom: 1;
}

/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]:after {
    content: " (" attr(href) ")";
  }

  abbr[title]:after {
    content: " (" attr(title) ")";
  }

  /*
   * Don't show links for images, or javascript/internal links
   */
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
    /* h5bp.com/t */
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }
}
