/*  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.
 */
/**
 * 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.
 */
/**
 * An alias for the column mixin.
 * @param [$args...] - All arguments get passed through to 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.
 */
/**
 * 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.
 */
/**
 * An alias for the column-width function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * An alias for the column-gutter function.
 * @param [$args...] - All arguments get passed through to column().
 */
/**
 * 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.
 */
/**
 * 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.
 */
/**
 * Reset an element that has had shift() applied to it.
 */
/**
 * 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.
 */
/**
 *  Alias for 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.
 */
/**
 * Uncenter an element.
 */
/**
 * 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.
 */
/**
 * Unstack an element.
 */
/**
 * 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.
 */
/**
 * Apply a clearfix to an element.
 */
/**
 * #SETTINGS
 */
/**
 * #TOOLS
 */
.page-head__logo {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

/**
 * #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 {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  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"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  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 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 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;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@font-face {
  font-family: "ProximaNovaReg";
  src: url('../fonts/../fonts/ProximaNova/ProximaNova-Regular.eot');
  src: url('../fonts/../fonts/ProximaNova/ProximaNova-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/../fonts/ProximaNova/ProximaNova-Regular.woff') format('woff'), url('../fonts/../fonts/ProximaNova/ProximaNova-Regular.ttf') format('truetype'), url('../fonts/../fonts/ProximaNova/ProximaNova-Regular.svg') format('svg');
}
@font-face {
  font-family: "ProximaNovaRegIt";
  src: url('../fonts/../fonts/ProximaNova/ProximaNova-RegularIt.eot');
  src: url('../fonts/../fonts/ProximaNova/ProximaNova-RegularIt.eot?#iefix') format('embedded-opentype'), url('../fonts/../fonts/ProximaNova/ProximaNova-RegularIt.woff') format('woff'), url('../fonts/../fonts/ProximaNova/ProximaNova-RegularIt.ttf') format('truetype'), url('../fonts/../fonts/ProximaNova/ProximaNova-RegularIt.svg') format('svg');
}
@font-face {
  font-family: "ProximaNovaThin";
  src: url('../fonts/../fonts/ProximaNova/ProximaNova-Thin.eot');
  src: url('../fonts/../fonts/ProximaNova/ProximaNova-Thin.eot?#iefix') format('embedded-opentype'), url('../fonts/../fonts/ProximaNova/ProximaNova-Thin.woff') format('woff'), url('../fonts/../fonts/ProximaNova/ProximaNova-Thin.ttf') format('truetype'), url('../fonts/../fonts/ProximaNova/ProximaNova-Thin.svg') format('svg');
}
@font-face {
  font-family: "Proximanova-Black";
  src: url('../fonts/../fonts/ProximaNova/proximanova-black.eot');
  src: url('../fonts/../fonts/ProximaNova/proximanova-black.eot?#iefix') format('embedded-opentype'), url('../fonts/../fonts/ProximaNova/proximanova-black.woff') format('woff'), url('../fonts/../fonts/ProximaNova/proximanova-black.ttf') format('truetype'), url('../fonts/../fonts/ProximaNova/proximanova-black.svg') format('svg');
}
@font-face {
  font-family: "Proximanova-Bold";
  src: url('../fonts/../fonts/ProximaNova/proximanova-bold.eot');
  src: url('../fonts/../fonts/ProximaNova/proximanova-bold.eot?#iefix') format('embedded-opentype'), url('../fonts/../fonts/ProximaNova/proximanova-bold.woff') format('woff'), url('../fonts/../fonts/ProximaNova/proximanova-bold.ttf') format('truetype'), url('../fonts/../fonts/ProximaNova/proximanova-bold.svg') format('svg');
}
@font-face {
  font-family: "Proximanova-SemiBold";
  src: url('../fonts/../fonts/ProximaNova/proximanova-semibold.eot');
  src: url('../fonts/../fonts/ProximaNova/proximanova-semibold.eot?#iefix') format('embedded-opentype'), url('../fonts/../fonts/ProximaNova/proximanova-semibold.woff') format('woff'), url('../fonts/../fonts/ProximaNova/proximanova-semibold.ttf') format('truetype'), url('../fonts/../fonts/ProximaNova/proximanova-semibold.svg') format('svg');
}
@font-face {
  font-family: "UnitedSerifCond-Bold";
  src: url('../fonts/../fonts/UnitedSerifCond/UnitedSerifCond-Bold.eot');
  src: url('../fonts/../fonts/UnitedSerifCond/UnitedSerifCond-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/../fonts/UnitedSerifCond/UnitedSerifCond-Bold.woff') format('woff'), url('../fonts/../fonts/UnitedSerifCond/UnitedSerifCond-Bold.ttf') format('truetype'), url('../fonts/../fonts/UnitedSerifCond/UnitedSerifCond-Bold.svg') format('svg');
}
@font-face {
  font-family: "UnitedSerifCond-Heavy";
  src: url('../fonts/../fonts/UnitedSerifCond/UnitedSerifCond-Heavy.eot');
  src: url('../fonts/../fonts/UnitedSerifCond/UnitedSerifCond-Heavy.eot?#iefix') format('embedded-opentype'), url('../fonts/../fonts/UnitedSerifCond/UnitedSerifCond-Heavy.woff') format('woff'), url('../fonts/../fonts/UnitedSerifCond/UnitedSerifCond-Heavy.ttf') format('truetype'), url('../fonts/../fonts/UnitedSerifCond/UnitedSerifCond-Heavy.svg') format('svg');
}
@font-face {
  font-family: "UnitedSerifCond-Medium";
  src: url('../fonts/../fonts/UnitedSerifCond/UnitedSerifCond-Medium.eot');
  src: url('../fonts/../fonts/UnitedSerifCond/UnitedSerifCond-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/../fonts/UnitedSerifCond/UnitedSerifCond-Medium.woff') format('woff'), url('../fonts/../fonts/UnitedSerifCond/UnitedSerifCond-Medium.ttf') format('truetype'), url('../fonts/../fonts/UnitedSerifCond/UnitedSerifCond-Medium.svg') format('svg');
}
@font-face {
  font-family: "UnitedSansCond-Bold";
  src: url('../fonts/../fonts/UnitedSerifCond/UnitedSansCond-Bold.eot');
  src: url('../fonts/../fonts/UnitedSerifCond/UnitedSansCond-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/../fonts/UnitedSerifCond/UnitedSansCond-Bold.woff') format('woff'), url('../fonts/../fonts/UnitedSerifCond/UnitedSansCond-Bold.ttf') format('truetype'), url('../fonts/../fonts/UnitedSerifCond/UnitedSansCond-Bold.svg') format('svg');
}
@font-face {
  font-family: "UnitedSansCond-Heavy";
  src: url('../fonts/../fonts/UnitedSerifCond/UnitedSansCond-Heavy.eot');
  src: url('../fonts/../fonts/UnitedSerifCond/UnitedSansCond-Heavy.eot?#iefix') format('embedded-opentype'), url('../fonts/../fonts/UnitedSerifCond/UnitedSansCond-Heavy.woff') format('woff'), url('../fonts/../fonts/UnitedSerifCond/UnitedSansCond-Heavy.ttf') format('truetype'), url('../fonts/../fonts/UnitedSerifCond/UnitedSansCond-Heavy.svg') format('svg');
}
@font-face {
  font-family: "UnitedSansCond-Light";
  src: url('../fonts/../fonts/UnitedSerifCond/UnitedSansCond-Light.eot');
  src: url('../fonts/../fonts/UnitedSerifCond/UnitedSansCond-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/../fonts/UnitedSerifCond/UnitedSansCond-Light.woff') format('woff'), url('../fonts/../fonts/UnitedSerifCond/UnitedSansCond-Light.ttf') format('truetype'), url('../fonts/../fonts/UnitedSerifCond/UnitedSansCond-Light.svg') format('svg');
}
@font-face {
  font-family: "UnitedSansCond-Medium";
  src: url('../fonts/../fonts/UnitedSerifCond/UnitedSansCond-Medium.eot');
  src: url('../fonts/../fonts/UnitedSerifCond/UnitedSansCond-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/../fonts/UnitedSerifCond/UnitedSansCond-Medium.woff') format('woff'), url('../fonts/../fonts/UnitedSerifCond/UnitedSansCond-Medium.ttf') format('truetype'), url('../fonts/../fonts/UnitedSerifCond/UnitedSansCond-Medium.svg') format('svg');
}
@font-face {
  font-family: "UnitedSansReg-Light";
  src: url('../fonts/../fonts/UnitedSerifCond/UnitedSansReg-Light.eot');
  src: url('../fonts/../fonts/UnitedSerifCond/UnitedSansReg-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/../fonts/UnitedSerifCond/UnitedSansReg-Light.woff') format('woff'), url('../fonts/../fonts/UnitedSerifCond/UnitedSansReg-Light.ttf') format('truetype'), url('../fonts/../fonts/UnitedSerifCond/UnitedSansReg-Light.svg') format('svg');
}
@font-face {
  font-family: 'ProximaNovaCondensed-SemiBold';
  src: url("../fonts/ProximaNovaCond/proximanovacond-semibold-webfont.eot");
  src: url("../fonts/ProximaNovaCond/proximanovacond-semibold-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/ProximaNovaCond/proximanovacond-semibold-webfont.woff2") format("woff2"), url("../fonts/ProximaNovaCond/proximanovacond-semibold-webfont.woff") format("woff"), url("../fonts/ProximaNovaCond/proximanovacond-semibold-webfont.ttf") format("truetype"), url("../fonts/ProximaNovaCond/proximanovacond-semibold-webfont.svg#proxima_nova_condensedSBd") format("svg");
  font-weight: normal;
  font-style: normal;
}
/**
 * #BASE
 */
html,
button,
input,
select,
textarea {
  color: #222;
}

html {
  font-size: 1em;
  line-height: 1.4;
}
@media screen and (max-width: 650px) {
  html {
    height: 100%;
  }
}
@media screen and (min-width: 320px) {
  html {
    font-size: 8px;
  }
}
@media screen and (min-width: 360px) {
  html {
    font-size: 9px;
  }
}
@media screen and (min-width: 400px) {
  html {
    font-size: 10px;
  }
}
@media screen and (min-width: 480px) {
  html {
    font-size: 12px;
  }
}
@media screen and (min-width: 560px) {
  html {
    font-size: 14px;
  }
}
@media screen and (min-width: 640px) {
  html {
    font-size: 16px;
  }
}

::-moz-selection {
  background: #eaeaea;
  text-shadow: none;
}

::selection {
  background: #eaeaea;
  text-shadow: none;
}

body {
  background: #000;
}
@media screen and (max-width: 650px) {
  body {
    height: 100%;
  }
}

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: #fff;
  font-family: "ProximaNovaReg";
  font-size: 16px;
  letter-spacing: 0;
}

h1 {
  color: #fff;
  font-family: "UnitedSerifCond-Heavy";
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: normal;
  margin: 0;
  text-transform: uppercase;
}
h1 a {
  opacity: 1;
  -webkit-transition: opacity 200ms;
  -o-transition: opacity 200ms;
  transition: opacity 200ms;
}

h2 {
  color: #fff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: normal;
  margin: 0;
  text-transform: uppercase;
}

h3 {
  color: #fff;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: normal;
  line-height: 14px;
  line-height: 0.875rem;
  margin: 0;
  text-transform: uppercase;
}

p {
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 1em;
}

/**
 * #OBJECTS
 */
.global-wrapper {
  overflow: hidden;
  max-width: 1500px;
  margin: 0 auto;
}

.container {
  margin: 0 auto;
  position: relative;
  max-width: 1500px;
}
.container--inner {
  padding: 0 10px;
  max-width: 965px;
  width: 100%;
}
@media screen and (min-width: 985px) {
  .container--inner {
    max-width: 985px;
  }
}
.container--how-rev-works {
  padding: 0 10px;
}
@media screen and (min-width: 1000px) {
  .container--how-rev-works {
    max-width: 1060px;
    padding: 0;
  }
}
.container--960-no-pad {
  max-width: 960px;
  padding: 0 20px;
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .container--960-no-pad {
    max-width: 1000px;
  }
}
.container--960-absolute-no-pad {
  width: 100%;
}
@media screen and (min-width: 651px) {
  .container--960-absolute-no-pad {
    padding: 0;
    width: 960px;
  }
}
.container--hero {
  width: 100%;
}
.container--no-padding {
  padding: 0;
}
@media screen and (max-width: 650px) {
  .container--no-padding-mobile {
    padding: 0;
  }
}
.container--whitebg {
  background: white;
}

.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;
}

/**
 * #COMPONENTS
 */
.ai-drivers {
  background-position: center top;
  background-size: 288% auto;
  background-repeat: no-repeat;
  height: 500px;
  margin-top: 0px;
  padding: 30px 0;
  width: 100%;
  z-index: -1;
}
@media screen and (min-width: 651px) {
  .ai-drivers {
    background-position: center;
    height: 725;
    padding: 60px 0;
  }
}
.ai-drivers__header {
  margin: 0 auto;
}
@media screen and (min-width: 651px) {
  .ai-drivers__header {
    margin: 0 auto;
    width: 610px;
  }
}
.ai-drivers__header__content {
  *zoom: 1;
  padding-top: 0px;
}
.ai-drivers__header__content:before, .ai-drivers__header__content:after {
  content: '';
  display: table;
}
.ai-drivers__header__content:after {
  clear: both;
}
@media screen and (min-width: 651px) {
  .ai-drivers__header__content {
    padding-top: 20px;
  }
}
.ai-drivers__header__content .ai-drivers-header-content__text {
  font: 400 12px/20px 'ProximaNovaReg';
}
@media screen and (min-width: 651px) {
  .ai-drivers__header__content .ai-drivers-header-content__text {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 70.57143%;
    margin-left: 0%;
    margin-right: 3%;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0 20px;
    position: relative;
  }
  .ai-drivers__header__content .ai-drivers-header-content__text:before, .ai-drivers__header__content .ai-drivers-header-content__text:after {
    content: '';
    display: table;
  }
  .ai-drivers__header__content .ai-drivers-header-content__text:after {
    clear: both;
  }
  .ai-drivers__header__content .ai-drivers-header-content__text:last-child {
    margin-right: 0%;
  }
  .ai-drivers__header__content .ai-drivers-header-content__text:before {
    color: #ff283b;
    content: "+";
    display: block;
    font-size: 10px;
    position: absolute;
    top: -7px;
    left: -4px;
  }
  .ai-drivers__header__content .ai-drivers-header-content__text:after {
    color: #ff283b;
    content: "+";
    display: block;
    font-size: 10px;
    position: absolute;
    top: -7px;
    right: -4px;
  }
}
.ai-drivers__header__content .ai-drivers-header-content__cta {
  text-align: center;
}
@media screen and (min-width: 651px) {
  .ai-drivers__header__content .ai-drivers-header-content__cta {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 26.42857%;
    margin-left: 0%;
    margin-right: 3%;
  }
  .ai-drivers__header__content .ai-drivers-header-content__cta:before, .ai-drivers__header__content .ai-drivers-header-content__cta:after {
    content: '';
    display: table;
  }
  .ai-drivers__header__content .ai-drivers-header-content__cta:after {
    clear: both;
  }
  .ai-drivers__header__content .ai-drivers-header-content__cta:last-child {
    margin-right: 0%;
  }
}
.ai-drivers__header__content .ai-drivers-header-content__cta .button {
  display: inline-block;
}
.ai-drivers__charecter {
  clear: both;
  margin: 70px auto;
}
.ai-drivers__charecter img {
  display: block;
  margin: 0 auto;
  width: 50%;
}
@media screen and (min-width: 651px) {
  .ai-drivers__charecter img {
    width: auto;
  }
}
.ai-drivers__headline {
  font-weight: 400;
  font-size: 80px;
  font-size: 80px;
  font-size: 5rem;
  font-family: "UnitedSansCond-Medium";
  color: #ffffff;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 651px) {
  .ai-drivers__headline {
    font-weight: 400;
    font-size: 85px;
    font-size: 5.3125rem;
    font-family: "UnitedSansCond-Medium";
    color: #ffffff;
    background: url('../img/battles.ai.header.png') no-repeat 0 0 transparent;
    height: 127px;
    margin: 0 auto;
    padding-top: 14px;
    text-align: left;
    width: 610px;
  }
}
.ai-drivers__headline span {
  font-weight: 400;
  font-size: 34px;
  font-size: 34px;
  font-size: 2.125rem;
  font-family: "UnitedSansCond-Light";
  color: #ffffff;
  line-height: 34px;
  line-height: 34px;
  line-height: 2.125rem;
  display: inline-block;
  position: relative;
  padding: 0 10px;
  text-align: left;
  top: 0;
}
@media screen and (min-width: 651px) {
  .ai-drivers__headline span {
    font-weight: 400;
    font-size: 34px;
    font-size: 2.125rem;
    font-family: "UnitedSansCond-Light";
    color: #ffffff;
    line-height: 34px;
    line-height: 2.125rem;
  }
}

.btn {
  border: none;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  display: inline-block;
  font-size: 12px;
  height: 30px;
  line-height: 30px;
  min-width: 135px;
  outline: none;
  padding: 0;
  text-align: center;
  text-decoration: none;
  -webkit-transition: background 200ms, border 200ms, color 200ms;
  -o-transition: background 200ms, border 200ms, color 200ms;
  transition: background 200ms, border 200ms, color 200ms;
  white-space: nowrap;
}
@media screen and (min-width: 651px) {
  .btn {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    font-size: 15px;
    height: 40px;
    line-height: 40px;
  }
}
.no-touch .btn:hover {
  text-decoration: none;
}
@media screen and (min-width: 651px) {
  .btn--small {
    font-size: 13px;
    height: 32px;
    line-height: 32px;
  }
}
.btn--large {
  height: 37.5px;
  line-height: 37.5px;
}
@media screen and (min-width: 651px) {
  .btn--large {
    height: 60px;
    line-height: 60px;
  }
}
@media screen and (min-width: 651px) {
  .btn--variable-width {
    min-width: 0;
    padding: 0 15px;
  }
}
.btn--full-width {
  min-width: 0;
  padding: 0 15px;
  width: 100%;
}
.btn--hollow {
  background: none;
}

.button {
  color: #ffffff;
  text-transform: uppercase;
  margin: 10px 2px 10px 0;
}
@media screen and (min-width: 651px) {
  .button {
    margin: 10px 10px 10px 0;
  }
}
.button:last-of-type {
  margin-right: 0;
}
.button--blue-small {
  font-weight: 400;
  font-size: 24px;
  font-size: 24px;
  font-size: 1.5rem;
  font-family: "ProximaNova-Bold";
  color: #00b0ed;
  background: url('../img/button.blue.small.get-rev.mobile.png') no-repeat 0 0 transparent;
  background-size: 72px 21px;
  font-size: 12px;
  height: 21px;
  line-height: 22px;
  text-align: center;
  width: 72px;
}
@media screen and (min-width: 651px) {
  .button--blue-small {
    font-weight: 400;
    font-size: 14px;
    font-size: 0.875rem;
    font-family: "ProximaNova-Bold";
    color: #00b0ed;
    line-height: 50px;
    line-height: 3.125rem;
    background: url('../img/button.blue.small.png') no-repeat 0 0 transparent;
    height: 47px;
    width: 124px;
  }
}
.button--blue-large {
  font-weight: 400;
  font-size: 24px;
  font-size: 24px;
  font-size: 1.5rem;
  font-family: "ProximaNova-Bold";
  color: #00b0ed;
  background: url('../img/button.blue.large.2x.png') no-repeat 0 0 transparent;
  background-size: 140px 23px;
  font-size: 12px;
  height: 23px;
  line-height: 25px;
  text-align: center;
  width: 140px;
}
@media screen and (min-width: 651px) {
  .button--blue-large {
    font-weight: 400;
    font-size: 14px;
    font-size: 0.875rem;
    font-family: "ProximaNova-Bold";
    color: #00b0ed;
    line-height: 50px;
    line-height: 3.125rem;
    background: url('../img/button.blue.large.png') no-repeat 0 0 transparent;
    height: 47px;
    width: 228px;
  }
}
.button--red-small {
  font-weight: 400;
  font-size: 24px;
  font-size: 24px;
  font-size: 1.5rem;
  font-family: "ProximaNova-Bold";
  color: #9f0b15;
  background: url('../img/button.red.small.2x.png') no-repeat 0 0 transparent;
  background-size: 140px 23px;
  font-size: 10px;
  height: 23px;
  line-height: 25px;
  text-align: center;
  width: 140px;
}
@media screen and (min-width: 651px) {
  .button--red-small {
    font-weight: 400;
    font-size: 14px;
    font-size: 0.875rem;
    font-family: "ProximaNova-Bold";
    color: #9f0b15;
    line-height: 50px;
    line-height: 3.125rem;
    background: url('../img/button.red.small.png') no-repeat 0 0 transparent;
    display: block;
    float: right;
    height: 47px;
    margin-top: 0;
    width: 144px;
  }
}

.inline {
  display: inline-block;
}

.contact-w {
  background: url('../img/bg.drivers.rev-drivers.mobile.jpg') no-repeat center top #000000;
  background-size: 100% auto;
  padding: 60px 0 70px;
}
@media screen and (min-width: 651px) {
  .contact-w {
    background: url('../img/bg.get-rev.dealer-locator.jpg') no-repeat center top #011520;
  }
}
.contact-w__headline {
  font-weight: 400;
  font-size: 85px;
  font-size: 85px;
  font-size: 5.3125rem;
  font-family: "UnitedSansCond-Medium";
  color: #ffffff;
  text-align: center;
}
@media screen and (min-width: 651px) {
  .contact-w__headline {
    background: url('../img/heading.bg.panel.contact-w.png') no-repeat 0 0 transparent;
    height: 137px;
    margin: 0 auto;
    padding-top: 7px;
    width: 960px;
  }
}
.contact-w__grid {
  overflow: hidden;
}
.contact-w__grid__item-row {
  overflow: hidden;
  padding: 0;
  position: relative;
}
@media screen and (min-width: 651px) {
  .contact-w__grid__item-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0 20px;
  }
  .contact-w__grid__item-row:after {
    background: rgba(255, 255, 255, 0.1);
    content: "";
    display: block;
    height: 100%;
    margin-right: 40px;
    position: absolute;
    right: 33.3%;
    top: 0;
    width: 1px;
  }
  .contact-w__grid__item-row:last-child {
    border: 0 none;
  }
  .contact-w__grid__item-row .dealer-locator__results__list {
    padding: 0;
  }
  .contact-w__grid__item-row .dealer-locator__results__list .dealer-locator-results-list__item {
    width: 45%;
    margin-right: 45px;
    background-position: 0 24px;
    background-size: 15px auto;
    padding: 20px 0 25px 25px;
    border-bottom: 0;
  }
  .contact-w__grid__item-row .dealer-locator__results__list .dealer-locator-results-list__item__store {
    font-size: 24px;
  }
  .contact-w__grid__item-row .dealer-locator__results__list .dealer-locator-results-list__item:nth-child(2n) {
    margin-right: 0;
  }
  .contact-w__grid__item-row .dealer-locator__results__list .dealer-locator-results-list__item:nth-child(odd) {
    clear: both;
  }
}
.contact-w__grid__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
  padding-top: 20px;
  position: relative;
}
@media screen and (min-width: 651px) {
  .contact-w__grid__item {
    border-bottom: 0 none;
    padding: 0;
  }
  .contact-w__grid__item--left {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 66.66667%;
    margin-left: 0%;
    margin-right: 0%;
    padding-right: 80px;
  }
  .contact-w__grid__item--left:before, .contact-w__grid__item--left:after {
    content: '';
    display: table;
  }
  .contact-w__grid__item--left:after {
    clear: both;
  }
  .contact-w__grid__item--right {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: 0%;
  }
  .contact-w__grid__item--right:before, .contact-w__grid__item--right:after {
    content: '';
    display: table;
  }
  .contact-w__grid__item--right:after {
    clear: both;
  }
}
.contact-w__grid__item .contact-w-grid-item__title {
  font-weight: 400;
  font-size: 48px;
  font-size: 48px;
  font-size: 3rem;
  font-family: "UnitedSansCond-Medium";
  color: #ffffff;
  text-transform: uppercase;
}
@media screen and (min-width: 651px) {
  .contact-w__grid__item .contact-w-grid-item__title {
    font-weight: 400;
    font-size: 30px;
    font-size: 1.875rem;
    font-family: "UnitedSansCond-Medium";
    color: #ffffff;
  }
}
.contact-w__grid__item .contact-w-grid-item__text p {
  font-weight: 400;
  font-size: 24px;
  font-size: 24px;
  font-size: 1.5rem;
  font-family: "ProximaNovaReg";
  color: #ffffff;
  color: #6f7d82;
}
@media screen and (min-width: 651px) {
  .contact-w__grid__item .contact-w-grid-item__text p {
    font-weight: 400;
    font-size: 14px;
    font-size: 0.875rem;
    font-family: "ProximaNovaReg";
    color: #9ca4a8;
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
  }
}
.contact-w__grid__item .contact-w-grid-item__text a {
  color: #00b0ed;
  font-family: 'ProximaNova-Bold';
}
.contact-w__grid__item .contact-w-grid-item__social-link {
  font-weight: 400;
  font-size: 20px;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "ProximaNova-Bold";
  color: #ffffff;
  background: url('../img/sprite.contact-w.social-icons.png') no-repeat 0 0 transparent;
  background-size: 17px auto;
  display: block;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 0 5px 30px;
}
@media screen and (min-width: 651px) {
  .contact-w__grid__item .contact-w-grid-item__social-link {
    font-weight: 400;
    font-size: 14px;
    font-size: 0.875rem;
    font-family: "ProximaNova-Bold";
    color: #ffffff;
  }
}
.contact-w__grid__item .contact-w-grid-item__social-link--facebook {
  background-position: 0 4px;
}
.contact-w__grid__item .contact-w-grid-item__social-link--twitter {
  background-position: 0 -35px;
}
.contact-w__grid__item .contact-w-grid-item__social-link--youtube {
  background-position: 0 -70px;
}

.countdown {
  display: none;
}
@media screen and (min-width: 900px) {
  .countdown {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
    padding: 8px 0 0;
    position: absolute;
    right: 360px;
    top: 0;
    width: 278px;
  }
}
.countdown__element {
  float: left;
  font: 16px/16px "UnitedSansCond-Light";
  margin: 0 12px 0 0;
  text-align: center;
  text-transform: uppercase;
  width: 24px;
}
.countdown__element:last-child {
  margin: 0;
}
.countdown__value {
  border-bottom: 1px solid #1ab8ef;
  color: #1ab8ef;
  font-size: 18px;
  line-height: 18px;
  margin: 0 0 8px;
}
.countdown__title {
  background: url('../img/title.countdown.png') repeat-x left bottom;
  color: #fff;
  font: 25px/25px "UnitedSansCond-Light";
  padding: 0 0 13px;
  width: auto;
}
.countdown__plus {
  background: url('../img/plus.countdown.png') no-repeat;
  height: 5px;
  position: absolute;
  top: -3px;
  width: 6px;
}
.countdown__plus--left {
  left: -2px;
}
.countdown__plus--right {
  right: -2px;
}

.dealer-locator {
  background: url('../img/bg.drivers.rev-drivers.mobile.jpg') no-repeat top center #000000;
  background-size: 100% auto;
  padding: 60px 0 70px;
  position: relative;
}
@media screen and (min-width: 651px) {
  .dealer-locator {
    background: url('../img/bg.get-rev.dealer-locator.jpg') no-repeat top center, url('../img/bg.get-rev.dealer-locator_tile.png') repeat-y center, #000000;
    padding: 60px 0 2px;
  }
}
.dealer-locator__headline {
  font-weight: 400;
  font-size: 85px;
  font-size: 85px;
  font-size: 5.3125rem;
  font-family: "UnitedSansCond-Medium";
  color: #ffffff;
  text-align: center;
}
@media screen and (min-width: 651px) {
  .dealer-locator__headline {
    font-weight: 400;
    font-size: 85px;
    font-size: 5.3125rem;
    font-family: "UnitedSansCond-Medium";
    color: #ffffff;
    background: url('../img/heading.bg.panel.how-rev-works.png') no-repeat 0 0 transparent;
    height: 137px;
    margin: 0 auto;
    padding-top: 10px;
    width: 620px;
  }
}
.dealer-locator__search-bar {
  background: url('../img/search.icon.png') no-repeat 4px 14px transparent;
  background-size: 10px 13px;
}
@media screen and (min-width: 651px) {
  .dealer-locator__search-bar {
    background-size: 21px 26px;
    background-position: 0 16px;
    margin: 0 auto;
    width: 605px;
  }
}
.dealer-locator__search-bar__text-input {
  font-weight: 400;
  font-size: 34px;
  font-size: 34px;
  font-size: 2.125rem;
  font-family: "UnitedSansCond-Light";
  color: #ffffff;
  background: transparent;
  border: 0 none;
  border-bottom: 4px solid #00b0ed;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding-left: 20px;
  text-transform: uppercase;
  width: 70%;
}
.dealer-locator__search-bar__text-input::-webkit-input-placeholder {
  color: #ffffff;
}
.dealer-locator__search-bar__text-input:-moz-placeholder {
  color: #ffffff;
}
.dealer-locator__search-bar__text-input:-ms-input-placeholder {
  color: #ffffff;
}
.dealer-locator__search-bar__text-input.placeholder {
  color: #ffffff;
}
@media screen and (min-width: 651px) {
  .dealer-locator__search-bar__text-input {
    margin: 0 15px 0 0;
    padding-left: 30px;
    width: 460px;
  }
}
.dealer-locator__search-bar__text-input:focus {
  outline: none;
}
.dealer-locator__search-bar .button--get-rev {
  border: 0 none;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
}
.dealer-locator__map {
  color: #000;
  margin-top: 40px;
  padding-top: 40%;
  width: 100%;
}
@media screen and (min-width: 651px) {
  .dealer-locator__map {
    max-width: 940px;
  }
}
.dealer-locator__disclaimer {
  color: rgba(255, 255, 255, 0.5);
  font: 12px/12px "ProximaNovaThin";
  margin: 5px 0;
  text-align: center;
}
@media screen and (min-width: 651px) {
  .dealer-locator__disclaimer {
    font-size: 14px;
    line-height: 14px;
  }
}
.dealer-locator__results__list {
  *zoom: 1;
  list-style-type: none;
  padding: 40px 0 0;
}
.dealer-locator__results__list:before, .dealer-locator__results__list:after {
  content: '';
  display: table;
}
.dealer-locator__results__list:after {
  clear: both;
}
.dealer-locator__results__list .dealer-locator-results-list__item {
  display: block;
  clear: both;
  float: none;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: url('../img/icon.map-pin.png') no-repeat 0 11px transparent;
  background-size: auto 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
  padding-left: 30px;
  padding-top: 15px;
  position: relative;
}
.dealer-locator__results__list .dealer-locator-results-list__item:first-child {
  margin-left: auto;
}
.dealer-locator__results__list .dealer-locator-results-list__item:last-child {
  margin-right: auto;
}
@media screen and (min-width: 651px) {
  .dealer-locator__results__list .dealer-locator-results-list__item {
    text-align: left;
    display: inline;
    clear: none;
    width: auto;
    margin-left: 0;
    margin-right: 0;
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.33333%;
    margin-left: 0%;
    margin-right: 3%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
  }
  .dealer-locator__results__list .dealer-locator-results-list__item:first-child {
    margin-left: 0;
  }
  .dealer-locator__results__list .dealer-locator-results-list__item:last-child {
    margin-right: 0;
  }
  .dealer-locator__results__list .dealer-locator-results-list__item:before, .dealer-locator__results__list .dealer-locator-results-list__item:after {
    content: '';
    display: table;
  }
  .dealer-locator__results__list .dealer-locator-results-list__item:after {
    clear: both;
  }
  .dealer-locator__results__list .dealer-locator-results-list__item:nth-child(3n) {
    margin-right: 0%;
    float: right;
  }
  .dealer-locator__results__list .dealer-locator-results-list__item:nth-child(3n + 1) {
    clear: both;
  }
}
.dealer-locator__results__list .dealer-locator-results-list__item:before {
  color: #00b0ed;
  content: "+";
  display: block;
  position: absolute;
  left: -5px;
  top: -11px;
}
.dealer-locator__results__list .dealer-locator-results-list__item:after {
  color: #00b0ed;
  content: "+";
  display: block;
  position: absolute;
  right: -5px;
  top: -11px;
}
.dealer-locator__results__list .dealer-locator-results-list__item__store {
  font-weight: 400;
  font-size: 48px;
  font-size: 48px;
  font-size: 3rem;
  font-family: "UnitedSansCond-Medium";
  color: #ffffff;
  line-height: 48px;
  line-height: 48px;
  line-height: 3rem;
  text-transform: uppercase;
}
@media screen and (min-width: 651px) {
  .dealer-locator__results__list .dealer-locator-results-list__item__store {
    font-weight: 400;
    font-size: 40px;
    font-size: 2.5rem;
    font-family: "UnitedSansCond-Medium";
    color: #ffffff;
    line-height: 33px;
  }
}
.dealer-locator__results__list .dealer-locator-results-list__item__text-line {
  color: rgba(255, 255, 255, 0.5);
  font: 14px/20px "ProximaNovaReg";
}

.drivers {
  background-repeat: no-repeat;
  background-position: top center;
  background-size: 100% auto;
  min-height: 460px;
}
@media screen and (min-width: 651px) {
  .drivers {
    background-repeat: repeat-x;
    background-size: cover;
    height: auto;
    min-height: 475px;
  }
}
@media screen and (min-width: 651px) {
  .drivers__inner {
    height: 100%;
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
  }
}
.drivers__items {
  padding: 0 0 60px;
}
@media screen and (min-width: 651px) {
  .drivers__items {
    height: 100%;
    margin: 0 109px 0 116px;
  }
}
.drivers__item {
  padding: 30px 35px 0;
  position: relative;
}
@media screen and (min-width: 651px) {
  .drivers__item {
    height: 100%;
    padding: 0 20px 0 0;
  }
}
.drivers .slick-prev,
.drivers .slick-next {
  display: none !important;
}
@media screen and (min-width: 651px) {
  .drivers .slick-prev,
  .drivers .slick-next {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    /* IE 6/7 fallback */
    *text-indent: -9999px;
    background: none;
    background-position: center;
    background-repeat: no-repeat;
    border: none;
    display: block !important;
    height: 60px;
    outline: none;
    position: absolute;
    padding: none;
    top: 178px;
    width: 62px;
  }
  .drivers .slick-prev:before,
  .drivers .slick-next:before {
    content: "";
    display: block;
    width: 0;
    height: 150%;
  }
}
.drivers .slick-prev {
  background-image: url('../img/arrow.drivers.left.png');
  left: -116px;
}
.drivers .slick-next {
  background-image: url('../img/arrow.drivers.right.png');
  right: -109px;
}
.drivers .slick-dots {
  position: absolute;
  left: 50%;
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 30px;
  height: 6px;
  list-style: none;
  overflow: hidden;
  margin: 0;
  padding: 0;
  position: absolute;
}
@media screen and (min-width: 651px) {
  .drivers .slick-dots {
    height: 8px;
  }
}
.drivers .slick-dots li {
  float: left;
}
.drivers .slick-dots li button {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  /* IE 6/7 fallback */
  *text-indent: -9999px;
  background: #fff;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border: none;
  height: 6px;
  margin: 0 2px;
  opacity: 0.4;
  outline: none;
  padding: 0;
  width: 6px;
}
.drivers .slick-dots li button:before {
  content: "";
  display: block;
  width: 0;
  height: 150%;
}
@media screen and (min-width: 651px) {
  .drivers .slick-dots li button {
    -webkit-border-radius: 4px;
    border-radius: 4px;
    height: 8px;
    width: 8px;
  }
}
.drivers .slick-dots li.slick-active button {
  opacity: 0.8;
}
.drivers__character-image {
  display: none;
  height: 139px;
  width: 143px;
}
@media screen and (min-width: 1150px) {
  .drivers__character-image {
    display: block;
    height: 268px;
    position: absolute;
    top: 74px;
    width: 261px;
  }
}
.drivers__character-image--bottom {
  display: block;
  margin: 0 auto;
}
@media screen and (min-width: 651px) and (max-width: 1149px) {
  .drivers__character-image--bottom {
    float: left;
    height: 185px;
    width: auto;
  }
}
@media screen and (min-width: 1150px) {
  .drivers__character-image--bottom {
    display: none;
  }
}
@media screen and (min-width: 1150px) {
  .drivers__details {
    max-width: 630px;
  }
}
.drivers__type {
  position: relative;
  text-align: center;
}
@media screen and (min-width: 651px) {
  .drivers__type {
    margin: 52px 0 0;
    text-align: left;
  }
}
.drivers__type__name {
  font: 500 18px/18px "UnitedSansCond-Medium", Arial;
  margin: 0 0 5px;
  text-transform: uppercase;
}
@media screen and (min-width: 651px) {
  .drivers__type__name {
    float: left;
    font-size: 30px;
    line-height: 30px;
    margin: 0 10px 0 0;
  }
}
.drivers__type__description {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  font: 100 12px/14px "ProximaNovaReg", Arial;
  opacity: 0.5;
  padding: 0 0 5px;
}
@media screen and (min-width: 651px) {
  .drivers__type__description {
    border-bottom: none;
    font: 100 14px/14px "ProximaNovaReg", Arial;
    opacity: 1;
    overflow: hidden;
    padding: 0 0 2px;
    position: relative;
  }
}
.drivers__type__plus {
  display: none;
}
@media screen and (min-width: 651px) {
  .drivers__type__plus {
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    height: 5px;
    right: -12px;
    position: absolute;
    top: -2px;
    width: 5px;
  }
}
.drivers__name {
  margin: 15px 0 0;
}
@media screen and (min-width: 651px) {
  .drivers__name {
    border-top: 2px solid #fff;
    margin: 5px 0 0;
    padding: 2px 0 0;
  }
}
.drivers__name__text {
  color: #fff;
  font: 500 47px/47px "UnitedSansCond-Medium", Arial;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 651px) {
  .drivers__name__text {
    float: left;
    font-size: 85px;
    line-height: 85px;
    height: 85px;
    margin: 0 14px 0 0;
  }
}
@media screen and (min-width: 651px) {
  .drivers__name__background {
    background-position: left center;
    background-repeat: repeat-x;
    height: 60px;
    margin: 5px 0 0;
    overflow: hidden;
    position: relative;
  }
}
.drivers__description {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font: 100 12px/14px "ProximaNovaReg", Arial;
  margin: 10px 0 20px;
  padding: 10px 0 0;
  position: relative;
}
@media screen and (min-width: 651px) {
  .drivers__description {
    border: none;
    color: #fff;
    font-size: 14px;
    line-height: 21px;
    margin: 0;
    opacity: 0.5;
    padding: 0;
  }
}
.drivers__description__plus {
  background-position: center;
  background-repeat: no-repeat;
  height: 3px;
  position: absolute;
  top: -2px;
  width: 3px;
}
@media screen and (min-width: 651px) {
  .drivers__description__plus {
    display: none;
  }
}
.drivers__description__plus--left {
  left: 0;
}
.drivers__description__plus--right {
  right: 0;
}
.drivers__stats-container {
  display: none;
}
@media screen and (min-width: 651px) and (max-width: 1150px) {
  .drivers__stats-container--top {
    display: block;
    padding: 0 0 0 190px;
  }
}
@media screen and (min-width: 651px) {
  .drivers__stats-container--bottom {
    display: block;
  }
}
.drivers__item--show-stats .drivers__stats-container--bottom {
  display: block;
  margin: 0 0 25px;
}
.drivers__stats-mobile-wrap {
  margin: 25px 0 0;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 651px) {
  .drivers__stats-mobile-wrap {
    margin: 0;
    overflow: visible;
    position: static;
  }
}
@media screen and (min-width: 651px) and (max-width: 1150px) {
  .drivers__stats {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 47%;
    margin-left: 0%;
    margin-right: 6%;
    margin-top: 20px;
  }
  .drivers__stats:before, .drivers__stats:after {
    content: '';
    display: table;
  }
  .drivers__stats:after {
    clear: both;
  }
  .drivers__stats:last-child {
    margin-right: 0%;
  }
}
@media screen and (min-width: 1150px) {
  .drivers__stats {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 29.33333%;
    margin-left: 0%;
    margin-right: 6%;
    margin-top: 20px;
  }
  .drivers__stats:before, .drivers__stats:after {
    content: '';
    display: table;
  }
  .drivers__stats:after {
    clear: both;
  }
  .drivers__stats:last-child {
    margin-right: 0%;
  }
}
.drivers__stats__title {
  border-bottom: 1px solid #fff;
  color: #fff;
  font: 500 16px/16px "UnitedSansCond-Light", Arial;
  text-transform: uppercase;
}
@media screen and (min-width: 651px) {
  .drivers__stats__title {
    font-size: 24px;
    line-height: 24px;
    padding-bottom: 2px;
  }
}
.drivers__stats-container--top .drivers__stats--drivers-rating {
  width: 100%;
}
@media screen and (min-width: 651px) and (max-width: 1150px) {
  .drivers__stats-container--bottom .drivers__stats--drivers-rating {
    display: none;
  }
}
@media screen and (max-width: 650px) {
  .drivers__stats-mobile-wrap .drivers__stats {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 47%;
    margin-left: 0%;
    margin-right: 6%;
  }
  .drivers__stats-mobile-wrap .drivers__stats:before, .drivers__stats-mobile-wrap .drivers__stats:after {
    content: '';
    display: table;
  }
  .drivers__stats-mobile-wrap .drivers__stats:after {
    clear: both;
  }
  .drivers__stats-mobile-wrap .drivers__stats:nth-child(2n) {
    margin-right: 0%;
    float: right;
  }
  .drivers__stats-mobile-wrap .drivers__stats:nth-child(2n + 1) {
    clear: both;
  }
}
.drivers__bar-chart {
  margin: 10px 0 0;
}
@media screen and (min-width: 651px) {
  .drivers__bar-chart {
    margin: 15px 0 0;
  }
}
.drivers__bar-chart__label, .drivers__bar-chart__value {
  color: #fff;
  font: 500 12px/12px "UnitedSansCond-Medium", Arial;
  text-transform: uppercase;
}
@media screen and (min-width: 651px) {
  .drivers__bar-chart__label, .drivers__bar-chart__value {
    font-size: 16px;
    line-height: 16px;
  }
}
.drivers__bar-chart__label {
  float: left;
}
.drivers__bar-chart__value {
  float: right;
}
.drivers__bar-chart__bar {
  background: #000;
  height: 2px;
  margin: 2px 0 0;
}
@media screen and (min-width: 651px) {
  .drivers__bar-chart__bar {
    height: 4px;
    margin: 4px 0 0;
  }
}
.drivers__bar-chart__bar-inner {
  height: 100%;
}
.drivers__badge {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 44%;
  margin-left: 0%;
  margin-right: 12%;
  margin: 5px 0 0;
}
.drivers__badge:before, .drivers__badge:after {
  content: '';
  display: table;
}
.drivers__badge:after {
  clear: both;
}
.drivers__badge:nth-child(2n) {
  margin-right: 0%;
  float: right;
}
.drivers__badge:nth-child(2n + 1) {
  clear: both;
}
@media screen and (min-width: 651px) {
  .drivers__badge {
    margin: 12px 0 0;
  }
}
.drivers__badge__image {
  width: 100%;
}
.drivers__badge__name {
  color: #fff;
  font: 500 12px/15px "UnitedSansCond-Medium", Arial;
  margin: 10px 0 0;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 651px) {
  .drivers__badge__name {
    font-size: 16px;
    line-height: 16px;
  }
}
.drivers__show-more {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 0 10px;
  text-align: center;
}
@media screen and (min-width: 651px) {
  .drivers__show-more {
    display: none;
  }
}
.drivers__show-more__toggle {
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 16px auto;
  color: #fff;
  display: block;
  font: 500 12px/12px "UnitedSansCond-Medium", Arial;
  padding: 0 0 20px;
  text-decoration: none;
  text-transform: uppercase;
}
@media screen and (min-width: 651px) {
  .drivers--left .drivers__character-image {
    left: 0;
  }
}
@media screen and (min-width: 1150px) {
  .drivers--left .drivers__details {
    float: right;
  }
}
@media screen and (min-width: 651px) {
  .drivers--right .drivers__character-image {
    right: 0;
  }
}
@media screen and (min-width: 651px) {
  .drivers--right .drivers__details {
    float: left;
  }
}
.drivers--foot-soldiers {
  background-image: url('../img/bg.drivers.foot-soldiers.mobile.jpg');
}
@media screen and (min-width: 651px) {
  .drivers--foot-soldiers {
    background-image: url('../img/bg.drivers.foot-soldiers.jpg');
  }
}
.drivers--foot-soldiers .drivers__type__name {
  color: #e6e928;
}
.drivers--foot-soldiers .drivers__type__plus {
  background-image: url('../img/plus.drivers.foot-soldiers.png');
}
.drivers--foot-soldiers .drivers__description__plus {
  background-image: url('../img/plus.drivers.foot-soldiers.png');
}
@media screen and (min-width: 651px) {
  .drivers--foot-soldiers .drivers__name {
    border-top-color: #e6e928;
  }
}
@media screen and (min-width: 651px) {
  .drivers--foot-soldiers .drivers__name__background {
    background-image: url('../img/bg.drivers.name.foot-soldiers.png');
  }
}
.drivers--foot-soldiers .drivers__stats__title {
  border-bottom-color: #e6e928;
}
.drivers--foot-soldiers .drivers__bar-chart__bar-inner {
  background: #e6e928;
}
.drivers--foot-soldiers .drivers__item .drivers__show-more__toggle {
  background-image: url('../img/toggle.drivers.foot-soldiers.more.png');
}
.drivers--foot-soldiers .drivers__item--show-stats .drivers__show-more__toggle {
  background-image: url('../img/toggle.drivers.foot-soldiers.less.png');
}
.drivers--rev-drivers {
  background-image: url('../img/bg.drivers.rev-drivers.mobile.jpg');
}
@media screen and (min-width: 651px) {
  .drivers--rev-drivers {
    background-image: url('../img/bg.drivers.rev-drivers.jpg');
  }
}
.drivers--rev-drivers .drivers__type__name {
  color: #00b0ed;
}
.drivers--rev-drivers .drivers__type__plus {
  background-image: url('../img/plus.drivers.rev-drivers.png');
}
.drivers--rev-drivers .drivers__description__plus {
  background-image: url('../img/plus.drivers.rev-drivers.png');
}
@media screen and (min-width: 651px) {
  .drivers--rev-drivers .drivers__name {
    border-top-color: #00b0ed;
  }
}
@media screen and (min-width: 651px) {
  .drivers--rev-drivers .drivers__name__background {
    background-image: url('../img/bg.drivers.name.rev-drivers.png');
  }
}
.drivers--rev-drivers .drivers__stats__title {
  border-bottom-color: #00b0ed;
}
.drivers--rev-drivers .drivers__bar-chart__bar-inner {
  background: #00b0ed;
}
.drivers--rev-drivers .drivers__item .drivers__show-more__toggle {
  background-image: url('../img/toggle.drivers.rev-drivers.more.png');
}
.drivers--rev-drivers .drivers__item--show-stats .drivers__show-more__toggle {
  background-image: url('../img/toggle.drivers.rev-drivers.less.png');
}
.drivers--rev-bosses {
  background-image: url('../img/bg.drivers.rev-bosses.mobile.jpg');
}
@media screen and (min-width: 651px) {
  .drivers--rev-bosses {
    background-image: url('../img/bg.drivers.rev-bosses.jpg');
  }
}
.drivers--rev-bosses .drivers__type__name {
  color: #cb070a;
}
.drivers--rev-bosses .drivers__type__plus {
  background-image: url('../img/plus.drivers.rev-bosses.png');
}
.drivers--rev-bosses .drivers__description__plus {
  background-image: url('../img/plus.drivers.rev-bosses.png');
}
@media screen and (min-width: 651px) {
  .drivers--rev-bosses .drivers__name {
    border-top-color: #cb070a;
  }
}
@media screen and (min-width: 651px) {
  .drivers--rev-bosses .drivers__name__background {
    background-image: url('../img/bg.drivers.name.rev-bosses.png');
  }
}
.drivers--rev-bosses .drivers__stats__title {
  border-bottom-color: #cb070a;
}
.drivers--rev-bosses .drivers__bar-chart__bar-inner {
  background: #cb070a;
}
.drivers--rev-bosses .drivers__item .drivers__show-more__toggle {
  background-image: url('../img/toggle.drivers.rev-bosses.more.png');
}
.drivers--rev-bosses .drivers__item--show-stats .drivers__show-more__toggle {
  background-image: url('../img/toggle.drivers.rev-bosses.less.png');
}

.game-modes {
  background: url('../img/bg.battles.game-modes.mobile.jpg') no-repeat top center #000000;
  background-size: 100% auto;
  margin-top: 0px;
  padding: 70px 0;
  width: 100%;
  z-index: -1;
}
@media screen and (min-width: 651px) {
  .game-modes {
    background: url('../img/battles.modes.bg.png') no-repeat;
    padding: 43px 0;
  }
}
.game-modes__headline {
  font-weight: 400;
  font-size: 85px;
  font-size: 85px;
  font-size: 5.3125rem;
  font-family: "UnitedSansCond-Medium";
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 651px) {
  .game-modes__headline:after {
    background: url('../img/heading.bg.panel.game-modes.png') repeat-x center top transparent;
    content: "";
    display: block;
    height: 69px;
    margin-top: -50px;
    width: 100%;
  }
}
.game-modes__modes {
  overflow: hidden;
  padding: 0 14px;
  width: 100%;
}
@media screen and (min-width: 651px) {
  .game-modes__modes {
    padding: 0;
    width: auto;
  }
}
@media screen and (min-width: 651px) {
  .game-modes__modes__item {
    background-color: #03060a;
    height: 180px;
    margin-bottom: 60px;
    overflow: hidden;
  }
}
.game-modes__modes__item .game-modes-item__thumbnail {
  background-position: center center;
  background-size: auto 100%;
  background-repeat: no-repeat;
  display: block;
  padding-top: 56.25%;
  width: 100%;
}
@media screen and (min-width: 651px) {
  .game-modes__modes__item .game-modes-item__thumbnail {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 25%;
    margin-left: 0%;
    margin-right: 0%;
    display: inline-block;
    height: 180px;
    padding: 0;
  }
  .game-modes__modes__item .game-modes-item__thumbnail:before, .game-modes__modes__item .game-modes-item__thumbnail:after {
    content: '';
    display: table;
  }
  .game-modes__modes__item .game-modes-item__thumbnail:after {
    clear: both;
  }
}
@media screen and (min-width: 650px) and (max-width: 980px) {
  .game-modes__modes__item .game-modes-item__thumbnail {
    background-size: 100% auto;
    margin-left: 2%;
    width: 23%;
  }
}
.game-modes__modes__item .game-modes-item__content {
  position: relative;
}
@media screen and (min-width: 651px) {
  .game-modes__modes__item .game-modes-item__content {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 75%;
    margin-left: 0%;
    margin-right: 0%;
    height: 100%;
    padding: 10px;
  }
  .game-modes__modes__item .game-modes-item__content:before, .game-modes__modes__item .game-modes-item__content:after {
    content: '';
    display: table;
  }
  .game-modes__modes__item .game-modes-item__content:after {
    clear: both;
  }
}
.game-modes__modes__item .game-modes-item__content__mode-no {
  font-weight: 400;
  font-size: 20px;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "UnitedSansCond-Bold";
  color: #00b0ed;
  background: url('../img/game-mode-number-bar.2x.png') repeat-x right 0 top 3px transparent;
  letter-spacing: 4px;
  margin: 10px 0 10px;
  text-transform: uppercase;
}
@media screen and (min-width: 651px) {
  .game-modes__modes__item .game-modes-item__content__mode-no {
    font-weight: 400;
    font-size: 10px;
    font-size: 0.625rem;
    font-family: "UnitedSansCond-Bold";
    color: #00b0ed;
    background: url('../img/game-mode-number-bar.png') no-repeat right 0 top 3px transparent;
    margin: 0 0 10px;
  }
}
.game-modes__modes__item .game-modes-item__content__mode-no span {
  background: #03060a;
  padding-bottom: 2px;
  padding-right: 10px;
}
.game-modes__modes__item .game-modes-item__content__title {
  font-weight: 400;
  font-size: 36px;
  font-size: 36px;
  font-size: 2.25rem;
  font-family: "Proximanova-Bold";
  color: #ffffff;
}
@media screen and (min-width: 651px) {
  .game-modes__modes__item .game-modes-item__content__title {
    font-weight: 400;
    font-size: 18px;
    font-size: 1.125rem;
    font-family: "Proximanova-Bold";
    color: #ffffff;
  }
}
.game-modes__modes__item .game-modes-item__content__text {
  font: 400 12px/20px 'ProximaNovaReg';
  color: #6f7d82;
}
@media screen and (min-width: 651px) {
  .game-modes__modes__item .game-modes-item__content__text {
    font-size: 14px;
  }
}
.game-modes__modes__item .game-modes-item__content__bottom-border {
  position: absolute;
  left: 50%;
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=10);
  opacity: 0.1;
  background-color: #00b0ed;
  bottom: -20px;
  height: 1px;
  position: absolute;
  width: 100%;
}
@media screen and (min-width: 651px) {
  .game-modes__modes__item .game-modes-item__content__bottom-border {
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
    bottom: 10px;
    width: 97%;
  }
}
.game-modes__modes .slick-list {
  padding-bottom: 40px;
}
.game-modes__modes .slick-dots {
  list-style-type: none;
  margin: 0 auto;
  padding: 0;
  text-align: center;
}
.game-modes__modes .slick-dots li {
  background: #1a1b1d;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 0 4px;
  text-indent: -9999px;
  width: 8px;
}
.game-modes__modes .slick-dots li.slick-active {
  background: #808081;
}

.hero {
  background: #000;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: auto 100%;
  display: block;
  margin: 0 auto;
  position: relative;
  text-align: center;
}
.hero__video {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: none;
  height: 100%;
  left: 0;
  padding: 80px 0 0;
  position: absolute;
  top: 80px;
  width: 100%;
}
.hero__video iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.hero__heading {
  color: #fff;
  font-family: "UnitedSansCond-Bold";
  font-size: 150px;
  font-size: 9.375rem;
  line-height: 150px;
  line-height: 9.375rem;
  padding: 0 20px;
  text-transform: uppercase;
}
@media screen and (min-width: 651px) {
  .hero__heading {
    margin-top: 100px;
  }
}
.hero__heading--smaller {
  font-size: 43px;
  font-family: "UnitedSansCond-Medium";
  line-height: 50px;
}
.hero__heading--smaller span {
  font-size: 48px;
  font-size: 3.000rem;
  font-family: "UnitedSansCond-Medium";
  position: absolute;
  margin-top: 5px;
  margin-left: -170px;
}
@media screen and (min-width: 768px) {
  .hero__heading--smaller {
    font-size: 5rem;
    line-height: inherit;
  }
}
.hero__heading--smartphone {
  position: relative;
  text-align: center !important;
}
@media screen and (min-width: 768px) {
  .hero__heading--smartphone {
    background: url('../img/revtech.app.header.bg.png') no-repeat 0 0 transparent;
    margin-left: 0 !important;
    margin-top: 0 !important;
    padding-left: 190px;
    padding-top: 18px;
    text-align: left !important;
  }
}
.hero__heading--smartphone .hero__heading__app-controller-text {
  color: #b81b26;
  display: inline-block;
  font-size: 18px;
  line-height: 16px;
  left: 20px;
  position: relative;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .hero__heading--smartphone .hero__heading__app-controller-text {
    font-size: 37px;
    line-height: 33px;
    position: absolute;
    left: 563px;
    top: 36px;
  }
}
.hero__heading--smartphone .hero__heading__app-controller-text:before {
  color: #ffffff;
  content: "(";
  display: inline-block;
  height: 40px;
  font-size: 40px;
  line-height: 38px;
  left: -12px;
  position: absolute;
  top: 0;
  width: 10px;
}
@media screen and (min-width: 768px) {
  .hero__heading--smartphone .hero__heading__app-controller-text:before {
    display: none;
  }
}
.hero__heading--smartphone .hero__heading__app-controller-text:after {
  color: #ffffff;
  content: ")";
  display: inline-block;
  height: 40px;
  font-size: 40px;
  line-height: 38px;
  right: -12px;
  position: absolute;
  top: 0;
  width: 10px;
}
@media screen and (min-width: 768px) {
  .hero__heading--smartphone .hero__heading__app-controller-text:after {
    display: none;
  }
}
.hero__heading__twoWays {
  font-weight: 400;
  font-size: 85px;
  font-size: 85px;
  font-size: 5.3125rem;
  font-family: "UnitedSansCond-Medium";
  color: #FFF;
  line-height: 85px;
  line-height: 85px;
  line-height: 5.3125rem;
}
@media screen and (min-width: 864px) {
  .hero__heading__twoWays {
    margin-top: -235px;
    font-family: "UnitedSansCond-Medium";
    font-size: 5rem;
    letter-spacing: 1.5px;
    line-height: inherit;
  }
}
.hero__home {
  background-repeat: no-repeat;
  background-position: bottom center;
  padding-top: 100%;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 650px) {
  .hero__home {
    background-size: 150% auto;
  }
}
@media screen and (min-width: 651px) {
  .hero__home {
    margin-top: -150px;
    background-position: center;
    height: 1069px;
    padding-top: inherit;
    z-index: 200;
  }
}
.hero__home__intro {
  right: 50%;
  position: absolute;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  -o-transform: translateX(50%);
  transform: translateX(50%);
  top: 85px;
}
@media screen and (min-width: 651px) {
  .hero__home__intro {
    left: auto;
    right: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
}
.hero__home__intro .home-intro-text {
  font-family: "UnitedSansCond-Medium";
  font-size: 14px;
  letter-spacing: 0.2px;
  line-height: 16px;
  position: relative;
  text-align: left;
  top: 140px;
}
@media screen and (min-width: 651px) {
  .hero__home__intro .home-intro-text {
    font-size: 18px;
    letter-spacing: 0.5px;
    line-height: 20px;
    left: 35px;
    top: 160px;
  }
}
.hero__twoWays {
  background-repeat: no-repeat;
  background-position: bottom center;
}
@media screen and (max-width: 650px) {
  .hero__twoWays {
    background-size: 290% auto;
    margin-top: 50%;
    padding-top: 100%;
  }
}
@media screen and (min-width: 651px) {
  .hero__twoWays {
    background-position: center;
    width: 100%;
    height: 794px;
    z-index: -1;
  }
}
.hero__twoWays__intro {
  margin-top: -145%;
}
@media screen and (min-width: 651px) {
  .hero__twoWays__intro {
    margin-top: inherit;
  }
}
.hero__twoWays__intro p {
  font-weight: 400;
  font-size: 24px;
  font-size: 24px;
  font-size: 1.5rem;
  font-family: "UnitedSansCond-Bold";
  color: #a30c16;
  letter-spacing: 5px;
  letter-spacing: 5px;
  letter-spacing: 0.3125rem;
  line-height: 24px;
  line-height: 24px;
  line-height: 1.5rem;
  margin-bottom: 10px;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
  text-transform: uppercase;
}
@media screen and (min-width: 651px) {
  .hero__twoWays__intro p {
    letter-spacing: 0;
    position: relative;
    top: -214px;
  }
}
.hero__twoWays__intro__wide-image {
  display: none;
}
@media screen and (min-width: 900px) {
  .hero__twoWays__intro__wide-image {
    display: block;
  }
}
.hero__twoWays__intro__tall-image {
  display: none;
}
@media screen and (min-width: 650px) and (max-width: 899px) {
  .hero__twoWays__intro__tall-image {
    display: block;
    margin: 0 auto;
  }
}
.hero__twoWays__intro__graphic {
  background: url('../img/') no-repeat 0 0 transparent;
}
@media screen and (min-width: 865px) {
  .hero__twoWays__intro__graphic {
    background: url('../img/asset.two-ways-to-play.heading.png') no-repeat 0 0 transparent;
    height: 289px;
    width: 862px;
  }
}
@media screen and (max-width: 863px) {
  .hero__twoWays__battles {
    display: none;
  }
}
@media screen and (min-width: 863px) {
  .hero__twoWays__battles {
    padding-bottom: 450px;
  }
}
.hero__twoWays__battles a {
  background: url('../img/footer.find-a-store.png') no-repeat;
  display: inline-block;
  font: 100 12px/20px "Proximanova-Bold", Arial;
  font-size: 14px;
  line-height: 50px;
  height: 47px;
  overflow: hidden;
  right: 0;
  text-align: center;
  text-transform: uppercase;
  width: 144px;
}
.hero__twoWays__ways {
  font-weight: 400;
  font-size: 24px;
  font-size: 24px;
  font-size: 1.5rem;
  font-family: "ProximaNovaReg";
  color: #a3a3a3;
  line-height: 28px;
  line-height: 28px;
  line-height: 1.75rem;
  margin: auto;
  margin-bottom: 18px;
  margin-bottom: 18px;
  margin-bottom: 1.125rem;
  text-align: center;
  width: 78%;
}
.hero__twoWays__ways span {
  font-family: "ProximaNovaRegIt";
  color: #FFF;
}
@media screen and (min-width: 864px) {
  .hero__twoWays__ways {
    font-size: 0.85rem;
    line-height: inherit;
    margin: auto;
    width: 555px;
  }
  .hero__twoWays__ways span {
    font-size: 0.90rem;
  }
}
.hero__twoWays__actions {
  padding: 0 7.66%;
}
.hero__twoWays__actions a {
  display: block;
  height: 100px;
}
.hero__twoWays__actions img {
  width: 100%;
}
.hero__twoWays__actions--rev {
  background: url('../img/btn.twoways.mobile.png') no-repeat 0 0 transparent;
  background-size: 128px 24px;
  font: 100 12px/26px "Proximanova-Bold", Arial;
  height: 24px;
  margin: auto;
  text-align: center;
  width: 128px;
}
.hero__twoWays__actions--pvcpu {
  float: left;
  width: 40%;
}
.hero__twoWays__actions--pvp {
  float: right;
  width: 39%;
}
@media screen and (min-width: 864px) {
  .hero__twoWays__actions {
    display: none;
  }
}
.hero--support {
  background-position: center bottom;
  background-size: 180% auto;
  background-repeat: no-repeat;
  height: 500px;
  margin-top: -220px;
}
@media screen and (min-width: 651px) {
  .hero--support {
    background-position: center;
    background-size: auto;
    height: 895px;
    width: 100%;
    z-index: -1;
  }
}
.hero__support {
  padding-top: 250px;
}
@media screen and (min-width: 651px) {
  .hero__support {
    padding-top: 180px;
  }
}
.hero--getrev {
  background-position: center bottom;
  background-size: 180% auto;
  background-repeat: no-repeat;
  height: 570px;
  margin-top: -220px;
}
@media screen and (min-width: 651px) {
  .hero--getrev {
    background-position: center;
    background-size: auto;
    height: 905px;
    width: 100%;
    z-index: -1;
  }
}
.hero__getrev {
  padding-top: 250px;
}
@media screen and (min-width: 651px) {
  .hero__getrev {
    padding-top: 21.33333%;
  }
}
.hero--drivers {
  background-position: center bottom;
  background-size: 180% auto;
  background-repeat: no-repeat;
  height: 605px;
  margin-top: -220px;
}
@media screen and (min-width: 651px) {
  .hero--drivers {
    background-position: center;
    background-size: auto;
    height: 1035px;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: -1;
  }
}
.hero__drivers {
  padding-top: 400px;
}
@media screen and (min-width: 651px) {
  .hero__drivers {
    padding-top: 250px;
  }
}
.hero--battles {
  background-position: center bottom;
  background-size: 180% auto;
  background-repeat: no-repeat;
  height: 400px;
}
@media screen and (min-width: 651px) {
  .hero--battles {
    background-position: center;
    height: 1068px;
    margin-top: -220px;
    width: 100%;
    z-index: -1;
  }
}
.hero__battles {
  padding-top: 20px;
}
@media screen and (min-width: 651px) {
  .hero__battles {
    padding-top: 200px;
  }
}
.hero--revtech {
  background-position: center bottom;
  background-size: 180% auto;
  background-repeat: no-repeat;
  height: 542px;
}
@media screen and (min-width: 651px) {
  .hero--revtech {
    background-position: center;
    height: 1068px;
    margin-top: -220px;
    width: 100%;
    z-index: -1;
  }
}
.hero__revtech {
  padding-top: 200px;
}

.hero {
  padding-bottom: 0;
  margin-top: 0;
  height: 400px;
}
@media screen and (min-width: 651px) {
  .hero {
    background-size: cover;
    background-position: center bottom;
    height: 0;
    overflow: hidden;
    padding-bottom: 46.875%;
    position: relative;
  }
}
@media screen and (max-width: 845px) {
  .hero {
    height: 390px;
    padding-bottom: 0;
  }
}
@media screen and (max-width: 845px) {
  .hero__home {
    height: 520px;
  }
}
.hero__battles {
  padding-top: 70px;
}
.hero__drivers {
  padding-top: 165px;
}
@media screen and (min-width: 651px) {
  .hero__drivers {
    bottom: 50px;
    left: 0;
    position: absolute;
    text-align: center;
    width: 100%;
  }
}

.how-to-videos {
  background: #191919;
}
@media screen and (min-width: 651px) {
  .how-to-videos {
    background: url('../img/bg.videos.png') no-repeat center top #191919;
    padding: 60px 0 70px;
  }
}
.how-to-videos__heading {
  font-weight: 400;
  font-size: 85px;
  font-size: 85px;
  font-size: 5.3125rem;
  font-family: "UnitedSansCond-Medium";
  color: #ffffff;
  text-align: center;
}
@media screen and (min-width: 651px) {
  .how-to-videos__heading {
    background: url('../img/heading.bg.panel.how-to-videos.png') no-repeat 0 0 transparent;
    height: 124px;
    margin: 0 auto 20px;
    padding-top: 7px;
    width: 962px;
  }
}
.how-to-videos__surround {
  *zoom: 1;
}
.how-to-videos__surround:before, .how-to-videos__surround:after {
  content: '';
  display: table;
}
.how-to-videos__surround:after {
  clear: both;
}
@media screen and (min-width: 651px) {
  .how-to-videos__left-col {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 66.66667%;
    margin-left: 0%;
    margin-right: 0%;
  }
  .how-to-videos__left-col:before, .how-to-videos__left-col:after {
    content: '';
    display: table;
  }
  .how-to-videos__left-col:after {
    clear: both;
  }
}
@media screen and (min-width: 651px) {
  .how-to-videos__right-col {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 33.33333%;
    margin-left: 0%;
    margin-right: 0%;
  }
  .how-to-videos__right-col:before, .how-to-videos__right-col:after {
    content: '';
    display: table;
  }
  .how-to-videos__right-col:after {
    clear: both;
  }
}
.how-to-videos__video {
  padding-top: 56.25%;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 651px) {
  .how-to-videos__video {
    height: 388px;
  }
}
.how-to-videos__video iframe {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.how-to-videos__description {
  display: none;
  margin: 30px 0;
  padding: 20px 0 10px;
  position: relative;
}
@media screen and (min-width: 651px) {
  .how-to-videos__description {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: block;
  }
  .how-to-videos__description:before {
    content: "+";
    color: #ffffff;
    display: block;
    font-size: 10px;
    left: -4px;
    position: absolute;
    top: -7px;
  }
  .how-to-videos__description:after {
    content: "+";
    color: #ffffff;
    display: block;
    font-size: 10px;
    right: -4px;
    position: absolute;
    top: -7px;
  }
}
.how-to-videos__description__title {
  font-weight: 400;
  font-size: 40px;
  font-size: 40px;
  font-size: 2.5rem;
  font-family: "UnitedSansCond-Medium";
  color: #ffffff;
  text-transform: uppercase;
}
.how-to-videos__description__secondary {
  font-weight: 400;
  font-size: 14px;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "ProximaNovaReg";
  color: #ffffff;
  color: #6f7d82;
}
.how-to-videos__description__text {
  font-weight: 400;
  font-size: 12px;
  font-size: 12px;
  font-size: 0.75rem;
  font-family: "ProximaNovaReg";
  color: #ffffff;
  color: #6f7d82;
}
@media screen and (min-width: 651px) {
  .how-to-videos__playlist {
    height: 388px;
    overflow-y: scroll;
  }
}
.how-to-videos__playlist__header {
  background-color: #1a1a1a;
  height: 85px;
  padding: 15px 20px;
}
@media screen and (min-width: 651px) {
  .how-to-videos__playlist__header {
    height: 100px;
  }
}
.how-to-videos__playlist__header .how-to-videos-playlist-header__title {
  font-weight: 400;
  font-size: 32px;
  font-size: 32px;
  font-size: 2rem;
  font-family: "Proximanova-SemiBold";
  color: #ffffff;
}
@media screen and (min-width: 651px) {
  .how-to-videos__playlist__header .how-to-videos-playlist-header__title {
    font-weight: 400;
    font-size: 16px;
    font-size: 1rem;
    font-family: "Proximanova-SemiBold";
    color: #ffffff;
  }
}
.how-to-videos__playlist__header .how-to-videos-playlist-header__secondary {
  font-weight: 400;
  font-size: 24px;
  font-size: 24px;
  font-size: 1.5rem;
  font-family: "ProximaNovaReg";
  color: #474747;
}
@media screen and (min-width: 651px) {
  .how-to-videos__playlist__header .how-to-videos-playlist-header__secondary {
    font-weight: 400;
    font-size: 12px;
    font-size: 0.75rem;
    font-family: "Proximanova-SemiBold";
    color: #b8b8b8;
  }
}
.how-to-videos__playlist__header .how-to-videos-playlist-header__secondary:after {
  background-color: rgba(255, 255, 255, 0.1);
  display: block;
  content: "";
  height: 1px;
  margin-top: 10px;
  width: 100%;
}
.how-to-videos__playlist__list {
  background: #222222;
  list-style-type: none;
  margin: 0;
  padding-left: 0;
  overflow: hidden;
}
@media screen and (min-width: 651px) {
  .how-to-videos__playlist__list {
    overflow-y: scroll;
    height: 100%;
  }
}
.how-to-videos__playlist__list::-webkit-scrollbar {
  width: 0;
}
@media screen and (min-width: 651px) {
  .how-to-videos__playlist__list::-webkit-scrollbar {
    width: 12px;
  }
}
.how-to-videos__playlist__list::-webkit-scrollbar-track {
  -webkit-box-shadow: none;
  background-color: #434343;
}
.how-to-videos__playlist__list::-webkit-scrollbar-thumb {
  -webkit-box-shadow: none;
  background-color: #8e8e8e;
}
.how-to-videos__playlist__list .how-to-videos-playlist-list__item {
  font-weight: 400;
  font-size: 24px;
  font-size: 24px;
  font-size: 1.5rem;
  font-family: "Proximanova-SemiBold";
  color: #6d6a5b;
  counter-increment: step-counter;
  padding: 10px 10px 10px 30px;
  position: relative;
  vertical-align: middle;
}
@media screen and (min-width: 651px) {
  .how-to-videos__playlist__list .how-to-videos-playlist-list__item {
    font-size: 10px;
    height: 60px;
  }
}
.how-to-videos__playlist__list .how-to-videos-playlist-list__item:before {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  content: counter(step-counter);
  display: inline-block;
  left: 10px;
  margin-right: 5px;
}
.how-to-videos__playlist__list .how-to-videos-playlist-list__item__handle {
  display: block;
  height: 100%;
}
.how-to-videos__playlist__list .how-to-videos-playlist-list__item__thumbnail {
  border: 1px solid #222222;
  display: inline-block;
  height: 24px;
  margin-right: 10px;
  width: 39px;
}
@media screen and (min-width: 651px) {
  .how-to-videos__playlist__list .how-to-videos-playlist-list__item__thumbnail {
    border-width: 2px;
    height: 38px;
    width: 68px;
  }
}
.how-to-videos__playlist__list .how-to-videos-playlist-list__item__thumbnail img {
  display: block;
  height: 100%;
  width: 100%;
}
.how-to-videos__playlist__list .how-to-videos-playlist-list__item__meta {
  display: inline-block;
  vertical-align: top;
}
.how-to-videos__playlist__list .how-to-videos-playlist-list__item__meta .playlist-meta__title {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-weight: 400;
  font-size: 12px;
  font-size: 12px;
  font-size: 0.75rem;
  font-family: "ProximaNova-Bold";
  color: #767676;
}
@media screen and (min-width: 651px) {
  .how-to-videos__playlist__list .how-to-videos-playlist-list__item__meta .playlist-meta__title {
    font-weight: 400;
    font-size: 14px;
    font-size: 0.875rem;
    font-family: "ProximaNova-Bold";
    color: #767676;
  }
}
.how-to-videos__playlist__list .how-to-videos-playlist-list__item__meta .playlist-meta__name {
  font-weight: 400;
  font-size: 10px;
  font-size: 10px;
  font-size: 0.625rem;
  font-family: "ProximaNovaReg";
  color: #767676;
}
@media screen and (min-width: 651px) {
  .how-to-videos__playlist__list .how-to-videos-playlist-list__item__meta .playlist-meta__name {
    font-weight: 400;
    font-size: 14px;
    font-size: 0.875rem;
    font-family: "ProximaNova-Bold";
    color: #767676;
  }
}
.how-to-videos__playlist__list .how-to-videos-playlist-list__item__meta .playlist-meta__description {
  display: none;
}
.how-to-videos__playlist__list .how-to-videos-playlist-list__item--active, .how-to-videos__playlist__list .how-to-videos-playlist-list__item:hover {
  background-color: #3a3a3a;
}
.how-to-videos__playlist__list .how-to-videos-playlist-list__item--active .playlist-meta__title, .how-to-videos__playlist__list .how-to-videos-playlist-list__item:hover .playlist-meta__title {
  color: #cacaca;
}
.how-to-videos__playlist__list .how-to-videos-playlist-list__item--active .how-to-videos-playlist-list__item__thumbnail {
  border-color: #c03636;
}
.how-to-videos__playlist__list .how-to-videos-playlist-list__item--active:before {
  border: 4px solid transparent;
  border-left-color: #c03636;
  content: "";
}

.navigation__link {
  font-size: 14px;
  font-size: 0.875rem;
  margin: 0 15px;
  text-decoration: none;
  text-transform: uppercase;
}
.navigation__link--first {
  margin-left: 0;
}
.navigation__link--last {
  margin-right: 0;
}

.next-page-cta {
  background: #070707;
}
.next-page-cta:before {
  background: url('../img/next.cta.top.mobile.png') repeat-x 0 0 transparent;
  background-size: 320px 10px;
  content: "";
  display: block;
  height: 10px;
  margin-bottom: 20px;
  width: 100%;
}
@media screen and (min-width: 651px) {
  .next-page-cta:before {
    display: none;
  }
}
@media screen and (min-width: 651px) {
  .next-page-cta {
    background: url('../img/challenges.next.png') repeat-x;
    background-position: center;
    width: 100%;
    height: 177px;
    padding-top: 30px;
    z-index: -1;
  }
}
.next-page-cta__headline {
  background: none;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 20px;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 651px) {
  .next-page-cta__headline {
    background: url('../img/challenge/challenge.footer.heading.png') no-repeat 0 0 transparent;
    height: 90px;
    padding: 0 10px;
    width: 608px;
  }
}
.next-page-cta__headline h2 {
  font-size: 26px;
  font-family: "UnitedSansCond-Medium";
  letter-spacing: 1px;
  text-align: center;
}
@media screen and (min-width: 651px) {
  .next-page-cta__headline h2 {
    font-size: 36px;
    line-height: 68px;
    float: left;
    text-align: left;
  }
}
.next-page-cta__headline a {
  display: inline-block;
  font-size: 12px;
}
@media screen and (min-width: 651px) {
  .next-page-cta__headline a {
    float: right;
    display: block;
    font-size: 14px;
    margin-top: 5px;
  }
}

.page-head {
  margin: 0 auto;
  position: relative;
  z-index: 1000;
}
@media screen and (max-width: 650px) {
  .page-head {
    background: #00131d;
    border-bottom: 1px solid #015572;
    height: 50px;
    padding: 10px 10px 8px;
    position: fixed;
    width: 100%;
    z-index: 2000;
  }
}
.page-head__logo {
  background: url('../img/logo.png') no-repeat;
  display: inline;
}
.page-head__hamburger {
  margin-right: 3.5%;
}
.page-head__hamburger img {
  position: relative;
  top: 2px;
  vertical-align: top;
  width: 5%;
}
@media screen and (min-width: 651px) {
  .page-head__hamburger {
    display: none;
  }
}
.page-head__menu {
  bottom: 20px;
  position: absolute;
  right: 0;
}
.page-head__first {
  width: 100%;
  position: absolute;
  margin-top: -120px;
}
@media screen and (min-width: 651px) {
  .page-head__first {
    padding: 0 10px;
  }
}
.page-head__first__cta {
  margin: 0 auto;
  max-width: 1000px;
  position: relative;
}
@media screen and (max-width: 650px) {
  .page-head__first__logo {
    margin-left: 30px;
  }
  .page-head__first__logo img {
    width: 120px;
  }
}
@media screen and (max-width: 650px) {
  .page-head__first {
    margin-top: 0;
    position: inherit;
  }
}
.page-head__cta__download {
  display: inline-block;
  float: right;
  position: relative;
  right: 20px;
  width: 110px;
}
.page-head__cta__download img {
  width: 100%;
}
@media screen and (min-width: 651px) {
  .page-head__cta__download {
    display: none;
  }
}
.page-head__cta__apple {
  position: absolute;
  right: 175px;
  top: 0;
}
@media screen and (max-width: 650px) {
  .page-head__cta__apple {
    display: none;
  }
}
.page-head__cta__google {
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 650px) {
  .page-head__cta__google {
    display: none;
  }
}
.page-head__second {
  background: rgba(24, 24, 24, 0.95);
  height: 100vh;
  left: -10px;
  position: fixed;
  top: 43px;
  width: 105vw;
  z-index: 1000;
}
@media screen and (min-width: 651px) {
  .page-head__second {
    background: transparent;
    height: auto;
    width: 100%;
    position: absolute;
    left: auto;
    margin-top: -40px;
    padding: 0 10px;
    top: auto;
    z-index: 1;
  }
}
.page-head__second.active {
  display: block;
}
.page-head__second__center {
  margin: 0 auto;
  position: relative;
  top: 50px;
}
@media screen and (min-width: 651px) {
  .page-head__second__center {
    max-width: 1000px;
    top: auto;
  }
}
.page-head__second__navigation {
  font-family: "Proximanova-SemiBold";
  letter-spacing: 1px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  text-transform: uppercase;
  width: 100%;
}
@media screen and (min-width: 651px) {
  .page-head__second__navigation {
    float: left;
    font-size: 0.800rem;
    margin: 0;
    padding: 0;
    width: auto;
  }
}
.page-head__second__navigation a {
  display: block;
  padding: 16px 0;
  text-align: center;
}
@media screen and (min-width: 651px) {
  .page-head__second__navigation a {
    display: inline-block;
    margin: 0 15px 0 0;
    padding: 0 0 5px;
    text-align: left;
  }
  .page-head__second__navigation a.current, .page-head__second__navigation a:hover {
    color: #00b0ed;
    border-bottom: 3px solid #00b0ed;
  }
  .page-head__second__navigation a:last-child {
    margin: 0;
  }
}
.page-head__second__social-navigation {
  margin: 0 auto;
  position: relative;
  text-align: center;
  width: 200px;
}
.page-head__second__social-navigation img {
  padding: 0 10px;
}
@media screen and (min-width: 651px) {
  .page-head__second__social-navigation img {
    padding: 0 10px 0 0;
  }
}
@media screen and (min-width: 651px) {
  .page-head__second__social-navigation {
    float: right;
    margin: -4px 0 0 0;
    position: relative;
    text-align: right;
    width: auto;
  }
}
@media screen and (min-width: 651px) and (max-width: 800px) {
  .page-head__second__social-navigation {
    display: none;
  }
}

.page-head__second__language {
  padding: 0 10.63%;
  position: absolute;
  top: -25px;
  width: 100%;
}
@media screen and (min-width: 651px) {
  .page-head__second__language {
    display: block;
    float: right;
    padding: 0;
    position: relative;
    top: auto;
    width: 112px;
  }
}
.page-head__second__language-handle {
  display: block;
  padding: 0 0 11px;
}
.page-head__second__language-handle span {
  background: url('../img/arrow.language-selector.down.png') no-repeat right 4px;
  color: #fff;
  display: block;
  font: 13px/40px "Proximanova-Bold";
  height: 17px;
  line-height: 17px;
  text-transform: uppercase;
}
@media screen and (min-width: 651px) {
  .page-head__second__language-handle span {
    border-left: 1px solid rgba(32, 186, 237, 0.3);
    padding-left: 18px;
  }
}
.page-head__second__language .language-selector {
  background: #000;
  border: 1px solid rgba(32, 186, 237, 0.3);
  display: none;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 651px) {
  .page-head__second__language .language-selector {
    background-color: transparent;
    position: absolute;
    width: 112px;
  }
}
.page-head__second__language .language-selector__item {
  border-top: 1px solid #093341;
  display: block;
  font: 13px/40px "Proximanova-Bold";
  height: 40px;
  letter-spacing: 0.78px;
  text-align: center;
  text-transform: uppercase;
}
.page-head__second__language .language-selector__item:first-child {
  border-top: none;
}
.page-head__second__language .language-selector__item--current, .page-head__second__language .language-selector__item:hover {
  background: #20baed;
  color: #000;
}
.page-head__second__language:hover .page-head__second__language-handle span {
  background-image: url('../img/arrow.language-selector.up.png');
  color: #20baed;
}
.page-head__second__language:hover .language-selector {
  display: block;
}
@media screen and (max-width: 650px) {
  .page-head__second {
    display: none;
  }
}
@media screen and (min-width: 651px) {
  .page-head__heroHeader {
    background: url('../img/home.header.banner.png') no-repeat;
    margin-top: -16px;
    background-position: center;
    height: 150px;
    width: 100%;
    opacity: 0.3;
  }
}

body.active {
  overflow-y: hidden;
}

.menu_toggle {
  position: absolute;
  display: block;
  height: 12.5px;
  width: 20px;
  top: 3px;
  cursor: pointer;
}
@media screen and (min-width: 651px) {
  .menu_toggle {
    display: none;
  }
}
.menu_toggle .bars {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -1.25px;
  display: block;
  width: 20px;
  height: 2.5px;
  background: #fff;
  -o-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.menu_toggle .bars:before, .menu_toggle .bars:after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 2.5px;
  background: #fff;
  -o-transition: linear 0.2s;
  -webkit-transition: linear 0.2s;
  transition: linear 0.2s;
}
.menu_toggle .bars:before {
  top: -5px;
}
.menu_toggle .bars:after {
  bottom: -5px;
}

.active .bars {
  background-color: transparent;
  -o-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.active .bars:before {
  top: 0;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.active .bars:after {
  bottom: 0;
  -ms-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.page-foot {
  background: #181818;
  padding: 0 4%;
}
@media screen and (min-width: 651px) {
  .page-foot {
    height: 115px;
    padding: 0;
  }
}
.page-foot .container--inner {
  padding-bottom: 20px;
  padding-top: 20px;
}
@media screen and (min-width: 651px) {
  .page-foot .container--inner {
    height: 100%;
    padding: 0;
  }
}
.page-foot__logo {
  background: url('../img/footer.logo.jpg') no-repeat;
  background-size: 100% 100%;
  height: 27px;
  width: 100px;
}
@media screen and (min-width: 651px) {
  .page-foot__logo {
    height: 42px;
    left: 0;
    position: absolute;
    top: 23px;
    width: 160px;
  }
}
.page-foot__links {
  border: 1px solid #303030;
  border-width: 1px 0;
  margin: 15px 0;
  padding: 15px 0;
}
@media screen and (min-width: 651px) {
  .page-foot__links {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: none;
    margin: 0;
    padding: 40px 170px 0 230px;
    width: 100%;
  }
}
.page-foot__links a {
  color: #8b8b8b;
  display: block;
  font: 10px/22px "ProximaNovaReg";
  text-transform: uppercase;
}
@media screen and (min-width: 651px) {
  .page-foot__links a {
    float: left;
    font: 14px/14px "ProximaNovaCondensed-SemiBold", Arial;
    margin: 0 7.40741% 0 0;
  }
}
.page-foot__links a:last-child {
  margin-right: 0;
}
.page-foot__find-a-store {
  background: url('../img/footer.find-a-store.mobile.png') no-repeat;
  background-size: 100% 100%;
  font: 100 12px/20px "Proximanova-Bold", Arial;
  height: 20px;
  overflow: hidden;
  position: absolute;
  right: 20px;
  text-align: center;
  text-transform: uppercase;
  top: 25px;
  width: 102px;
}
@media screen and (min-width: 651px) {
  .page-foot__find-a-store {
    background: url('../img/footer.find-a-store.png') no-repeat;
    font-size: 14px;
    line-height: 47px;
    height: 47px;
    right: 0;
    top: 25px;
    width: 144px;
  }
}
.page-foot__copyright {
  color: rgba(139, 139, 139, 0.2);
  font: 9px/9px "ProximaNovaReg";
  text-transform: uppercase;
}
@media screen and (min-width: 651px) {
  .page-foot__copyright {
    color: rgba(139, 139, 139, 0.5);
    font: 14px/14px "ProximaNovaCondensed-SemiBold", Arial;
    margin: 22px 0 0;
    text-transform: none;
  }
}

.hero--challenges {
  background-position: center bottom;
  background-size: 180% auto;
  background-repeat: no-repeat;
  height: 570px;
}
@media screen and (min-width: 651px) {
  .hero--challenges {
    background-position: center;
    background-size: auto;
    height: 905px;
    margin-top: -220px;
    width: 100%;
    z-index: -1;
  }
}
.hero__challenges {
  padding-top: 100px;
}
@media screen and (min-width: 651px) {
  .hero__challenges {
    padding-top: 320px;
  }
}

@media screen and (min-width: 651px) {
  .community-challenge {
    background: url("../img/challenges.black.png") no-repeat;
    background-position: center;
    width: 100%;
    height: 920px;
    z-index: -1;
  }
}

.panel-critics {
  *zoom: 1;
}
.panel-critics:before, .panel-critics:after {
  content: '';
  display: table;
}
.panel-critics:after {
  clear: both;
}
@media screen and (min-width: 651px) {
  .panel-critics {
    background: url('../img/bg.panel.critics.jpg') no-repeat 0 0 transparent;
  }
}
.panel-critics .container--inner {
  padding: 0;
}
@media screen and (min-width: 651px) {
  .panel-critics .container--inner {
    padding: 0 20px;
  }
}
.panel-critics__border {
  background: url('../img/panel-critics.border.mobile.png') repeat-x;
  background-size: auto 100%;
  height: 25px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@media screen and (min-width: 651px) {
  .panel-critics__border {
    display: none;
  }
}
@media screen and (min-width: 651px) {
  .panel-critics__heading {
    font-family: "UnitedSansCond-Medium";
    font-size: 5.3125rem;
    text-align: center;
  }
}
.panel-critics__awards {
  overflow: hidden;
  padding: 0 0 40px;
  position: relative;
}
@media screen and (min-width: 651px) {
  .panel-critics__awards {
    padding: 0;
  }
}
.panel-critics__awards__inner {
  left: 0;
  position: relative;
  -webkit-transition: left 250ms ease-in-out;
  -o-transition: left 250ms ease-in-out;
  transition: left 250ms ease-in-out;
  width: 10000000px;
}
@media screen and (min-width: 651px) {
  .panel-critics__awards__inner {
    left: -15px;
    text-align: center;
    width: auto;
  }
}
.panel-critics__awards[data-number="1"] .panel-critics__awards__inner {
  left: -100vw;
}
@media screen and (min-width: 651px) {
  .panel-critics__awards[data-number="1"] .panel-critics__awards__inner {
    left: 0;
  }
}
.panel-critics__awards[data-number="2"] .panel-critics__awards__inner {
  left: -200vw;
}
@media screen and (min-width: 651px) {
  .panel-critics__awards[data-number="2"] .panel-critics__awards__inner {
    left: 0;
  }
}
.panel-critics__awards[data-number="3"] .panel-critics__awards__inner {
  left: -300vw;
}
@media screen and (min-width: 651px) {
  .panel-critics__awards[data-number="3"] .panel-critics__awards__inner {
    left: 0;
  }
}
.panel-critics__awards[data-number="4"] .panel-critics__awards__inner {
  left: -400vw;
}
@media screen and (min-width: 651px) {
  .panel-critics__awards[data-number="4"] .panel-critics__awards__inner {
    left: 0;
  }
}
.panel-critics__awards[data-number="5"] .panel-critics__awards__inner {
  left: -500vw;
}
@media screen and (min-width: 651px) {
  .panel-critics__awards[data-number="5"] .panel-critics__awards__inner {
    left: 0;
  }
}
.panel-critics__awards[data-number="6"] .panel-critics__awards__inner {
  left: -600vw;
}
@media screen and (min-width: 651px) {
  .panel-critics__awards[data-number="6"] .panel-critics__awards__inner {
    left: 0;
  }
}
.panel-critics__awards[data-number="7"] .panel-critics__awards__inner {
  left: -700vw;
}
@media screen and (min-width: 651px) {
  .panel-critics__awards[data-number="7"] .panel-critics__awards__inner {
    left: 0;
  }
}
.panel-critics__awards[data-number="8"] .panel-critics__awards__inner {
  left: -800vw;
}
@media screen and (min-width: 651px) {
  .panel-critics__awards[data-number="8"] .panel-critics__awards__inner {
    left: 0;
  }
}
.panel-critics__awards[data-number="9"] .panel-critics__awards__inner {
  left: -900vw;
}
@media screen and (min-width: 651px) {
  .panel-critics__awards[data-number="9"] .panel-critics__awards__inner {
    left: 0;
  }
}
.panel-critics__awards[data-number="10"] .panel-critics__awards__inner {
  left: -1000vw;
}
@media screen and (min-width: 651px) {
  .panel-critics__awards[data-number="10"] .panel-critics__awards__inner {
    left: 0;
  }
}
.panel-critics__awards[data-number="11"] .panel-critics__awards__inner {
  left: -1100vw;
}
@media screen and (min-width: 651px) {
  .panel-critics__awards[data-number="11"] .panel-critics__awards__inner {
    left: 0;
  }
}
.panel-critics__awards[data-number="12"] .panel-critics__awards__inner {
  left: -1200vw;
}
@media screen and (min-width: 651px) {
  .panel-critics__awards[data-number="12"] .panel-critics__awards__inner {
    left: 0;
  }
}
.panel-critics__awards[data-number="13"] .panel-critics__awards__inner {
  left: -1300vw;
}
@media screen and (min-width: 651px) {
  .panel-critics__awards[data-number="13"] .panel-critics__awards__inner {
    left: 0;
  }
}
.panel-critics__awards[data-number="14"] .panel-critics__awards__inner {
  left: -1400vw;
}
@media screen and (min-width: 651px) {
  .panel-critics__awards[data-number="14"] .panel-critics__awards__inner {
    left: 0;
  }
}
.panel-critics__awards[data-number="15"] .panel-critics__awards__inner {
  left: -1500vw;
}
@media screen and (min-width: 651px) {
  .panel-critics__awards[data-number="15"] .panel-critics__awards__inner {
    left: 0;
  }
}
.panel-critics__awards[data-number="16"] .panel-critics__awards__inner {
  left: -1600vw;
}
@media screen and (min-width: 651px) {
  .panel-critics__awards[data-number="16"] .panel-critics__awards__inner {
    left: 0;
  }
}
.panel-critics__awards[data-number="17"] .panel-critics__awards__inner {
  left: -1700vw;
}
@media screen and (min-width: 651px) {
  .panel-critics__awards[data-number="17"] .panel-critics__awards__inner {
    left: 0;
  }
}
.panel-critics__awards[data-number="18"] .panel-critics__awards__inner {
  left: -1800vw;
}
@media screen and (min-width: 651px) {
  .panel-critics__awards[data-number="18"] .panel-critics__awards__inner {
    left: 0;
  }
}
.panel-critics__awards[data-number="19"] .panel-critics__awards__inner {
  left: -1900vw;
}
@media screen and (min-width: 651px) {
  .panel-critics__awards[data-number="19"] .panel-critics__awards__inner {
    left: 0;
  }
}
.panel-critics__awards[data-number="20"] .panel-critics__awards__inner {
  left: -2000vw;
}
@media screen and (min-width: 651px) {
  .panel-critics__awards[data-number="20"] .panel-critics__awards__inner {
    left: 0;
  }
}
.panel-critics__awards__item {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  float: left;
  padding: 0 35px;
  width: 100vw;
}
@media screen and (min-width: 651px) {
  .panel-critics__awards__item {
    display: inline-block;
    float: none;
    height: 180px;
    margin: 0 28px 60px;
    padding: 0;
    width: 240px;
  }
  .panel-critics__awards__item:nth-child(3n+1) {
    margin-left: 0;
  }
  .panel-critics__awards__item:nth-child(3n+3) {
    margin-right: 0;
  }
}
.panel-critics__awards__pagination {
  text-align: center;
}
@media screen and (min-width: 651px) {
  .panel-critics__awards__pagination {
    display: none;
  }
}
.panel-critics__awards__pagination__item {
  background: #fff;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  display: inline-block;
  height: 6px;
  opacity: 0.1;
  width: 6px;
}
.panel-critics__awards__pagination__item--current {
  opacity: 0.5;
}
.panel-critics__awards .panel-critics-awards-item__award-logo {
  *zoom: 1;
  background: rgba(0, 0, 0, 0.5);
  height: 143px;
}
.panel-critics__awards .panel-critics-awards-item__award-logo:before, .panel-critics__awards .panel-critics-awards-item__award-logo:after {
  content: '';
  display: table;
}
.panel-critics__awards .panel-critics-awards-item__award-logo:after {
  clear: both;
}
.panel-critics__awards .panel-critics-awards-item__award-logo img {
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 20px 0;
}
.panel-critics__awards .panel-critcs-awards-item__award-name {
  background: #000;
  padding: 10px 0;
  text-align: center;
  font-family: "ProximaNovaReg";
}

.panel-two-ways-to-play {
  margin-bottom: 78px;
  margin-bottom: 78px;
  margin-bottom: 4.875rem;
  position: relative;
}
.panel-two-ways-to-play__smart-ramp img {
  width: 100%;
}
.panel-two-ways-to-play__smart-ramp--desktop {
  display: none;
}
.panel-two-ways-to-play__smart-ramp--mobile {
  display: block;
}
.panel-two-ways-to-play__smart-ramp__heading {
  display: block;
  left: 10.63%;
  position: absolute;
  top: 22%;
}
@media screen and (min-width: 651px) {
  .panel-two-ways-to-play__smart-ramp__heading {
    left: auto;
    padding-bottom: 150px;
    padding-left: 65px;
    padding-top: 60px;
    position: relative;
    top: auto;
  }
}
.panel-two-ways-to-play__smart-ramp--topp {
  color: #a3a3a3;
  font-family: "UnitedSansCond-Light";
  font-size: 13px;
  line-height: 12px;
  position: relative;
}
@media screen and (min-width: 651px) {
  .panel-two-ways-to-play__smart-ramp--topp {
    color: #a3a3a3;
    font-size: 1.500rem;
    line-height: 1.5rem;
  }
}
.panel-two-ways-to-play__smart-ramp--mid {
  font-family: "UnitedSansCond-Light";
  font-size: 27px;
  line-height: 27px;
  position: relative;
}
@media screen and (min-width: 651px) {
  .panel-two-ways-to-play__smart-ramp--mid {
    font-size: 3.500rem;
    line-height: 3.5rem;
  }
}
.panel-two-ways-to-play__smart-ramp--bot {
  background: rgba(0, 0, 0, 0.8);
  color: #a3a3a3;
  display: inline-block;
  font-family: "ProximaNovaReg";
  font-size: 12px;
  line-height: 12px;
  padding-right: 10px;
  position: relative;
  width: 50%;
}
@media screen and (min-width: 651px) {
  .panel-two-ways-to-play__smart-ramp--bot {
    font-size: 0.900rem;
    line-height: 0.9rem;
    width: auto;
  }
}
@media screen and (min-width: 651px) {
  .panel-two-ways-to-play__smart-ramp--desktop {
    display: block;
  }
  .panel-two-ways-to-play__smart-ramp--mobile {
    display: none;
  }
  .panel-two-ways-to-play__smart-ramp img {
    z-index: -1;
    position: absolute;
    width: auto;
  }
}
@media screen and (min-width: 651px) {
  .panel-two-ways-to-play {
    margin-bottom: inherit;
  }
}

.panel-how-rev-works {
  background: -webkit-gradient(linear, left top, left bottom, from(#013246), to(#01151d));
  background: -webkit-linear-gradient(top, #013246, #01151d);
  background: -o-linear-gradient(top, #013246, #01151d);
  background: linear-gradient(to bottom, #013246, #01151d);
  padding: 40px 0;
}
.panel-how-rev-works__headline {
  background: transparent;
}
@media screen and (min-width: 1000px) {
  .panel-how-rev-works__headline {
    background: url('../img/heading.how-rev-works.desktop.png') no-repeat 0 0 transparent;
    height: 137px;
    margin: 0 auto;
    width: 617px;
  }
}
.panel-how-rev-works__headline h1 {
  font-weight: 400;
  font-size: 85px;
  font-size: 85px;
  font-size: 5.3125rem;
  font-family: "UnitedSansCond-Medium";
  color: #FFF;
  margin-bottom: 85px;
  margin-bottom: 85px;
  margin-bottom: 5.3125rem;
}
@media screen and (min-width: 1000px) {
  .panel-how-rev-works__headline h1 {
    font-weight: 400;
    font-size: 85px;
    font-size: 5.3125rem;
    font-family: "UnitedSansCond-Medium";
    color: #FFF;
    margin-bottom: 85px;
    margin-bottom: 5.3125rem;
    padding-top: 16px;
  }
}
.panel-how-rev-works__steps__container {
  padding-top: 85%;
}
@media screen and (min-width: 1000px) {
  .panel-how-rev-works__steps__container {
    margin-top: 295px;
    padding: 0 47px;
  }
}
.panel-how-rev-works__steps__item {
  margin: 0 auto;
  max-width: 400px;
  padding-bottom: 60px;
}
@media screen and (min-width: 1000px) {
  .panel-how-rev-works__steps__item {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 32.66667%;
    margin-left: 0%;
    margin-right: 1%;
    padding-bottom: 20px;
  }
  .panel-how-rev-works__steps__item:before, .panel-how-rev-works__steps__item:after {
    content: '';
    display: table;
  }
  .panel-how-rev-works__steps__item:after {
    clear: both;
  }
  .panel-how-rev-works__steps__item:nth-child(3n) {
    margin-right: 0%;
    float: right;
  }
  .panel-how-rev-works__steps__item:nth-child(3n + 1) {
    clear: both;
  }
}
.panel-how-rev-works__steps__item img {
  width: 100%;
}
.panel-how-rev-works__steps__item--first {
  background: url('../img/how-rev-works.01.mobile.png') no-repeat 0 0 transparent;
  background-size: 100% auto;
  margin-top: -100px;
}
@media screen and (min-width: 1000px) {
  .panel-how-rev-works__steps__item--first {
    background: url('../img/how-rev-works.01.desktop.png') no-repeat center top transparent;
    min-height: 410px;
    margin-top: 0;
  }
}
.panel-how-rev-works__steps__item--first .download-buttons {
  font-size: 0;
  text-align: center;
}
.panel-how-rev-works__steps__item--first .download-buttons a {
  display: inline-block;
  max-width: 130px;
  width: 100%;
}
@media screen and (min-width: 1000px) {
  .panel-how-rev-works__steps__item--first .download-buttons a {
    display: block;
    max-width: 160px;
    width: 100%;
  }
}
.panel-how-rev-works__steps__item--first .download-buttons a:first-of-type {
  margin-right: 10px;
}
@media screen and (min-width: 1000px) {
  .panel-how-rev-works__steps__item--first .download-buttons a:first-of-type {
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.panel-how-rev-works__steps__item--second {
  background: url('../img/how-rev-works.02.mobile.png') no-repeat 0 0 transparent;
  background-size: 100% auto;
}
@media screen and (min-width: 1000px) {
  .panel-how-rev-works__steps__item--second {
    background: url('../img/how-rev-works.02.desktop.png') no-repeat center top transparent;
    min-height: 410px;
  }
}
.panel-how-rev-works__steps__item--third {
  background: url('../img/how-rev-works.03.mobile.png') no-repeat 0 0 transparent;
  background-size: 100% auto;
  margin-top: -100px;
}
@media screen and (min-width: 1000px) {
  .panel-how-rev-works__steps__item--third {
    background: url('../img/how-rev-works.03.desktop.png') no-repeat center top transparent;
    min-height: 410px;
    margin-top: 0;
  }
}
.panel-how-rev-works__steps__counter {
  border-top: 1px solid #00b0ed;
  border-bottom: 1px solid #00b0ed;
  color: #00b0ed;
  display: inline-block;
  font-family: "UnitedSansCond-Light";
  font-size: 18px;
  line-height: 23px;
  margin-right: 10px;
  margin-top: -6px;
  text-align: center;
  width: 13px;
  vertical-align: middle;
}
.panel-how-rev-works__steps__heading {
  color: #ffffff;
  font: 400 25px/25px 'UnitedSansCond-Medium';
  display: inline-block;
}
@media screen and (min-width: 1000px) {
  .panel-how-rev-works__steps__heading {
    font-weight: 400;
    font-size: 28px;
    font-size: 1.75rem;
    font-family: "UnitedSansCond-Medium";
    color: #FFF;
    max-width: 85%;
    vertical-align: top;
  }
}
.panel-how-rev-works__steps__text {
  font: 400 12px/25px 'ProximaNovaThin';
  color: rgba(255, 255, 255, 0.8);
}
@media screen and (min-width: 1000px) {
  .panel-how-rev-works__steps__text {
    font-weight: 400;
    font-size: 14px;
    font-size: 0.875rem;
    font-family: "ProximaNovaThin";
    color: #FFF;
  }
}
.panel-how-rev-works__cta {
  clear: both;
  overflow: hidden;
  padding: 0 10px;
}
@media screen and (min-width: 1000px) {
  .panel-how-rev-works__cta {
    max-width: 990px;
    padding: 0;
  }
}
.panel-how-rev-works__cta:before {
  background: url('../img/how.it.works.banner.top.png') no-repeat center center transparent;
  content: "";
  display: block;
  height: 15px;
  width: 100%;
}
.panel-how-rev-works__cta:after {
  background: url('../img/how.it.works.banner.top.png') no-repeat center center transparent;
  content: "";
  display: block;
  height: 15px;
  width: 100%;
}
.panel-how-rev-works__cta__first {
  overflow: hidden;
  padding-top: 10px;
}
@media screen and (min-width: 1000px) {
  .panel-how-rev-works__cta__first {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 16.66667%;
    margin-left: 0%;
    margin-right: 0%;
    padding-right: 10px;
    padding-top: 25px;
    padding-bottom: 15px;
  }
  .panel-how-rev-works__cta__first:before, .panel-how-rev-works__cta__first:after {
    content: '';
    display: table;
  }
  .panel-how-rev-works__cta__first:after {
    clear: both;
  }
}
.panel-how-rev-works__cta__first h1 {
  display: inline-block;
  font: 400 18px/20px 'UnitedSansCond-Medium';
  float: left;
  color: #ffffff;
  vertical-align: middle;
}
@media screen and (min-width: 1000px) {
  .panel-how-rev-works__cta__first h1 {
    display: block;
    float: none;
    font-size: 31px;
  }
}
.panel-how-rev-works__cta__first a {
  background: url('../img/button.blue.how-rev-works.mobile.png') no-repeat 0 0 transparent;
  background-size: 102px 20px;
  display: inline-block;
  font: 100 12px/20px "Proximanova-Bold", Arial;
  float: right;
  height: 20px;
  margin: 0;
  overflow: hidden;
  text-align: center;
  text-transform: uppercase;
  width: 102px;
  vertical-align: middle;
}
@media screen and (min-width: 1000px) {
  .panel-how-rev-works__cta__first a {
    background: url('../img/button.blue.how-rev-works.desktop.png') no-repeat 0 0 transparent;
    display: block;
    float: none;
    font-size: 14px;
    line-height: 50px;
    margin-top: 10px;
    height: 47px;
    width: 144px;
  }
}
.panel-how-rev-works__cta__content {
  padding-top: 25px;
}
@media screen and (min-width: 1000px) {
  .panel-how-rev-works__cta__content {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 83.33333%;
    margin-left: 0%;
    margin-right: 0%;
    padding-top: 15px;
  }
  .panel-how-rev-works__cta__content:before, .panel-how-rev-works__cta__content:after {
    content: '';
    display: table;
  }
  .panel-how-rev-works__cta__content:after {
    clear: both;
  }
}
.panel-how-rev-works__cta__content p {
  color: #00b0ed;
  font: 400 12px/16px 'ProximaNovaReg';
}
@media screen and (min-width: 1000px) {
  .panel-how-rev-works__cta__content p {
    font-size: 16px;
    line-height: 22px;
  }
}

.panel-challenges {
  display: none;
}
@media screen and (min-width: 651px) {
  .panel-challenges {
    margin-top: -25px;
    background: url('../img/challenges.black.png') no-repeat;
    background-position: center;
    width: 100%;
    height: 900px;
  }
  .panel-challenges--challenge {
    margin-top: -20px;
    background: url('../img/challenges.black.png') no-repeat;
    background-position: center;
    width: 100%;
    height: 920px;
  }
  .panel-challenges__headline {
    background: none;
    padding-top: 50px;
  }
  .panel-challenges__headline h1 {
    margin-top: -110px;
    margin-left: 50px;
  }
  .panel-challenges__header-content {
    float: left;
    width: 690px;
    margin-left: 130px;
  }
  .panel-challenges__header-content p {
    color: #787878;
    font-family: "ProximaNovaReg";
    font-size: 0.800rem;
  }
  .panel-challenges__header-content__battle {
    float: right;
    position: relative;
    margin-top: -80px;
  }
}

.panel-hall-of-fame {
  display: none;
}
@media screen and (min-width: 651px) {
  .panel-hall-of-fame {
    background: url('../img/bg.panel.hall-of-fame.png') no-repeat;
    background-position: center;
    width: 100%;
    height: 550px;
  }
  .panel-hall-of-fame__score__heading {
    margin-top: -280px;
    margin-left: 140px;
  }
  .panel-hall-of-fame__score--topp {
    position: relative;
    letter-spacing: 2px;
    font-size: 2.000rem;
    font-family: "UnitedSansCond-Heavy";
  }
  .panel-hall-of-fame__score--mid {
    position: relative;
    font-size: 4.500rem;
    font-family: "UnitedSansCond-Heavy";
    margin-top: -20px;
  }
  .panel-hall-of-fame__score--mid2 {
    position: relative;
    font-size: 2.000rem;
    font-family: "UnitedSansCond-Heavy";
    margin-top: -80px;
    margin-left: 115px;
    border-top: 2px solid white;
    border-bottom: 2px solid white;
    width: 25px;
  }
  .panel-hall-of-fame__score--bot {
    position: relative;
    font-size: 5.200rem;
    font-family: "UnitedSansCond-Heavy";
    margin-top: -5px;
  }
  .panel-hall-of-fame__leaders {
    margin-top: -200px;
    margin-left: 320px;
    line-height: 25px;
  }
  .panel-hall-of-fame__leaders td:nth-child(1) {
    padding-left: 20px;
    padding-right: 10px;
    font-family: "ProximaNovaReg";
  }
  .panel-hall-of-fame__leaders td:nth-child(2) {
    padding-right: 100px;
    font-family: "ProximaNovaReg";
  }
  .panel-hall-of-fame__leaders td:nth-child(3) {
    font-family: "ProximaNovaReg";
  }
}

@media screen and (max-width: 650px) {
  .panel-critics {
    background: -webkit-gradient(linear, left top, left bottom, from(#51050f), to(#120105));
    background: -webkit-linear-gradient(top, #51050f, #120105);
    background: -o-linear-gradient(top, #51050f, #120105);
    background: linear-gradient(to bottom, #51050f, #120105);
    padding: 45px 0 0;
  }
  .panel-critics__headline {
    background: none;
  }
  .panel-critics__headline img {
    display: none;
  }
}
@media screen and (min-width: 651px) {
  .panel-critics {
    margin-top: -5px;
    background: url('../img/bg.panel.critics.png') no-repeat;
    background-position: center;
    width: 100%;
    height: 790px;
  }
  .panel-critics__headline {
    background: none;
    padding-top: 50px;
  }
  .panel-critics__headline img {
    margin-top: 30px;
  }
  .panel-critics__headline h1 {
    letter-spacing: 1.5px;
    margin-top: -110px;
    padding-bottom: 30px;
  }
  .panel-critics__awards {
    margin-left: 50px;
  }
}
@media screen and (min-width: 651px) and (min-width: 651px) {
  .panel-critics__awards {
    margin-left: 28px;
  }
}

.panel-ch-page--change {
  margin-top: -100px;
  background: url('../img/bg.panel.challenges.completed.jpg') no-repeat;
  background-position: center;
  width: 100%;
  height: 700px;
}
.panel-ch-page__headline {
  background: none;
  padding-top: 50px;
}
.panel-ch-page__headline h1 {
  margin-top: -110px;
  margin-left: 10px;
}
.panel-ch-page__steps {
  width: 1500px;
  margin-left: -50px;
}
.panel-ch-page__steps__item {
  display: inline;
  padding: 0 20px;
}
.panel-ch-page__steps__item--character {
  padding-right: 50px;
}
.panel-ch-page__steps__item--weapon {
  padding-right: 50px;
}
.panel-ch-page__steps__title {
  width: 1200px;
  letter-spacing: 1px;
  position: absolute;
  margin-top: -123px;
  margin-left: 12px;
}
.panel-ch-page__steps__title h1 {
  display: inline;
  position: relative;
  font-size: 38px;
  font-size: 2.400rem;
  font-family: "UnitedSansCond-Medium";
}
.panel-ch-page__steps__title--character {
  padding-right: 150px;
}
.panel-ch-page__steps__title--weapon {
  padding-right: 170px;
}
.panel-ch-page__steps__sub {
  width: 1200px;
  position: absolute;
  margin-top: -85px;
  margin-left: -10px;
  display: inline;
  color: #6f7d82;
}
.panel-ch-page__steps__sub p {
  display: inline;
  float: left;
  position: relative;
  font-size: 12px;
  font-size: 0.800rem;
}
.panel-ch-page__steps__sub--character p {
  position: relative;
  padding-right: 148px;
}
.panel-ch-page__steps__sub--weapon p {
  position: relative;
  padding-right: 160px;
}

.panel-how-rev-works__steps__title--download-extra {
  font-family: "UnitedSansCond-Light";
  font-size: 28px;
  font-size: 1.800rem;
  position: absolute;
  top: 28px;
  text-transform: uppercase;
}

.panel-introducing-rev {
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 17%;
  width: 220px;
}
.panel-introducing-rev__title-overlay {
  color: #ffffff;
  font: 200 14px/22px "UnitedSansCond-Medium";
  text-align: left;
}
.panel-introducing-rev__title-overlay__content img {
  display: block;
  width: 100%;
}
@media screen and (min-width: 651px) {
  .panel-introducing-rev__title-overlay__content {
    display: none;
  }
}

.revtech-device-pairing {
  background: url('../img/revtech.pairingbg.mobile.jpg') no-repeat;
  background-size: 100% auto;
  background-position: top center;
  padding-bottom: 40px;
  padding-top: 40px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .revtech-device-pairing {
    background: url('../img/bg.steps.png') no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    min-height: 750px;
    z-index: -1;
  }
}
.revtech-device-pairing:before {
  background: url('../img/revtech.section-top.blue.png') repeat-x 0 0 transparent;
  content: "";
  height: 22px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .revtech-device-pairing:before {
    display: none !important;
  }
}
.revtech-device-pairing .container--inner {
  padding: 0 10px;
}
@media screen and (min-width: 768px) {
  .revtech-device-pairing .container--inner {
    max-width: 965px;
    width: auto;
  }
}
.revtech-device-pairing__header {
  margin: 0 auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .revtech-device-pairing__header {
    background: url('../img/revtech.device-pairing.header.bg.desktop.png') no-repeat top center transparent;
    height: 147px;
    margin-bottom: 20px;
    margin-top: 40px;
    max-width: 965px;
    padding-top: 17px;
  }
}
.revtech-device-pairing__header h1 {
  color: #ffffff;
  font: 400 43px/50px 'UnitedSansCond-Medium';
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  .revtech-device-pairing__header h1 {
    font-size: 5.000rem;
    font-family: "UnitedSansCond-Medium";
    line-height: inherit;
  }
}
.revtech-device-pairing__content-wrapper {
  overflow: hidden;
  padding: 0 10.63%;
}
@media screen and (min-width: 768px) {
  .revtech-device-pairing__content-wrapper {
    padding: 0;
  }
}
.revtech-device-pairing__first p {
  color: #80abb9;
  font: 400 12px/15px 'ProximaNovaReg';
  text-align: left;
}
@media screen and (min-width: 768px) {
  .revtech-device-pairing__first p {
    color: #787878;
    font-family: "ProximaNovaReg";
    font-size: 0.800rem;
    max-width: 370px;
  }
}
@media screen and (min-width: 768px) {
  .revtech-device-pairing__first {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 50%;
    margin-left: 0%;
    margin-right: 0%;
    overflow: hidden;
    padding-right: 20px;
  }
  .revtech-device-pairing__first:before, .revtech-device-pairing__first:after {
    content: '';
    display: table;
  }
  .revtech-device-pairing__first:after {
    clear: both;
  }
}
.revtech-device-pairing__first img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .revtech-device-pairing__first img {
    display: block;
    margin: 0 auto;
    max-width: 360px;
  }
}
.revtech-device-pairing__last {
  position: relative;
}
@media screen and (min-width: 768px) {
  .revtech-device-pairing__last {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 50%;
    margin-left: 0%;
    margin-right: 0%;
    float: right;
    height: 0;
    padding-bottom: 45%;
  }
  .revtech-device-pairing__last:before, .revtech-device-pairing__last:after {
    content: '';
    display: table;
  }
  .revtech-device-pairing__last:after {
    clear: both;
  }
}
.revtech-device-pairing__last iframe {
  display: block;
  min-height: 240px;
  margin: 0 auto;
  position: static;
  width: 100% px;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .revtech-device-pairing__last iframe {
    height: 100%;
    max-width: 425px;
    position: absolute;
    right: 0;
    width: 100%;
  }
}

.revtech-smart-controller {
  background: -webkit-gradient(linear, left top, left bottom, from(#4f010d), to(#150105));
  background: -webkit-linear-gradient(top, #4f010d 45%, #150105);
  background: -o-linear-gradient(top, #4f010d 45%, #150105);
  background: linear-gradient(to bottom, #4f010d 45%, #150105);
  padding-top: 40px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .revtech-smart-controller {
    padding-top: 40px;
  }
}
.revtech-smart-controller:before {
  background: url('../img/revtech.section-top.red.png') repeat-x 0 0 transparent;
  content: "";
  height: 22px;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .revtech-smart-controller:before {
    display: none !important;
  }
}
.revtech-smart-controller__header {
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .revtech-smart-controller__header {
    margin: 40px auto;
  }
}
.revtech-smart-controller__content {
  overflow: hidden;
  position: relative;
}
.revtech-smart-controller__content:before {
  background: url('../img/sperater.with-pluses.red.png') no-repeat center center transparent;
  content: "";
  display: none;
  height: 6px;
  width: 965px;
}
@media screen and (min-width: 768px) {
  .revtech-smart-controller__content:before {
    display: block;
  }
}
.revtech-smart-controller__content:after {
  background: url('../img/sperater.with-pluses.red.png') no-repeat center center transparent;
  clear: both;
  content: "";
  display: none;
  height: 6px;
  width: 965px;
}
@media screen and (min-width: 768px) {
  .revtech-smart-controller__content:after {
    display: block;
  }
}
.revtech-smart-controller__content__first {
  padding: 10px 10.63%;
}
@media screen and (min-width: 768px) {
  .revtech-smart-controller__content__first {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 50%;
    margin-left: 0%;
    margin-right: 0%;
    padding: 10px 20px;
  }
  .revtech-smart-controller__content__first:before, .revtech-smart-controller__content__first:after {
    content: '';
    display: table;
  }
  .revtech-smart-controller__content__first:after {
    clear: both;
  }
}
.revtech-smart-controller__content__first p {
  color: #a78086;
  font: 400 12px/13px 'ProximaNovaReg';
  margin: 0;
  text-align: center;
  padding: 0;
}
@media screen and (min-width: 768px) {
  .revtech-smart-controller__content__first p {
    color: white;
    font-size: 0.800rem;
    text-align: left;
  }
}
.revtech-smart-controller__content__last {
  padding: 10px 0;
}
@media screen and (min-width: 768px) {
  .revtech-smart-controller__content__last {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 50%;
    margin-left: 0%;
    margin-right: 0%;
    height: 100%;
    padding: 10px 7px 10px 20px;
    position: absolute;
    right: 0;
  }
  .revtech-smart-controller__content__last:before, .revtech-smart-controller__content__last:after {
    content: '';
    display: table;
  }
  .revtech-smart-controller__content__last:after {
    clear: both;
  }
}
.revtech-smart-controller__content__last .app-download-ctas {
  font-size: 0;
  padding: 0 10.63%;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .revtech-smart-controller__content__last .app-download-ctas {
    padding: 0;
    top: 50%;
    text-align: right;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
.revtech-smart-controller__content__last .app-download-ctas a {
  display: inline-block;
  margin-right: 4%;
  max-width: 160px;
  width: 48%;
}
.revtech-smart-controller__content__last .app-download-ctas a:last-of-type {
  margin-right: 0;
}
.revtech-smart-controller__content__last .app-download-ctas a img {
  width: 100%;
}
.revtech-smart-controller__phone-display {
  position: relative;
  margin: 30px auto 40px;
  width: 86%;
}
@media screen and (min-width: 768px) {
  .revtech-smart-controller__phone-display {
    height: 256px;
    margin: 60px auto;
    position: relative;
    width: 555px;
  }
}
.revtech-smart-controller__phone-display iframe {
  height: 92%;
  left: 8.5%;
  position: absolute;
  top: 4%;
  width: 81%;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .revtech-smart-controller__phone-display iframe {
    left: 47px;
    top: 12px;
  }
}
.revtech-smart-controller__phone-display img {
  width: 100%;
  opacity: 0.4;
}

.panel-revtech__feature {
  font: 400 18px/30px "UnitedSansCond-Medium";
  text-transform: uppercase;
  text-align: center;
}
.panel-revtech__feature--red {
  color: #cb070a;
}
.panel-revtech__feature--blue {
  color: #00b5f8;
}
@media screen and (min-width: 768px) {
  .panel-revtech__feature {
    display: none;
  }
}
.panel-revtech__headline {
  font-size: 42px;
  line-height: 55px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .panel-revtech__headline {
    text-align: left;
  }
}
.panel-revtech__mobile-beaconsense {
  display: block;
  height: 40px;
  margin-top: -80px;
  position: absolute;
  right: 20px;
  width: 70px;
}
@media screen and (min-width: 768px) {
  .panel-revtech__mobile-beaconsense {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .panel-revtech--mobile {
    width: 100%;
  }
  .panel-revtech--revtech {
    background: url('../img/revtech.pairingbg.mobile.jpg') no-repeat;
    background-size: 100% auto;
    background-position: top center;
  }
  .panel-revtech--revtech .container--inner {
    padding: 0;
  }
  .panel-revtech--app {
    background: -webkit-gradient(linear, left top, left bottom, from(#4f010d), to(#150105));
    background: -webkit-linear-gradient(top, #4f010d 45%, #150105);
    background: -o-linear-gradient(top, #4f010d 45%, #150105);
    background: linear-gradient(to bottom, #4f010d 45%, #150105);
    padding-bottom: 5%;
  }
  .panel-revtech--self {
    background: -webkit-gradient(linear, left top, left bottom, from(#40010a), to(#150105));
    background: -webkit-linear-gradient(top, #40010a 45%, #150105);
    background: -o-linear-gradient(top, #40010a 45%, #150105);
    background: linear-gradient(to bottom, #40010a 45%, #150105);
    padding-bottom: 5%;
    padding-top: 40px;
    position: relative;
  }
  .panel-revtech--self:before {
    background: url('../img/revtech.section-top.red.png') repeat-x 0 0 transparent;
    content: "";
    height: 22px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }
}
@media screen and (max-width: 768px) and (min-width: 768px) {
  .panel-revtech--self:before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .panel-revtech--situational {
    background: -webkit-gradient(linear, left top, left bottom, from(#001116), to(#000000));
    background: -webkit-linear-gradient(top, #001116 11%, #000000);
    background: -o-linear-gradient(top, #001116 11%, #000000);
    background: linear-gradient(to bottom, #001116 11%, #000000);
    padding-bottom: 5%;
    padding-top: 40px;
    position: relative;
  }
  .panel-revtech--situational:before {
    background: url('../img/revtech.section-top.blue.png') repeat-x 0 0 transparent;
    content: "";
    height: 22px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }
}
@media screen and (max-width: 768px) and (min-width: 768px) {
  .panel-revtech--situational:before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .panel-revtech--realtime {
    background: -webkit-gradient(linear, left top, left bottom, from(#4f010d), to(#000000));
    background: -webkit-linear-gradient(top, #4f010d -13%, #000000);
    background: -o-linear-gradient(top, #4f010d -13%, #000000);
    background: linear-gradient(to bottom, #4f010d -13%, #000000);
    padding-bottom: 5%;
    padding-top: 40px;
    position: relative;
  }
  .panel-revtech--realtime:before {
    background: url('../img/revtech.section-top.red.png') repeat-x 0 0 transparent;
    content: "";
    height: 22px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }
}
@media screen and (max-width: 768px) and (min-width: 768px) {
  .panel-revtech--realtime:before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .panel-revtech--simulated {
    background: -webkit-gradient(linear, left top, left bottom, from(#002b3a), to(#000000));
    background: -webkit-linear-gradient(top, #002b3a -39%, #000000);
    background: -o-linear-gradient(top, #002b3a -39%, #000000);
    background: linear-gradient(to bottom, #002b3a -39%, #000000);
    padding-top: 40px;
    position: relative;
  }
  .panel-revtech--simulated:before {
    background: url('../img/revtech.section-top.blue.png') repeat-x 0 0 transparent;
    content: "";
    height: 22px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }
}
@media screen and (max-width: 768px) and (min-width: 768px) {
  .panel-revtech--simulated:before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .panel-revtech__iphone {
    width: 86%;
    position: relative;
    margin: 0 auto 15%;
  }
  .panel-revtech__iphone iframe {
    height: 92%;
    left: 8.5%;
    position: absolute;
    top: 4%;
    width: 81%;
  }
  .panel-revtech__iphone img {
    width: 100%;
  }
  .panel-revtech__header-content__device {
    text-align: center;
  }
  .panel-revtech__header-content__device p {
    color: #80abb9;
    font: 400 12px/16px 'ProximaNovaReg';
    padding: 0 10.63%;
    text-align: left;
  }
  .panel-revtech__header-content__car {
    padding: 0 10.63%;
  }
  .panel-revtech__header-content__car img {
    width: 100%;
  }
  .panel-revtech__header-content__car img:first-of-type {
    display: none;
  }
  .panel-revtech__header-content__vine {
    width: 320px;
    height: 320px;
    margin: 0 auto 10%;
  }
  .panel-revtech__header-content__app p {
    color: #a78086;
    font: 400 12px/16px 'ProximaNovaReg';
    width: 78%;
    margin: 0 auto 5%;
  }
  .panel-revtech__header-content__apptext {
    display: none;
  }
  .panel-revtech__header-content--cta {
    text-align: center;
    margin-bottom: 10%;
  }
  .panel-revtech__header-content__self p, .panel-revtech__header-content__situational p, .panel-revtech__header-content__realtime p, .panel-revtech__header-content__simulated p {
    color: rgba(255, 255, 255, 0.5);
    font: 400 12px/16px 'ProximaNovaReg';
    width: 78%;
    margin: 0 auto 8%;
    text-align: center;
  }
  .panel-revtech__header-content__situational p {
    margin-left: 4.5%;
    text-align: left;
    width: 65%;
  }
}
@media screen and (min-width: 768px) {
  .panel-revtech--self {
    background: url('../img/revtech.self.bg.png') no-repeat;
    background-position: center;
    width: 100%;
    height: 500px;
    z-index: -1;
  }
}
@media screen and (min-width: 985px) {
  .panel-revtech--self .container--inner {
    max-width: 1200px;
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .panel-revtech--situational {
    margin-top: 0px;
    background: url('../img/revtech.situation.bg.png') no-repeat;
    background-position: center;
    width: 100%;
    height: 530px;
    z-index: -1;
  }
}
@media screen and (min-width: 985px) {
  .panel-revtech--situational .container--inner {
    max-width: 1200px;
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .panel-revtech--realtime {
    margin-top: 0px;
    background: url('../img/revtech.realtime.bg.png') no-repeat;
    background-position: center;
    width: 100%;
    height: 500px;
    z-index: -1;
  }
}
@media screen and (min-width: 985px) {
  .panel-revtech--realtime .container--inner {
    max-width: 1200px;
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .panel-revtech--simulated {
    margin-top: 0px;
    background: url('../img/revtech.simulate.bg.png') no-repeat;
    background-position: center;
    width: 100%;
    height: 515px;
    z-index: -1;
  }
}
@media screen and (min-width: 985px) {
  .panel-revtech--simulated .container--inner {
    max-width: 1200px;
    padding: 0;
  }
}
@media screen and (min-width: 768px) {
  .panel-revtech--mobile {
    display: none;
  }
  .panel-revtech--revtech {
    margin-top: -20px;
    background: url('../img/bg.steps.png') no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    min-height: 750px;
    z-index: -1;
  }
  .panel-revtech--revtech .container--inner {
    max-width: 965px;
    width: auto;
  }
  .panel-revtech--app {
    background: url('../img/revtech.app.bg.png') no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 800px;
    z-index: -1;
  }
}
@media screen and (min-width: 768px) and (max-width: 768px) {
  .panel-revtech--app {
    background-size: cover;
    height: 1000px;
  }
}
@media screen and (min-width: 768px) {
  .panel-revtech__headline {
    background: none;
    margin-top: 60px;
  }
}
@media screen and (min-width: 768px) and (max-width: 965px) {
  .panel-revtech__headline--device-testing {
    padding-top: 154px;
    position: relative;
  }
  .panel-revtech__headline--device-testing img {
    position: absolute;
    left: 50%;
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 30px;
  }
}
@media screen and (min-width: 768px) {
  .panel-revtech__headline--apptitle h1 {
    margin-top: -103px;
    margin-left: -110px;
  }
}
@media screen and (min-width: 768px) and (max-width: 965px) {
  .panel-revtech__headline--apptitle {
    padding-top: 281px;
    position: relative;
  }
  .panel-revtech__headline--apptitle img {
    position: absolute;
    left: 50%;
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    top: 160px;
  }
}
@media screen and (min-width: 768px) {
  .panel-revtech__headline--selftitle {
    background: url('../img/revtech.self.header.bg.png') no-repeat 0 0 transparent;
    height: 123px;
    padding-top: 16px;
    width: 602px;
  }
  .panel-revtech__headline--selftitle h1 {
    text-align: right;
  }
  .panel-revtech__headline--situationaltitle {
    background: url('../img/revtech.situation.header.bg.png') no-repeat 0 0 transparent;
    height: 200px;
    line-height: 70px;
    position: absolute;
    right: 0;
    width: 604px;
  }
  .panel-revtech__headline--situationaltitle h1 {
    padding-left: 7px;
    padding-top: 40px;
  }
  .panel-revtech__headline--realtimetitle {
    background: url('../img/revtech.realtime.header.bg.png') no-repeat 0 0 transparent;
    height: 200px;
    width: 604px;
  }
  .panel-revtech__headline--realtimetitle h1 {
    line-height: 4.5rem;
    padding-top: 40px;
    text-align: right;
  }
  .panel-revtech__headline--simulatedtitle {
    background: url('../img/revtech.simulated.header.bg.png') no-repeat 0 0 transparent;
    position: absolute;
    margin-top: 100px;
    right: 0;
    height: 219px;
    width: 604px;
  }
  .panel-revtech__headline--simulatedtitle h1 {
    line-height: 4.5rem;
    padding-left: 7px;
    padding-top: 40px;
  }
  .panel-revtech__iphone {
    width: 555px;
    height: 256px;
    position: relative;
    margin: 60px auto 0;
  }
  .panel-revtech__iphone iframe {
    position: absolute;
    left: 47px;
    top: 12px;
  }
  .panel-revtech__header-content__device {
    height: 500px;
    width: 465px;
    float: left;
    position: relative;
  }
}
@media screen and (min-width: 768px) and (max-width: 910px) {
  .panel-revtech__header-content__device {
    float: none;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 910px) {
  .panel-revtech__header-content__device p {
    margin: 0 auto;
    text-align: center;
    width: 400px !important;
  }
}
@media screen and (min-width: 768px) {
  .panel-revtech__header-content p {
    color: #787878;
    font-family: "ProximaNovaReg";
    font-size: 0.800rem;
    padding-top: 50px;
    width: 370px;
  }
  .panel-revtech__header-content__car {
    position: absolute;
    top: 40px;
  }
  .panel-revtech__header-content__vine {
    float: right;
    height: 422px;
    width: 425px;
    margin-top: 47px;
  }
}
@media screen and (min-width: 768px) and (max-width: 910px) {
  .panel-revtech__header-content__vine {
    float: none;
    margin: 0 auto 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 768px) {
  .panel-revtech__header-content__apptext {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .panel-revtech__header-content__app p {
    color: white;
    font-family: "ProximaNovaReg";
    font-size: 0.800rem;
    margin-top: -145px;
    padding-left: 15px;
    width: 390px;
  }
}
@media screen and (min-width: 768px) and (max-width: 768px) {
  .panel-revtech__header-content__app p {
    padding-right: 15px;
    margin: 0 auto;
    text-align: center;
    width: 400px;
  }
}
@media screen and (min-width: 768px) {
  .panel-revtech__header-content--cta {
    float: right;
    position: absolute;
    margin-top: -70px;
    padding-right: 15px;
    text-align: right;
    width: 100%;
  }
  .panel-revtech__header-content--cta a {
    display: inline-block;
    margin: 0 6px 0 0;
  }
  .panel-revtech__header-content--cta a:last-child {
    margin: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 768px) {
  .panel-revtech__header-content--cta {
    float: none;
    margin-top: 0;
    position: relative;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .panel-revtech__header-content--phone {
    padding-top: 50px;
    display: block;
    width: 300px;
    margin: 0 auto;
  }
  .panel-revtech__header-content__self {
    width: 500px;
    padding: 0 10px;
  }
  .panel-revtech__header-content__self p {
    color: #787878;
    font-family: "ProximaNovaReg";
    font-size: 0.800rem;
    margin-top: -230px;
    margin-left: 10px;
  }
  .panel-revtech__header-content__self img {
    margin-left: -10px;
  }
  .panel-revtech__header-content__situational {
    float: right;
  }
  .panel-revtech__header-content__situational p {
    position: absolute;
    color: #787878;
    font-family: "ProximaNovaReg";
    font-size: 0.800rem;
    margin-top: -235px;
    margin-left: 230px;
  }
  .panel-revtech__header-content__situational img {
    margin-left: 200px;
    margin-top: 170px;
  }
  .panel-revtech__header-content__realtime {
    width: 500px;
    padding: 0 10px;
  }
  .panel-revtech__header-content__realtime p {
    color: #787878;
    font-family: "ProximaNovaReg";
    font-size: 0.800rem;
    margin-top: -230px;
    margin-left: 30px;
  }
  .panel-revtech__header-content__realtime img {
    margin-left: -10px;
  }
  .panel-revtech__header-content__simulated {
    float: right;
  }
  .panel-revtech__header-content__simulated p {
    position: absolute;
    color: #787878;
    font-family: "ProximaNovaReg";
    font-size: 0.800rem;
    margin-top: -140px;
    margin-left: 230px;
    padding-top: 0;
  }
  .panel-revtech__header-content__simulated img {
    margin-left: 200px;
    margin-top: 250px;
  }
}

.panel-battles--modes {
  background: #00162e;
  /* Old browsers */
  /* IE9 SVG, needs conditional override of 'filter' to 'none' */
  background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMTYyZSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDBiMTgiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #00162e), color-stop(100%, #000b18));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #00162e 0%, #000b18 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #00162e 0%, #000b18 100%);
  /* IE10+ */
  background: -webkit-gradient(linear, left top, left bottom, from(#00162e), to(#000b18));
  /* IE10+ */
  background: linear-gradient(to bottom, #00162e 0%, #000b18 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00162e', endColorstr='#000b18',GradientType=0 );
  /* IE6-8 */
  margin-top: 0px;
  background-position: center;
  width: 100%;
  height: 1200px;
  z-index: -1;
}
@media screen and (min-width: 651px) {
  .panel-battles--modes {
    background: url('../img/battles.modes.bg.png') no-repeat;
  }
}
.panel-battles--weapons {
  margin-top: 0px;
  background: url('../img/battles.weapons.bg.png') no-repeat;
  background-position: center;
  width: 100%;
  height: 640px;
  z-index: -1;
}
.panel-battles--smart {
  margin-top: 0px;
  background: url('../img/battles.smart.bg.png') no-repeat;
  background-position: center;
  width: 100%;
  height: 675px;
  z-index: -1;
}
.panel-battles__headline {
  background: none;
  padding-top: 50px;
}
.panel-battles__headline h1 {
  margin-top: -110px;
  margin-left: 50px;
}
.panel-battles__headline--apptitle {
  padding-top: 150px;
}
.panel-battles__headline--apptitle h1 {
  margin-top: -103px;
  margin-left: -110px;
}
.panel-battles__headline--selftitle {
  padding-left: 0px;
  padding-top: 150px;
}
.panel-battles__headline--selftitle img {
  margin-top: -100px;
  margin-left: -150px;
}
.panel-battles__headline--selftitle h1 {
  margin-top: -103px;
  margin-left: 130px;
}
.panel-battles__headline--situationaltitle {
  float: right;
  position: absolute;
  margin-top: 100px;
  margin-left: 440px;
  line-height: 70px;
}
.panel-battles__headline--situationaltitle img {
  position: absolute;
  margin-top: -100px;
  margin-left: 50px;
}
.panel-battles__headline--situationaltitle h1 {
  margin-top: -65px;
  margin-right: 150px;
}
.panel-battles__headline--realtimetitle {
  padding-left: 0px;
  padding-top: 150px;
}
.panel-battles__headline--realtimetitle img {
  margin-top: -100px;
  margin-left: -150px;
}
.panel-battles__headline--realtimetitle h1 {
  margin-top: -180px;
  margin-left: -70px;
}
.panel-battles__headline--realtimetitle--real {
  padding-bottom: 140px;
  padding-left: 275px;
}
.panel-battles__headline--simulatedtitle {
  float: right;
  width: 700px;
  position: absolute;
  margin-top: 100px;
  margin-left: 440px;
  line-height: 70px;
}
.panel-battles__headline--simulatedtitle img {
  position: absolute;
  margin-top: -100px;
  margin-left: 50px;
}
.panel-battles__headline--simulatedtitle h1 {
  margin-top: -62px;
  margin-right: 10px;
}
.panel-battles__headline--simulatedtitle--vehicle {
  padding-bottom: 68px;
}
.panel-battles__header-content {
  float: left;
  width: 690px;
}
.panel-battles__header-content p {
  color: #787878;
  font-family: "ProximaNovaReg";
  font-size: 12px;
  font-size: 0.800rem;
  padding-top: 50px;
}
.panel-battles__header-content__car {
  position: relative;
  margin-top: -100px;
  display: inline-block;
}
.panel-battles__header-content iframe {
  float: left;
  position: absolute;
  margin-top: -50px;
  margin-left: 100px;
}
.panel-battles__header-content__app p {
  color: white;
  font-family: "ProximaNovaReg";
  font-size: 12px;
  font-size: 0.800rem;
  margin-top: -145px;
}
.panel-battles__header-content__app__phone {
  position: relative;
  margin-top: -50px;
  display: inline-block;
}
.panel-battles__header-content__app iframe {
  float: left;
  position: absolute;
  margin-top: 70px;
  margin-left: 250px;
}
.panel-battles__header-content--cta {
  float: right;
  position: absolute;
  margin-top: -70px;
  margin-left: 595px;
}
.panel-battles__header-content--cta img {
  padding-right: 10px;
}
.panel-battles__header-content--phone {
  padding-top: 50px;
  display: block;
  width: 300px;
  margin: 0 auto;
}
.panel-battles__header-content__self {
  width: 500px;
  padding: 0 10px;
}
.panel-battles__header-content__self p {
  color: #787878;
  font-family: "ProximaNovaReg";
  font-size: 12px;
  font-size: 0.800rem;
  margin-top: -230px;
  margin-left: 10px;
}
.panel-battles__header-content__self img {
  margin-left: -10px;
}
.panel-battles__header-content__situational {
  float: right;
  width: 500px;
  padding: 0 10px;
}
.panel-battles__header-content__situational p {
  position: absolute;
  color: #787878;
  font-family: "ProximaNovaReg";
  font-size: 12px;
  font-size: 0.800rem;
  margin-top: -250px;
  margin-left: 280px;
}
.panel-battles__header-content__situational img {
  margin-left: 250px;
  margin-top: 170px;
}
.panel-battles__header-content__realtime {
  width: 500px;
  padding: 0 10px;
}
.panel-battles__header-content__realtime p {
  color: #787878;
  font-family: "ProximaNovaReg";
  font-size: 12px;
  font-size: 0.800rem;
  margin-top: -230px;
  margin-left: 10px;
}
.panel-battles__header-content__realtime img {
  margin-left: -10px;
}
.panel-battles__header-content__simulated {
  float: right;
  width: 500px;
  padding: 0 10px;
}
.panel-battles__header-content__simulated p {
  position: absolute;
  color: #787878;
  font-family: "ProximaNovaReg";
  font-size: 12px;
  font-size: 0.800rem;
  margin-top: -250px;
  margin-left: 300px;
}
.panel-battles__header-content__simulated img {
  margin-left: 250px;
  margin-top: 250px;
}

.retail-locations {
  background: url('../img/bg.drivers.rev-bosses.mobile.jpg') no-repeat center top #000000;
  background-size: 100% auto;
  padding: 60px 0 70px;
}
@media screen and (min-width: 651px) {
  .retail-locations {
    background: url('../img/bg.get-rev.retail-locations.jpg') no-repeat center top #3b0003;
    padding: 60px 0 22px;
  }
}
.retail-locations__header__headline {
  font-weight: 400;
  font-size: 85px;
  font-size: 85px;
  font-size: 5.3125rem;
  font-family: "UnitedSansCond-Medium";
  color: #ffffff;
  text-align: center;
}
@media screen and (min-width: 651px) {
  .retail-locations__header__headline {
    background: url('../img/heading.bg.panel.retail-locations.png') no-repeat 0 0 transparent;
    height: 124px;
    margin: 0 auto;
    padding-top: 15px;
    width: 690px;
  }
}
.retail-locations__header__text {
  font-weight: 400;
  font-size: 24px;
  font-size: 24px;
  font-size: 1.5rem;
  font-family: "ProximaNovaReg";
  color: #ffffff;
  color: #6f7d82;
  padding: 10px 0;
}
@media screen and (min-width: 651px) {
  .retail-locations__header__text {
    font-weight: 400;
    font-size: 14px;
    font-size: 0.875rem;
    font-family: "ProximaNovaReg";
    color: #ffffff;
    margin: 0 auto;
    width: 690px;
  }
}
.retail-locations__store-list {
  list-style-type: none;
  overflow: hidden;
  margin: 0;
  padding: 20px 0 0;
}
@media screen and (min-width: 651px) {
  .retail-locations__store-list {
    padding: 30px 0 20px;
  }
}
.retail-locations__store-list__item {
  *zoom: 1;
  float: left;
  clear: none;
  text-align: inherit;
  width: 48.5%;
  margin-left: 0%;
  margin-right: 3%;
  background: url('../img/asset.retail-location.ring.2x.png') no-repeat center center transparent;
  background-size: 140px 145px;
  height: 145px;
  position: relative;
}
.retail-locations__store-list__item:before, .retail-locations__store-list__item:after {
  content: '';
  display: table;
}
.retail-locations__store-list__item:after {
  clear: both;
}
.retail-locations__store-list__item:nth-child(2n) {
  margin-right: 0%;
  float: right;
}
.retail-locations__store-list__item:nth-child(2n + 1) {
  clear: both;
}
@media screen and (min-width: 651px) {
  .retail-locations__store-list__item {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 22.75%;
    margin-left: 0%;
    margin-right: 3%;
    background: url('../img/asset.retail-location.ring.png') no-repeat center center transparent;
    background-size: 100% 100%;
    height: 0;
    padding: 22.75% 0 0;
  }
  .retail-locations__store-list__item:before, .retail-locations__store-list__item:after {
    content: '';
    display: table;
  }
  .retail-locations__store-list__item:after {
    clear: both;
  }
  .retail-locations__store-list__item:nth-child(2n) {
    margin-right: 3%;
    float: left;
  }
  .retail-locations__store-list__item:nth-child(2n + 1) {
    clear: none;
  }
  .retail-locations__store-list__item:nth-child(4n) {
    margin-right: 0%;
    float: right;
  }
  .retail-locations__store-list__item:nth-child(4n + 1) {
    clear: both;
  }
}
.retail-locations__store-list__item a {
  display: block;
  height: 100%;
  width: 100%;
}
@media screen and (min-width: 651px) {
  .retail-locations__store-list__item a {
    left: 0;
    position: absolute;
    top: 0;
  }
}
.retail-locations__store-list__item img {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-height: 100px;
  max-width: 100px;
  width: 50%;
}
@media screen and (min-width: 651px) {
  .retail-locations__store-list__item img {
    max-height: 170px;
    max-width: 170px;
  }
}

.rev-faq {
  background: url('../img/bg.drivers.rev-bosses.mobile.jpg') no-repeat center top #000000;
  background-size: 100% auto;
  padding: 60px 0 70px;
}
@media screen and (min-width: 651px) {
  .rev-faq {
    background: url('../img/bg.get-rev.retail-locations.jpg') no-repeat center top #280003;
  }
}
.rev-faq__header__headline {
  font-weight: 400;
  font-size: 85px;
  font-size: 85px;
  font-size: 5.3125rem;
  font-family: "UnitedSansCond-Medium";
  color: #ffffff;
  text-align: center;
}
@media screen and (min-width: 651px) {
  .rev-faq__header__headline {
    background: url('../img/heading.bg.panel.rev-faq.png') no-repeat 0 0 transparent;
    height: 138px;
    margin: 0 auto;
    padding-top: 10px;
    text-align: center;
    width: 960px;
  }
}
.rev-faq__header__text {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  font: 400 12px 'ProximaNovaReg';
  color: #ffffff;
  padding: 15px 0 20px;
  text-transform: none;
}
@media screen and (min-width: 651px) {
  .rev-faq__header__text {
    font-size: 14px;
    width: 80%;
  }
}
.rev-faq__list {
  margin: 0;
  max-width: 960px;
  padding: 0;
}
.rev-faq__list__item {
  font-weight: 400;
  font-size: 30px;
  font-size: 30px;
  font-size: 1.875rem;
  font-family: "UnitedSansCond-Medium";
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  list-style-position: inside;
  padding: 20px 0 25px;
  text-transform: uppercase;
}
.rev-faq__list__item:last-child {
  border-bottom: 1px solid rgba(120, 0, 22, 0.6);
}
@media screen and (min-width: 651px) {
  .rev-faq__list__item {
    font-weight: 400;
    font-size: 30px;
    font-size: 1.875rem;
    font-family: "UnitedSansCond-Medium";
    color: #ffffff;
  }
  .rev-faq__list__item:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .rev-faq__list__item:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.rev-faq__list__item .rev-faq-list-item__text {
  font-weight: 400;
  font-size: 24px;
  font-size: 24px;
  font-size: 1.5rem;
  font-family: "ProximaNovaReg";
  color: #ffffff;
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
  text-transform: none;
}
@media screen and (min-width: 651px) {
  .rev-faq__list__item .rev-faq-list-item__text {
    font-weight: 400;
    font-size: 14px;
    font-size: 0.875rem;
    font-family: "ProximaNovaReg";
    color: #ffffff;
    width: 80%;
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  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);
  -o-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-initialized .slick-slide {
  display: block;
}

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

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

.smart-ramp {
  *zoom: 1;
  background: #000000;
  margin-top: 0px;
  padding: 43px 0;
  background-position: center;
  width: 100%;
  z-index: -1;
}
.smart-ramp:before, .smart-ramp:after {
  content: '';
  display: table;
}
.smart-ramp:after {
  clear: both;
}
@media screen and (min-width: 651px) {
  .smart-ramp {
    background: url('../img/smart-ramp.bg.png') no-repeat;
  }
}
.smart-ramp__container {
  padding: 0 20px;
}
@media screen and (min-width: 651px) {
  .smart-ramp__container {
    margin: 0 auto;
    max-width: 996px;
  }
}
.smart-ramp__header {
  background: url('../img/heading.bg.smart-ramp.mobile.png') no-repeat 0 0 transparent;
  background-size: 100% auto;
  margin: 0 auto;
  max-width: 500px;
  overflow: hidden;
  padding-top: 27%;
  width: 100%;
}
@media screen and (min-width: 651px) {
  .smart-ramp__header {
    background: url('../img/heading.bg.panel.smart-ramp.png') no-repeat center transparent;
    background-size: auto;
    height: 244px;
    margin: 0 auto;
    max-width: 945px;
    padding-top: 45px;
    text-align: left;
  }
}
@media screen and (min-width: 651px) {
  .smart-ramp__header__inner {
    margin: 0 auto;
    position: relative;
    width: 600px;
  }
}
.smart-ramp__pre-headline {
  display: none;
}
@media screen and (min-width: 651px) {
  .smart-ramp__pre-headline {
    font-weight: 400;
    font-size: 16px;
    font-size: 1rem;
    font-family: "UnitedSansCond-Medium";
    color: #00b0ed;
    display: block;
    position: absolute;
    top: -18px;
    text-transform: uppercase;
  }
}
.smart-ramp__headline {
  font-weight: 400;
  font-size: 85px;
  font-size: 85px;
  font-size: 5.3125rem;
  font-family: "UnitedSansCond-Medium";
  color: #ffffff;
  height: 80px;
  text-align: center;
  position: relative;
  text-indent: -9999px;
}
@media screen and (min-width: 651px) {
  .smart-ramp__headline {
    font-weight: 400;
    font-size: 85px;
    font-size: 5.3125rem;
    font-family: "UnitedSansCond-Medium";
    color: #ffffff;
    line-height: 85px;
    line-height: 5.3125rem;
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 55.85714%;
    margin-left: 0%;
    margin-right: 3%;
    height: auto;
    text-align: left;
    text-indent: 0;
  }
  .smart-ramp__headline:before, .smart-ramp__headline:after {
    content: '';
    display: table;
  }
  .smart-ramp__headline:after {
    clear: both;
  }
  .smart-ramp__headline:last-child {
    margin-right: 0%;
  }
}
.smart-ramp__text {
  color: #6f7d82;
  display: none;
}
@media screen and (min-width: 651px) {
  .smart-ramp__text {
    font-weight: 400;
    font-size: 14px;
    font-size: 0.875rem;
    font-family: "ProximaNovaReg";
    color: #ffffff;
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 41.14286%;
    margin-left: 0%;
    margin-right: 3%;
    display: block;
  }
  .smart-ramp__text:before, .smart-ramp__text:after {
    content: '';
    display: table;
  }
  .smart-ramp__text:after {
    clear: both;
  }
  .smart-ramp__text:last-child {
    margin-right: 0%;
  }
}
.smart-ramp__visual {
  display: none;
}
@media screen and (min-width: 651px) {
  .smart-ramp__visual {
    background: url('../img/smart-ramp.ramp.png') no-repeat 0 0 transparent;
    display: block;
    height: 211px;
    margin: -82px auto 0;
    width: 583px;
  }
}
.smart-ramp__features {
  margin-top: 30px;
  padding: 0 20px;
}
@media screen and (min-width: 651px) {
  .smart-ramp__features {
    margin-top: 0;
    overflow: hidden;
    padding: 50px 3px;
  }
}
.smart-ramp__features__item {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px 0 20px;
  position: relative;
}
.smart-ramp__features__item:before {
  font-weight: 400;
  font-size: 20px;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "ProximaNovaReg";
  color: #00b0ed;
  content: "+";
  display: none;
  position: absolute;
  top: -8px;
  left: 0;
}
@media screen and (min-width: 651px) {
  .smart-ramp__features__item:before {
    font-weight: 400;
    font-size: 10px;
    font-size: 0.625rem;
    font-family: "ProximaNovaReg";
    color: #00b0ed;
    content: "+" !important;
    display: block;
    top: -8px;
    left: -3px;
  }
}
.smart-ramp__features__item:after {
  font-weight: 400;
  font-size: 20px;
  font-size: 20px;
  font-size: 1.25rem;
  font-family: "ProximaNovaReg";
  color: #00b0ed;
  content: "+";
  display: none;
  position: absolute;
  top: -7px;
  right: -0;
}
@media screen and (min-width: 651px) {
  .smart-ramp__features__item:after {
    font-weight: 400;
    font-size: 10px;
    font-size: 0.625rem;
    font-family: "ProximaNovaReg";
    color: #00b0ed;
    content: "+" !important;
    display: block;
    top: -7px;
    right: -3px;
  }
}
@media screen and (min-width: 651px) {
  .smart-ramp__features__item {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 25.33333%;
    margin-left: 0%;
    margin-right: 12%;
    min-height: 150px;
  }
  .smart-ramp__features__item:before, .smart-ramp__features__item:after {
    content: '';
    display: table;
  }
  .smart-ramp__features__item:after {
    clear: both;
  }
  .smart-ramp__features__item:last-child {
    margin-right: 0%;
  }
}
.smart-ramp__features__item .smart-ramp-features-item__no {
  border-top: 1px solid #00b0ed;
  border-bottom: 1px solid #00b0ed;
  color: #00b0ed;
  display: inline-block;
  font-family: "UnitedSansCond-Light";
  font-size: 18px;
  margin-right: 10px;
  text-align: center;
  width: 13px;
  vertical-align: top;
}
.smart-ramp__features__item .smart-ramp-features-item__title {
  font-weight: 400;
  font-size: 50px;
  font-size: 50px;
  font-size: 3.125rem;
  font-family: "UnitedSansCond-Light";
  color: #ffffff;
  line-height: 50px;
  line-height: 50px;
  line-height: 3.125rem;
  display: inline-block;
  margin-top: 3px;
  text-transform: uppercase;
  width: 80%;
}
@media screen and (min-width: 651px) {
  .smart-ramp__features__item .smart-ramp-features-item__title {
    font-weight: 400;
    font-size: 28px;
    font-size: 1.75rem;
    font-family: "UnitedSansCond-Light";
    color: #ffffff;
    line-height: 28px;
    line-height: 1.75rem;
  }
}
.smart-ramp__features__item .smart-ramp-features-item__text {
  font-weight: 400;
  font-size: 24px;
  font-size: 24px;
  font-size: 1.5rem;
  font-family: "ProximaNovaReg";
  color: #ffffff;
  color: #6f7d82;
  width: 80%;
}
@media screen and (min-width: 651px) {
  .smart-ramp__features__item .smart-ramp-features-item__text {
    font-weight: 400;
    font-size: 14px;
    font-size: 0.875rem;
    font-family: "ProximaNovaReg";
    color: #ffffff;
    padding-left: 25px;
  }
}
.smart-ramp__features .slick-list {
  padding-bottom: 40px;
}
.smart-ramp__features .slick-dots {
  list-style-type: none;
  margin: 0 auto;
  padding: 0;
  margin-top: 40px;
  text-align: center;
}
.smart-ramp__features .slick-dots li {
  background: #1a1b1d;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 0 4px;
  text-indent: -9999px;
  width: 8px;
}
.smart-ramp__features .slick-dots li.slick-active {
  background: #808081;
}

.weapons {
  background: url('../img/bg.drivers.rev-drivers.mobile.jpg') no-repeat top center #000000;
  background-size: 100% auto;
  padding: 60px 0 70px;
  position: relative;
}
@media screen and (min-width: 651px) {
  .weapons {
    background: url('../img/bg.steps.png') no-repeat center top transparent;
  }
}
.weapons__headline {
  font-weight: 400;
  font-size: 85px;
  font-size: 85px;
  font-size: 5.3125rem;
  font-family: "UnitedSansCond-Medium";
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (min-width: 651px) {
  .weapons__headline {
    background: url('../img/heading.bg.panel.weapons.png') no-repeat 0 0 transparent;
    height: 147px;
    margin: 0 auto;
    padding-top: 12px;
    width: 614px;
  }
}
.weapons__items {
  *zoom: 1;
  counter-reset: weapons;
  display: none;
  padding-top: 10px;
  position: relative;
}
.weapons__items:before, .weapons__items:after {
  content: '';
  display: table;
}
.weapons__items:after {
  clear: both;
}
@media screen and (min-width: 651px) {
  .weapons__items {
    display: block;
    margin: 0 100px;
  }
}
.weapons__items__item {
  counter-increment: weapons;
}
@media screen and (min-width: 651px) {
  .weapons__items__item {
    float: left;
    padding: 0 40px;
  }
}
.weapons__items__item .weapons-item__img {
  position: relative;
}
.weapons__items__item .weapons-item__img img {
  height: auto;
  width: 100%;
}
.weapons__items__item .weapons-item__img__overlay-trigger {
  background: url('../img/overlay-trigger.weapons.png') no-repeat 0 0 transparent;
  display: block;
  height: 39px;
  position: absolute;
  top: 20px;
  right: 10px;
  width: 39px;
}
.weapons__items__item .weapons-item__content {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 20px;
  padding: 10px 0 20px;
  position: relative;
}
@media screen and (min-width: 651px) {
  .weapons__items__item .weapons-item__content {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.weapons__items__item .weapons-item__content:before {
  font-weight: 400;
  font-size: 22px;
  font-size: 22px;
  font-size: 1.375rem;
  font-family: "ProximaNovaReg";
  color: #00b0ed;
  content: '+';
  display: block;
  position: absolute;
  top: -7px;
  left: 0;
}
@media screen and (min-width: 651px) {
  .weapons__items__item .weapons-item__content:before {
    font-weight: 400;
    font-size: 12px;
    font-size: 0.75rem;
    font-family: "ProximaNovaReg";
    color: #00b0ed;
  }
}
.weapons__items__item .weapons-item__content:after {
  font-weight: 400;
  font-size: 22px;
  font-size: 22px;
  font-size: 1.375rem;
  font-family: "ProximaNovaReg";
  color: #00b0ed;
  content: '+';
  display: block;
  position: absolute;
  top: -7px;
  right: 0;
}
@media screen and (min-width: 651px) {
  .weapons__items__item .weapons-item__content:after {
    font-weight: 400;
    font-size: 12px;
    font-size: 0.75rem;
    font-family: "ProximaNovaReg";
    color: #00b0ed;
  }
}
.weapons__items__item .weapons-item__content__no {
  border-top: 1px solid #00b0ed;
  border-bottom: 1px solid #00b0ed;
  color: #00b0ed;
  display: inline-block;
  font-family: "UnitedSansCond-Light";
  font-size: 18px;
  margin-right: 10px;
  margin-top: -17px;
  text-align: center;
  width: 13px;
  vertical-align: middle;
}
.weapons__items__item .weapons-item__content__name {
  font-weight: 400;
  font-size: 50px;
  font-size: 50px;
  font-size: 3.125rem;
  font-family: "UnitedSansCond-Light";
  color: #ffffff;
  display: inline-block;
  text-transform: uppercase;
}
@media screen and (min-width: 651px) {
  .weapons__items__item .weapons-item__content__name {
    font-weight: 400;
    font-size: 35px;
    font-size: 2.1875rem;
    font-family: "UnitedSansCond-Light";
    color: #ffffff;
  }
}
.weapons__items__item .weapons-item__content__text {
  font: 400 12px/24px 'ProximaNovaReg';
  color: #6f7d82;
}
@media screen and (min-width: 651px) {
  .weapons__items__item .weapons-item__content__text {
    font: 400 14px/24px 'ProximaNovaReg';
  }
}
.weapons .slick-dots {
  list-style-type: none;
  margin: 0 auto;
  padding: 0;
  margin-top: 40px;
  text-align: center;
}
.weapons .slick-dots li {
  background: #002736;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  height: 6px;
  margin: 0 2px;
  text-indent: -9999px;
  width: 6px;
}
.weapons .slick-dots li.slick-active {
  background: #00435c;
}
.weapons .slick-prev {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 0 none;
  -webkit-box-shadow: 0;
  box-shadow: 0;
  display: none;
  outline: none;
  text-indent: -9999px;
}
@media screen and (min-width: 651px) {
  .weapons .slick-prev {
    background: url('../img/arrow.weapons.left.png') no-repeat 0 0 transparent;
    display: block;
    height: 60px;
    left: -70px;
    width: 60px;
  }
}
.weapons .slick-next {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  border: 0 none;
  -webkit-box-shadow: 0;
  box-shadow: 0;
  display: none;
  outline: none;
  text-indent: -9999px;
}
@media screen and (min-width: 651px) {
  .weapons .slick-next {
    background: url('../img/arrow.weapons.right.png') no-repeat 0 0 transparent;
    display: block;
    height: 60px;
    width: 60px;
    right: -70px;
  }
}

.weapons-overlay {
  *zoom: 1;
  counter-reset: weapons overlay;
}
.weapons-overlay:before, .weapons-overlay:after {
  content: '';
  display: table;
}
.weapons-overlay:after {
  clear: both;
}
@media screen and (min-width: 651px) {
  .weapons-overlay {
    display: none;
  }
  .weapons-overlay.active {
    display: block;
  }
}
@media screen and (min-width: 651px) {
  .weapons-overlay__surround.active {
    background: rgba(0, 0, 0, 0.9);
    bottom: 0;
    left: 0;
    padding: 50px 0 0;
    position: absolute;
    right: 0;
    top: 0;
  }
}
.weapons-overlay__close-trigger {
  background: url('../img/overlay-close.weapons.png') no-repeat 0 0 transparent;
  display: none;
  height: 39px;
  position: absolute;
  width: 39px;
  top: 30px;
  right: 28px;
}
@media screen and (min-width: 651px) {
  .weapons-overlay__close-trigger {
    display: block;
  }
}
.weapons-overlay__item {
  text-align: center;
  counter-increment: overlay;
  padding: 0 10px;
}
@media screen and (min-width: 651px) {
  .weapons-overlay__item {
    padding: 0 200px;
  }
}
.weapons-overlay__item__img {
  margin: 0 auto;
  position: relative;
  width: 159px;
}
@media screen and (min-width: 651px) {
  .weapons-overlay__item__img {
    width: 322px;
  }
}
.weapons-overlay__item__img img {
  height: auto;
  width: 100%;
}
.weapons-overlay__item__content {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  margin-top: 20px;
  padding: 10px 0 30px;
  position: relative;
}
.weapons-overlay__item__about {
  text-align: left;
}
@media screen and (min-width: 651px) {
  .weapons-overlay__item__about {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 65.66667%;
    margin-left: 0%;
    margin-right: 3%;
    padding-right: 20px;
    text-align: left;
  }
  .weapons-overlay__item__about:before, .weapons-overlay__item__about:after {
    content: '';
    display: table;
  }
  .weapons-overlay__item__about:after {
    clear: both;
  }
  .weapons-overlay__item__about:last-child {
    margin-right: 0%;
  }
}
.weapons-overlay__item__about .weapons-overlay-item-about__no {
  border-top: 1px solid #00b0ed;
  border-bottom: 1px solid #00b0ed;
  color: #00b0ed;
  display: inline-block;
  font-family: "UnitedSansCond-Light";
  font-size: 18px;
  margin-right: 10px;
  margin-top: -20px;
  text-align: center;
  width: 13px;
  vertical-align: middle;
}
.weapons-overlay__item__about .weapons-overlay-item-about__name {
  display: inline-block;
  text-transform: uppercase;
}
@media screen and (min-width: 651px) {
  .weapons-overlay__item__about .weapons-overlay-item-about__name {
    font-weight: 400;
    font-size: 40px;
    font-size: 2.5rem;
    font-family: "UnitedSansCond-Light";
    color: #ffffff;
  }
}
.weapons-overlay__item__about .weapons-overlay-item-about__text {
  font-weight: 400;
  font-size: 24px;
  font-size: 24px;
  font-size: 1.5rem;
  font-family: "ProximaNovaReg";
  color: #ffffff;
  color: #6f7d82;
}
@media screen and (min-width: 651px) {
  .weapons-overlay__item__about .weapons-overlay-item-about__text {
    font-weight: 400;
    font-size: 14px;
    font-size: 0.875rem;
    font-family: "ProximaNovaReg";
    color: #ffffff;
    text-align: left;
  }
}
.weapons-overlay__item__mobile-toggle {
  *zoom: 1;
  background: url('../img/weapons.show-more.toggle.png') no-repeat center bottom transparent;
  background-size: 16px 17px;
  display: block;
  font-family: "UnitedSansCond-Medium";
  font-size: 12px;
  letter-spacing: 1px;
  margin-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  text-transform: uppercase;
}
.weapons-overlay__item__mobile-toggle:before, .weapons-overlay__item__mobile-toggle:after {
  content: '';
  display: table;
}
.weapons-overlay__item__mobile-toggle:after {
  clear: both;
}
@media screen and (min-width: 651px) {
  .weapons-overlay__item__mobile-toggle {
    display: none;
  }
}
.weapons-overlay__item__mobile-toggle.less {
  background: url('../img/weapons.show-less.toggle.png') no-repeat center bottom transparent;
  background-size: 16px 13px;
  padding-bottom: 22px;
}
.weapons-overlay__item__detail {
  height: 0;
  margin-top: 20px;
  overflow: hidden;
  text-align: left;
  -webkit-transition: height .4s;
  -o-transition: height .4s;
  transition: height .4s;
}
.weapons-overlay__item__detail.open {
  height: auto;
}
@media screen and (min-width: 651px) {
  .weapons-overlay__item__detail {
    *zoom: 1;
    float: left;
    clear: none;
    text-align: inherit;
    width: 31.33333%;
    margin-left: 0%;
    margin-right: 3%;
    height: auto;
    display: block;
    margin-top: 0;
    text-align: left;
    margin-right: 0 !important;
  }
  .weapons-overlay__item__detail:before, .weapons-overlay__item__detail:after {
    content: '';
    display: table;
  }
  .weapons-overlay__item__detail:after {
    clear: both;
  }
  .weapons-overlay__item__detail:last-child {
    margin-right: 0%;
  }
}
.weapons-overlay__item__detail .weapons-overlay-item-detail__heading {
  border-bottom: 1px solid #00b0ed;
  font-family: "UnitedSansCond-Medium";
  text-transform: uppercase;
}
@media screen and (min-width: 651px) {
  .weapons-overlay__item__detail .weapons-overlay-item-detail__heading {
    font-size: 24px;
  }
}
.weapons-overlay__item__detail .weapons-overlay-item-detail__attribute {
  font-family: "UnitedSansCond-Medium";
  overflow: hidden;
}
.weapons-overlay__item__detail .weapons-overlay-item-detail__attribute__details {
  overflow: hidden;
  padding: 15px 0 0;
}
.weapons-overlay__item__detail .weapons-overlay-item-detail__attribute__details .attribute-name {
  display: inline-block;
  font-size: 16px;
  text-transform: uppercase;
}
@media screen and (min-width: 651px) {
  .weapons-overlay__item__detail .weapons-overlay-item-detail__attribute__details .attribute-name {
    font-size: 16px;
  }
}
.weapons-overlay__item__detail .weapons-overlay-item-detail__attribute__details .attribute-no {
  display: inline-block;
  font-size: 16px;
  float: right;
  text-align: right;
}
@media screen and (min-width: 651px) {
  .weapons-overlay__item__detail .weapons-overlay-item-detail__attribute__details .attribute-no {
    font-size: 16px;
  }
}
.weapons-overlay__item__detail .weapons-overlay-item-detail__attribute__scale .attribute-scale-bg {
  background: #232526;
  height: 3px;
  overflow: none;
  position: relative;
  width: 100%;
}
.weapons-overlay__item__detail .weapons-overlay-item-detail__attribute__scale .attribute-scale-bg .attribute-scale-percentage {
  background: #00b0ed;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}
.weapons-overlay__item__detail .weapons-overlay-item-detail__attribute__scale .attribute-scale-bg .attribute-scale-percentage.pc-1 {
  width: 10%;
}
.weapons-overlay__item__detail .weapons-overlay-item-detail__attribute__scale .attribute-scale-bg .attribute-scale-percentage.pc-2 {
  width: 20%;
}
.weapons-overlay__item__detail .weapons-overlay-item-detail__attribute__scale .attribute-scale-bg .attribute-scale-percentage.pc-3 {
  width: 30%;
}
.weapons-overlay__item__detail .weapons-overlay-item-detail__attribute__scale .attribute-scale-bg .attribute-scale-percentage.pc-4 {
  width: 40%;
}
.weapons-overlay__item__detail .weapons-overlay-item-detail__attribute__scale .attribute-scale-bg .attribute-scale-percentage.pc-5 {
  width: 50%;
}
.weapons-overlay__item__detail .weapons-overlay-item-detail__attribute__scale .attribute-scale-bg .attribute-scale-percentage.pc-6 {
  width: 60%;
}
.weapons-overlay__item__detail .weapons-overlay-item-detail__attribute__scale .attribute-scale-bg .attribute-scale-percentage.pc-7 {
  width: 70%;
}
.weapons-overlay__item__detail .weapons-overlay-item-detail__attribute__scale .attribute-scale-bg .attribute-scale-percentage.pc-8 {
  width: 80%;
}
.weapons-overlay__item__detail .weapons-overlay-item-detail__attribute__scale .attribute-scale-bg .attribute-scale-percentage.pc-9 {
  width: 90%;
}
.weapons-overlay__item__detail .weapons-overlay-item-detail__attribute__scale .attribute-scale-bg .attribute-scale-percentage.pc-10 {
  width: 100%;
}
.weapons-overlay .slick-next,
.weapons-overlay .slick-prev {
  display: none !important;
}
@media screen and (min-width: 651px) {
  .weapons-overlay .slick-next,
  .weapons-overlay .slick-prev {
    display: block !important;
  }
}

/**
 * #TRUMPS
 */
.panel-revtech__headline--device-testing h1 {
  text-align: center;
  margin-left: 0;
}
.panel-revtech__headline--apptitle h1 {
  text-align: center;
  margin-left: -140px;
}

@media screen and (min-width: 651px) {
  .hero__twoWays__intro {
    margin: 0 auto;
    max-width: 862px;
  }
}
.hero__twoWays__intro p {
  text-align: center;
}
.hero__twoWays__ways {
  text-align: center;
}
@media screen and (min-width: 651px) {
  .hero__twoWays__ways {
    text-align: left;
  }
}
.hero__twoWays .hero__heading__twoWays {
  text-align: center;
}
.hero__twoWays__battles {
  text-align: center;
}

@media screen and (min-width: 651px) {
  .panel-how-rev-works__headline {
    margin: 0 auto;
    width: 620px;
  }
}
.panel-how-rev-works__headline h1 {
  text-align: center;
}
@media screen and (min-width: 651px) {
  .panel-how-rev-works__headline h1 {
    font-size: 4.7rem;
  }
}

@media screen and (min-width: 651px) {
  .panel-critics__headline {
    margin: 0 auto;
    width: 866px;
  }
}
.panel-critics__headline h1 {
  text-align: center;
}
@media screen and (min-width: 651px) {
  .panel-critics__headline h1 {
    font-size: 4.7rem;
  }
}

.ai-drivers {
  background-color: #5a010e;
  background-position: center bottom;
  height: auto;
  min-height: 500px;
}
@media screen and (min-width: 651px) {
  .ai-drivers {
    background-color: #000000;
    background-position: center bottom, center top;
    background-size: 1500px auto;
    height: auto;
    min-height: 700px;
  }
}

@media screen and (min-width: 768px) {
  .mobile-break {
    display: none;
  }
}

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

/* ==========================================================================
   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 */
    -webkit-box-shadow: none !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;
  }
}
/**
* #LANGUAGES
*/
.language-en .rev-faq__header__headline {
  background: url("../img/languages/en/heading.bg.panel.rev-faq.png");
}
@media screen and (min-width: 768px) {
  .language-en .panel-revtech--self {
    background: url("../img/languages/en/revtech.self.bg.png");
  }
}
.language-en .hero__twoWays__intro__graphic {
  background: url('../img/') no-repeat 0 0 transparent;
}
@media screen and (min-width: 865px) {
  .language-en .hero__twoWays__intro__graphic {
    background: url('../img/languages/en/en.asset.two-ways-to-play.heading.png') no-repeat 0 0 transparent;
    height: 318px;
    width: 862px;
  }
}
.language-en .hero__twoWays__actions--pvcpu {
  background: url('../img/languages/en/en.two-ways.pvcpu.png') no-repeat 0 0 transparent;
  background-size: 100% auto;
}
.language-en .hero__twoWays__actions--pvp {
  background: url('../img/languages/en/en.two-ways.pvp.png') no-repeat 0 0 transparent;
  background-size: 100% auto;
}
.language-en .hero__home__intro {
  background: url('../img/languages/en/en.intro-play.mobile.png') no-repeat 0 0 transparent;
  background-size: 220px 132px;
  height: 240px;
  width: 220px;
}
@media screen and (min-width: 651px) {
  .language-en .hero__home__intro {
    background: url('../img/languages/en/en.intro-play.desktop.png') no-repeat 0 0 transparent;
    height: 269px;
    overflow: hidden;
    width: 331px;
  }
}
@media screen and (min-width: 768px) {
  .language-en .panel-revtech__headline--selftitle {
    background: url('../img/revtech.self.header.bg.png') no-repeat 0 0 transparent;
    height: 123px;
    padding-top: 47px;
    width: 602px;
  }
}
@media screen and (min-width: 768px) {
  .language-en .panel-revtech__headline--situationaltitle {
    background: url('../img/revtech.situation.header.bg.png') no-repeat 0 0 transparent;
    height: 200px;
    width: 604px;
  }
}
@media screen and (min-width: 768px) {
  .language-en .panel-revtech__headline--realtimetitle {
    background: url('../img/revtech.realtime.header.bg.png') no-repeat 0 0 transparent;
    height: 200px;
    width: 604px;
  }
}
@media screen and (min-width: 768px) {
  .language-en .panel-revtech__headline--simulatedtitle {
    background: url('../img/revtech.simulated.header.bg.png') no-repeat 0 0 transparent;
    height: 219px;
    width: 604px;
  }
}

.language-es .page-foot__find-a-store {
  font-size: 8px;
}
@media screen and (min-width: 651px) {
  .language-es .page-foot__find-a-store {
    font-size: 11px;
  }
}
.language-es .ai-drivers__headline {
  font-size: 60px;
  font-size: 3.8rem;
}
@media screen and (min-width: 651px) {
  .language-es .ai-drivers__headline {
    font-size: 4.3125rem;
    padding-top: 27px;
  }
}
.language-es .ai-drivers__headline span {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 24px;
  line-height: 1.5rem;
}
@media screen and (min-width: 651px) {
  .language-es .ai-drivers__headline span {
    font-size: 1.8rem;
    line-height: 1.8rem;
  }
}
.language-es .hero__twoWays__intro__graphic {
  background: url('../img/') no-repeat 0 0 transparent;
}
@media screen and (min-width: 865px) {
  .language-es .hero__twoWays__intro__graphic {
    background: url('../img/languages/es/es.asset.two-ways-to-play.heading.png') no-repeat 0 0 transparent;
    height: 319px;
    width: 862px;
  }
}
.language-es .hero__twoWays__actions--pvcpu {
  background: url('../img/languages/es/es.two-ways.pvcpu.png') no-repeat 0 0 transparent;
  background-size: 100% auto;
}
.language-es .hero__twoWays__actions--pvp {
  background: url('../img/languages/es/es.two-ways.pvp.png') no-repeat 0 0 transparent;
  background-size: 100% auto;
}
.language-es .hero__home__intro {
  background: url('../img/languages/es/es.intro-play.mobile.png') no-repeat 0 0 transparent;
  background-size: 220px 132px;
  height: 240px;
  width: 220px;
}
@media screen and (min-width: 651px) {
  .language-es .hero__home__intro {
    background: url('../img/languages/es/es.intro-play.desktop.png') no-repeat 0 0 transparent;
    height: 269px;
    overflow: hidden;
    width: 331px;
  }
}
@media screen and (min-width: 740px) {
  .language-es .panel-revtech--self {
    background-image: url('../img/languages/es/es.revtech.self.bg.png');
  }
}
@media screen and (min-width: 740px) {
  .language-es .panel-revtech--situational {
    background-image: url('../img/languages/es/es.revtech.situation.bg.png');
  }
}
@media screen and (min-width: 768px) {
  .language-es .panel-revtech__headline--selftitle {
    background: url('../img/languages/es/es.revtech.self.header.bg.png') no-repeat 0 0 transparent;
    height: 123px;
    padding-top: 47px;
    width: 602px;
  }
}
@media screen and (min-width: 768px) {
  .language-es .panel-revtech__headline--situationaltitle {
    background: url('../img/languages/es/es.revtech.situational.header.bg.png') no-repeat 0 0 transparent;
    height: 200px;
    width: 604px;
  }
}
@media screen and (min-width: 768px) {
  .language-es .panel-revtech__headline--realtimetitle {
    background: url('../img/languages/es/es.revtech.realtime.header.bg.png') no-repeat 0 0 transparent;
    height: 200px;
    width: 604px;
  }
}
@media screen and (min-width: 768px) {
  .language-es .panel-revtech__headline--realtimetitle .hero__heading--smaller {
    font-size: 4rem !important;
  }
}
@media screen and (min-width: 768px) {
  .language-es .panel-revtech__headline--simulatedtitle {
    background: url('../img/languages/es/es.revtech.simulated.header.bg.png') no-repeat 0 0 transparent;
    height: 219px;
    width: 604px;
  }
}

.language-fr .page-foot__find-a-store {
  font-size: 8px;
}
@media screen and (min-width: 651px) {
  .language-fr .page-foot__find-a-store {
    font-size: 11px;
  }
}
.language-fr .hero__twoWays__intro__graphic {
  background: url('../img/') no-repeat 0 0 transparent;
}
@media screen and (min-width: 865px) {
  .language-fr .hero__twoWays__intro__graphic {
    background: url('../img/languages/fr/fr.asset.two-ways-to-play.heading.png') no-repeat 0 0 transparent;
    height: 319px;
    width: 862px;
  }
}
.language-fr .hero__twoWays__actions--pvcpu {
  background: url('../img/languages/fr/fr.two-ways.pvcpu.png') no-repeat 0 0 transparent;
  background-size: 100% auto;
}
.language-fr .hero__twoWays__actions--pvp {
  background: url('../img/languages/fr/fr.two-ways.pvp.png') no-repeat 0 0 transparent;
  background-size: 100% auto;
}
.language-fr .hero__home__intro {
  background: url('../img/languages/fr/fr.intro-play.mobile.png') no-repeat 0 0 transparent;
  background-size: 220px 132px;
  height: 240px;
  width: 220px;
}
@media screen and (min-width: 651px) {
  .language-fr .hero__home__intro {
    background: url('../img/languages/fr/fr.intro-play.desktop.png') no-repeat 0 0 transparent;
    height: 269px;
    width: 331px;
  }
}
@media screen and (min-width: 651px) {
  .language-fr .hero__heading--smartphone .hero__heading__app-controller-text {
    font-size: 30px !important;
  }
}
@media screen and (min-width: 740px) {
  .language-fr .panel-revtech--self {
    background-image: url('../img/languages/fr/fr.revtech.self.bg.png');
  }
}
@media screen and (min-width: 768px) {
  .language-fr .panel-revtech__headline--selftitle {
    background: url('../img/languages/fr/fr.revtech.self.header.bg.png') no-repeat 0 0 transparent;
    height: 123px;
    padding-top: 47px;
    width: 602px;
  }
}
@media screen and (min-width: 768px) {
  .language-fr .panel-revtech__headline--situationaltitle {
    background: url('../img/languages/fr/fr.revtech.situational.header.bg.png') no-repeat 0 0 transparent;
    height: 200px;
    width: 604px;
  }
}
@media screen and (min-width: 768px) {
  .language-fr .panel-revtech__headline--realtimetitle {
    background: url('../img/languages/fr/fr.revtech.realtime.header.bg.png') no-repeat 0 0 transparent;
    height: 200px;
    width: 604px;
  }
}
@media screen and (min-width: 768px) {
  .language-fr .panel-revtech__headline--simulatedtitle {
    background: url('../img/languages/fr/fr.revtech.simulated.header.bg.png') no-repeat 0 0 transparent;
    height: 219px;
    width: 604px;
  }
}
@media screen and (min-width: 651px) {
  .language-fr .panel-revtech__headline--simulatedtitle .hero__heading--smaller {
    font-size: 4rem !important;
  }
}

.language-it .page-foot__find-a-store {
  font-size: 8px;
}
@media screen and (min-width: 651px) {
  .language-it .page-foot__find-a-store {
    font-size: 11px;
  }
}
.language-it .hero__twoWays__intro__graphic {
  background: url('../img/') no-repeat 0 0 transparent;
}
@media screen and (min-width: 865px) {
  .language-it .hero__twoWays__intro__graphic {
    background: url('../img/languages/it/it.asset.two-ways-to-play.heading.png') no-repeat 0 0 transparent;
    height: 317px;
    width: 862px;
  }
}
.language-it .hero__twoWays__actions--pvcpu {
  background: url('../img/languages/it/it.two-ways.pvcpu.png') no-repeat 0 0 transparent;
  background-size: 100% auto;
}
.language-it .hero__twoWays__actions--pvp {
  background: url('../img/languages/it/it.two-ways.pvp.png') no-repeat 0 0 transparent;
  background-size: 100% auto;
}
.language-it .hero__home__intro {
  background: url('../img/languages/it/it.intro-play.mobile.png') no-repeat 0 0 transparent;
  background-size: 220px 132px;
  height: 240px;
  width: 220px;
}
@media screen and (min-width: 651px) {
  .language-it .hero__home__intro {
    background: url('../img/languages/it/it.intro-play.desktop.png') no-repeat 0 0 transparent;
    height: 269px;
    overflow: hidden;
    width: 331px;
  }
}
@media screen and (min-width: 740px) {
  .language-it .panel-revtech--situational {
    background-image: url('../img/languages/it/it.revtech.situation.bg.png');
  }
}
@media screen and (min-width: 768px) {
  .language-it .panel-revtech__headline--selftitle {
    background: url('../img/languages/it/it.revtech.self.header.bg.png') no-repeat 0 0 transparent;
    height: 123px;
    padding-top: 47px;
    width: 602px;
  }
}
@media screen and (min-width: 768px) {
  .language-it .panel-revtech__headline--situationaltitle {
    background: url('../img/languages/it/it.revtech.situational.header.bg.png') no-repeat 0 0 transparent;
    height: 200px;
    width: 604px;
  }
}
@media screen and (min-width: 768px) {
  .language-it .panel-revtech__headline--realtimetitle {
    background: url('../img/languages/it/it.revtech.realtime.header.bg.png') no-repeat 0 0 transparent;
    height: 200px;
    width: 604px;
  }
}
@media screen and (min-width: 768px) {
  .language-it .panel-revtech__headline--realtimetitle .hero__heading--smaller {
    font-size: 4rem !important;
  }
}
@media screen and (min-width: 768px) {
  .language-it .panel-revtech__headline--simulatedtitle {
    background: url('../img/languages/it/it.revtech.simulated.header.bg.png') no-repeat 0 0 transparent;
    height: 219px;
    width: 604px;
  }
}

.language-de .hero__twoWays__intro__graphic {
  background: url('../img/') no-repeat 0 0 transparent;
}
@media screen and (min-width: 865px) {
  .language-de .hero__twoWays__intro__graphic {
    background: url('../img/languages/de/de.asset.two-ways-to-play.heading.png') no-repeat 0 0 transparent;
    height: 318px;
    width: 862px;
  }
}
.language-de .hero__twoWays__actions--pvcpu {
  background: url('../img/languages/de/de.two-ways.pvcpu.png') no-repeat 0 0 transparent;
  background-size: 100% auto;
}
.language-de .hero__twoWays__actions--pvp {
  background: url('../img/languages/de/de.two-ways.pvp.png') no-repeat 0 0 transparent;
  background-size: 100% auto;
}
.language-de .hero__home__intro {
  background: url('../img/languages/de/de.intro-play.mobile.png') no-repeat 0 0 transparent;
  background-size: 220px 132px;
  height: 240px;
  width: 220px;
}
@media screen and (min-width: 651px) {
  .language-de .hero__home__intro {
    background: url('../img/languages/de/de.intro-play.desktop.png') no-repeat 0 0 transparent;
    height: 269px;
    overflow: hidden;
    width: 331px;
  }
}
@media screen and (min-width: 768px) {
  .language-de .panel-revtech__headline--selftitle {
    background: url('../img/languages/de/de.revtech.self.header.bg.png') no-repeat 0 0 transparent;
    height: 123px;
    padding-top: 47px;
    width: 602px;
  }
}
@media screen and (min-width: 768px) {
  .language-de .panel-revtech__headline--situationaltitle {
    background: url('../img/languages/de/de.revtech.situational.header.bg.png') no-repeat 0 0 transparent;
    height: 200px;
    width: 604px;
  }
}
@media screen and (min-width: 768px) {
  .language-de .panel-revtech__headline--realtimetitle {
    background: url('../img/languages/de/de.revtech.realtime.header.bg.png') no-repeat 0 0 transparent;
    height: 200px;
    width: 604px;
  }
}
@media screen and (min-width: 768px) {
  .language-de .panel-revtech__headline--simulatedtitle {
    background: url('../img/languages/de/de.revtech.simulated.header.bg.png') no-repeat 0 0 transparent;
    height: 219px;
    width: 604px;
  }
}
