@import url(https://fonts.googleapis.com/css2?family=Audiowide&display=swap);/* (ignored) *//* (ignored) */@import url(https://fonts.googleapis.com/css2?family=Epilogue:wght@300;400;500;600;700&family=Manrope:wght@300;400;500;600;700&display=swap);@charset "UTF-8";
/*

RESET

*/
/**
* Let’s make the box model all nice, shall we…?
*/
*, *:before, *:after {
  box-sizing: border-box;
}

/**
 * The usual...
 */
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
dl, dd, ol, ul,
form, fieldset, legend,
table, th, td, caption,
hr {
  margin: 0;
  padding: 0;
}

/**
 * Give a help cursor to elements that give extra info on `:hover`.
 */
abbr[title], dfn[title] {
  cursor: help;
}

/**
 * Remove underlines from potentially troublesome elements.
 */
a, u, ins {
  text-decoration: none;
}

/**
 * Apply faux underline via `border-bottom`.
 */
ins {
  border-bottom: 1px solid;
}

/**
 * So that `alt` text is visually offset if images don’t load.
 */
img {
  font-style: italic;
  display: inline-block;
  max-width: 100%;
}

/**
 * Give form elements some cursor interactions...
 */
label,
input,
textarea,
button,
select,
option {
  cursor: pointer;
}

.text-input:active,
.text-input:focus,
textarea:active,
textarea:focus {
  cursor: text;
  outline: none;
}

/*

NORMALIZE

*/
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/*
 * Corrects `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

/*
 * Corrects `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block;
}

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

/*
 * Addresses styling for `hidden` attribute not present in IE 8/9.
 */
[hidden] {
  display: none;
}

/* ==========================================================================
   Base
   ========================================================================== */
/*
 * 1. Sets default font family to sans-serif.
 * 2. Prevents iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 2 */
}

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

/* ==========================================================================
   Links
   ========================================================================== */
/*
 * Addresses `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: thin dotted;
}

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

/* ==========================================================================
   Typography
   ========================================================================== */
/*
 * Addresses `h1` font sizes within `section` and `article` in Firefox 4+,
 * Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
}

/*
 * Addresses styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted;
}

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

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

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

/*
 * Corrects font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}

/*
 * Improves readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/*
 * Sets consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019";
}

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

/*
 * Prevents `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
   ========================================================================== */
/*
 * Removes border when inside `a` element in IE 8/9.
 */
img {
  border: 0;
}

/*
 * Corrects overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden;
}

/* ==========================================================================
   Figures
   ========================================================================== */
/*
 * Addresses margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0;
}

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

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

/*
 * 1. Corrects font family not being inherited in all browsers.
 * 2. Corrects font size not being inherited in all browsers.
 * 3. Addresses margins set differently in Firefox 4+, Safari 5, and Chrome
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */
}

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

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

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

/*
 * 1. Addresses box sizing set to `content-box` in IE 8/9.
 * 2. Removes excess padding in IE 8/9.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

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

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

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

/*
 * 1. Removes default vertical scrollbar in IE 8/9.
 * 2. Improves readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */
}

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

/* ====== VARIABLES ====== */
/* ======
VARIABLES
	- COLOURS
	- FONTS
	- BREAKPOINTS
====== */
/* ==========================================================================
$	COLOURS
========================================================================== */
/* ==========================================================================
$	FONTS
========================================================================== */
/* ==========================================================================
$	BREAKPOINTS
========================================================================== */
/* ==========================================================================
$	CONTAINER
========================================================================== */
/* ====== BASE MIXINS ====== */
/* ======
BASE MIXINS
	- LAYOUT
	- FORMS
====== */
/* ==========================================================================
$	LAYOUT
========================================================================== */
/* ====== RESPONSIVE MIXINS ====== */
/* ====== TRANSITION MIXINS ====== */
/* ====== TYPOGRAPHY FUNCTIONS ====== */
/*
** Pixels to em
** Usage: font-size: em(16);
** Output: font-size: 1em;
*/
/* ====== BASE/SHARED THEME STYLES ====== */
html,
body {
  background-color: #0E214B;
  color: #ffffff;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
}

body {
  font-size: 100%;
}

input:focus {
  outline: none !important;
}

.container {
  display: flex;
  flex-direction: row;
  max-width: 1200px;
  margin: 0 auto;
}

h1, h2, h3, h4, h5, p.intro {
  font-family: 'Epilogue', sans-serif;
}

h1 {
  font-size: 1.875em;
  margin-bottom: 20px;
}

@media screen and (min-width: 576px) {
  h1 {
    font-size: 2.125em;
  }
}

@media screen and (min-width: 768px) {
  h1 {
    font-size: 2.5em;
  }
}

@media screen and (min-width: 992px) {
  h1 {
    font-size: 3.125em;
  }
}

@media screen and (min-width: 1199px) {
  h1 {
    font-size: 4.0625em;
  }
}

h2 {
  font-size: 1.5625em;
  line-height: 1.4em;
  margin-bottom: 20px;
}

@media screen and (min-width: 576px) {
  h2 {
    font-size: 1.875em;
  }
}

@media screen and (min-width: 992px) {
  h2 {
    font-size: 2.1875em;
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 1199px) {
  h2 {
    font-size: 2.8125em;
  }
}

@media screen and (min-width: 1440px) {
  h2 {
    font-size: 3.125em;
  }
}

h3 {
  font-size: 1.125em;
  line-height: 1.4em;
  margin-bottom: 20px;
  font-weight: 500;
}

@media screen and (min-width: 992px) {
  h3 {
    font-size: 1.625em;
  }
}

@media screen and (min-width: 1199px) {
  h3 {
    font-size: 1.875em;
  }
}

h5 {
  font-size: 0.875em;
  font-weight: 400;
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  h5 {
    font-weight: 700;
    font-size: 1.125em;
    margin-bottom: 25px;
  }
}

@media screen and (min-width: 992px) {
  h5 {
    font-size: 1.375em;
  }
}

@media screen and (min-width: 1440px) {
  h5 {
    font-size: 1.75em;
  }
}

p {
  font-size: 0.9375em;
  line-height: 1.6em;
  margin-bottom: 20px;
}

@media screen and (min-width: 992px) {
  p {
    font-size: 1.25em;
  }
}

@media screen and (min-width: 1199px) {
  p {
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 1440px) {
  p {
    margin-bottom: 50px;
  }
}

p.intro {
  font-size: 1.0625em;
  font-weight: 600;
}

@media screen and (min-width: 992px) {
  p.intro {
    font-size: 1.375em;
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 1199px) {
  p.intro {
    font-size: 1.875em;
  }
}

main {
  max-width: 1690px;
  margin: 0 auto;
  position: relative;
}

.box-bg-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.box-bg-container .snake1 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  transform: translate3d(20%, -8.5vw, 0);
}

.box {
  position: relative;
  padding: 2em 1em 0;
  z-index: 15;
  max-width: 1732px;
  margin: 0 auto 2em;
}

@media screen and (min-width: 768px) {
  .box {
    padding-top: 4em;
  }
}

.box__inner {
  max-width: 1199px;
  margin: 0 auto;
  position: relative;
}

.box .box-border {
  border-radius: 15px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  z-index: 10;
  max-width: 1199px;
}

.box .box-background {
  padding: 2em 1em;
  text-align: center;
  position: relative;
}

@media screen and (min-width: 576px) {
  .box .box-background {
    padding: 2em 3em;
  }
}

@media screen and (min-width: 992px) {
  .box .box-background {
    padding: 4em 5em;
  }
}

.box .box-background--blueRibbon {
  background: #303dfb;
}

.box .box-background--white {
  background: #ffffff;
  color: #0c2149;
}

.box .box-background--white h3 {
  color: #303dfb;
}

@media screen and (min-width: 768px) {
  .box .box-background--trolly-padding {
    padding-bottom: 7em;
  }
}

@media screen and (min-width: 992px) {
  .box .box-background--trolly-padding {
    padding-bottom: 9em;
  }
}

@media screen and (min-width: 1199px) {
  .box .box-background--trolly-padding {
    padding-bottom: 12em;
  }
}

@media screen and (min-width: 768px) {
  .box .box-background--bike-padding {
    padding-bottom: 18em;
  }
}

@media screen and (min-width: 992px) {
  .box .box-background--bike-padding {
    padding-bottom: 25em;
  }
}

@media screen and (min-width: 1199px) {
  .box .box-background--bike-padding {
    padding-bottom: 30em;
  }
}

.charts-row {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .charts-row {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.botlef-graphic {
  position: absolute;
  bottom: -1px;
  left: 0;
  display: none;
}

@media screen and (min-width: 768px) {
  .botlef-graphic {
    display: block;
    max-width: 200px;
  }
}

@media screen and (min-width: 1199px) {
  .botlef-graphic {
    max-width: 350px;
  }
}

.trolly-graphic {
  position: absolute;
  bottom: 0;
  left: -1%;
  display: none;
  width: 102%;
  max-width: none;
}

@media screen and (min-width: 768px) {
  .trolly-graphic {
    display: block;
  }
}

.disk {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom left;
  width: 70px;
  height: 70px;
}

@media screen and (min-width: 992px) {
  .disk {
    width: 100px;
    height: 100px;
  }
}

.disk__green {
  background-image: url(../images/green-disk.svg);
}

.disk__orange {
  background-image: url(../images/orange-disk.svg);
}

.unpredictable-box .disk__green {
  position: absolute;
  bottom: 20%;
  right: -35px;
  display: none;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .unpredictable-box .disk__green {
    display: block;
  }
}

@media screen and (min-width: 992px) {
  .unpredictable-box .disk__green {
    bottom: 20%;
    right: -60px;
  }
}

.bike-graphic {
  position: absolute;
  bottom: 0;
  left: -6%;
  display: none;
  width: 100%;
  max-width: none;
  background-image: url(../images/bike-graphic.svg);
  background-size: contain;
  height: 20%;
  background-repeat: no-repeat;
  background-position: bottom left;
  z-index: 10;
}

@media screen and (min-width: 768px) {
  .bike-graphic {
    display: block;
  }
}

.text-content {
  position: relative;
  z-index: 15;
  text-align: center;
  transform: translate3d(0, 0, 0);
  background: #0E214B;
  overflow: hidden;
}

.text-content .content {
  padding: 1em;
  margin: 0 auto;
  width: 95vw;
  max-width: 768px;
  z-index: 10;
  position: relative;
}

@media screen and (min-width: 768px) {
  .text-content .content {
    padding: 2em;
  }
}

@media screen and (min-width: 1199px) {
  .text-content .content {
    max-width: 1199px;
  }
}

.text-content .content__xs {
  max-width: 576px;
  margin-left: auto;
  margin-right: auto;
}

.text-content .content__sm {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

.text-content .content__md {
  max-width: 992px;
  margin-left: auto;
  margin-right: auto;
}

.text-content .content .percentage {
  margin: 0.5em 0 1em 0;
}

@media screen and (min-width: 768px) {
  .text-content .content .percentage {
    margin: 2em 0;
  }
}

.text-content .content--max-width-80 {
  width: 60%;
}

.text-content .icon-graphic {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
  display: none;
}

@media screen and (min-width: 992px) {
  .text-content .icon-graphic {
    display: block;
  }
}

.text-content .icon-graphic:before, .text-content .icon-graphic:after {
  content: "";
  width: 250px;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: contain;
}

@media screen and (min-width: 1199px) {
  .text-content .icon-graphic:before, .text-content .icon-graphic:after {
    width: 300px;
  }
}

@media screen and (min-width: 1690px) {
  .text-content .icon-graphic:before, .text-content .icon-graphic:after {
    width: 340px;
  }
}

.text-content .icon-graphic:before {
  background-image: url(/dist/images/contingency_left.png);
}

.text-content .icon-graphic:after {
  background-image: url(/dist/images/contingency_right.png);
  right: 0;
  left: auto;
}

.content__xs {
  max-width: 576px;
  margin-left: auto;
  margin-right: auto;
}

.content__sm {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

.content__md {
  max-width: 992px;
  margin-left: auto;
  margin-right: auto;
}

.delivery-trends h2 {
  line-height: 1.2;
}

.delivery-trends small {
  display: block;
  font-weight: 400;
  font-size: 50%;
}

@media screen and (min-width: 992px) {
  .contingency-box .content {
    padding-top: 4em;
  }
}

@media screen and (min-width: 1199px) {
  .contingency-box .content {
    padding: 4em 11em 1em 11em;
  }
}

@media screen and (min-width: 1440px) {
  .contingency-box .content {
    padding: 4em 1em 1em 1em;
  }
}

.annual-trends {
  position: relative;
  z-index: 10;
  max-width: 992px;
  margin: 0 auto;
}

.predicted-growth {
  margin: 2em 0;
}

@media screen and (min-width: 768px) {
  .predicted-growth {
    max-width: 1125px;
    margin: 2em 4em;
  }
}

@media screen and (min-width: 1199px) {
  .predicted-growth {
    margin: 4em 4em;
  }
}

@media screen and (min-width: 1440px) {
  .predicted-growth {
    margin: 6em 4em;
  }
}

.predicted-growth h3 {
  color: #303dfb;
}

section.growth-box .chart {
  flex-grow: 1;
}

@media screen and (min-width: 1199px) {
  section.growth-box .percentage-box__text-right {
    margin-left: 5em;
  }
}

.unpredictable-box {
  overflow: visible;
  z-index: 40;
}

.unpredictable-box .box {
  padding-top: 0;
}

.unpredictable-box .snake2 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  width: 100%;
  transform: translate3d(0, -7em, 0);
}

.play {
  opacity: 1;
}

.play:after {
  display: block;
  content: "";
  height: 70px;
  width: 70px;
  background-image: url(../images/play-btn__blue.svg);
  position: absolute;
  left: 50%;
  top: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin-left: -35px;
  margin-top: -40px;
}

@media screen and (min-width: 768px) {
  .play:after {
    height: 100px;
    width: 100px;
    margin-left: -50px;
    margin-top: -60px;
  }
}

@media screen and (min-width: 992px) {
  .play:after {
    height: 120px;
    width: 120px;
    margin-left: -60px;
    margin-top: -70px;
  }
}

@media screen and (min-width: 1199px) {
  .play:after {
    height: 150px;
    width: 150px;
    margin-left: -75px;
    margin-top: -95px;
  }
}

.play__orange:after {
  background-image: url(../images/play-btn__orange.svg);
}

.play__white:after {
  background-image: url(../images/play-btn__white.svg);
}

@media screen and (min-width: 992px) {
  .play:hover:after {
    opacity: 0.8;
    transition: opacity 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
}

.case_study {
  margin: 0 0 2.5em 0;
}

@media screen and (min-width: 768px) {
  .case_study:last-child {
    margin-bottom: 3em;
  }
}

.case_study__img {
  border-radius: 25px;
  position: relative;
  overflow: hidden;
  margin: 0;
  display: block;
}

.case_study__img:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 58.49056604%;
}

.case_study__img .asset {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 25px;
  width: 100%;
  height: 100%;
}

.case_study__vid {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 100000;
  width: 100%;
  height: 100%;
  margin: 0 !important;
}

.case_study a {
  margin-top: 2em;
}

@media screen and (min-width: 768px) {
  .share-volumes-box .percentage-box {
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .share-volumes-box .radialChart,
  .share-volumes-box .pieChart {
    width: 50%;
  }
}

@media screen and (min-width: 992px) {
  .share-volumes-box .radialChart,
  .share-volumes-box .pieChart {
    width: 33.33%;
  }
}

.out-home-delivery-box {
  z-index: 50;
}

@media screen and (min-width: 992px) {
  .out-home-delivery-box .box {
    padding-top: 5em;
  }
}

.out-home-delivery-box .case_study {
  margin-top: 20px;
}

@media screen and (min-width: 768px) {
  .out-home-delivery-box .case_study {
    margin-top: 40px;
  }
}

@media screen and (min-width: 1199px) {
  .out-home-delivery-box .case_study {
    margin-top: 50px;
  }
}

.out-home-delivery-box .out-of-delivery-graphic {
  position: absolute;
  bottom: 0;
  left: -1%;
  display: none;
  width: 102%;
  max-width: none;
}

@media screen and (min-width: 768px) {
  .out-home-delivery-box .out-of-delivery-graphic {
    display: block;
  }
}

.out-home-delivery-box .snake5 {
  background-image: url(../images/snake5.svg);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 5;
  background-position: right top;
  background-repeat: no-repeat;
  width: 50vw;
  height: 100%;
}

.out-home-delivery-box .disk {
  display: none;
}

@media screen and (min-width: 768px) {
  .out-home-delivery-box .disk {
    display: block;
  }
}

.out-home-delivery-box .disk__orange {
  position: absolute;
  top: 30%;
  right: -35px;
  z-index: 10;
}

.out-home-delivery-box .disk__green {
  position: absolute;
  top: 35%;
  left: -35px;
  z-index: 10;
}

.out-home-delivery-box .percentage-box {
  align-items: center;
}

.out-home-delivery-box .percentage-box span {
  max-width: 340px;
}

@media screen and (min-width: 992px) {
  .out-home-delivery-box .percentage-box span {
    font-size: 22px;
  }
}

@media screen and (min-width: 768px) {
  .out-home-delivery-box .box-background {
    padding: 2em 3em 12em 3em;
  }
}

@media screen and (min-width: 992px) {
  .out-home-delivery-box .box-background {
    padding: 6em 3em 20em 3em;
  }
}

.delivery-options-box .graphic-box {
  margin-bottom: 0;
}

.delivery-options-box .graphic-box img {
  max-width: 200px;
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .delivery-options-box .graphic-box img {
    max-width: 400px;
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 768px) {
  .record-returns-box .box-background {
    padding-bottom: 0;
  }
}

.record-returns-box .percentage-box {
  max-width: 768px;
}

.record-returns-box .percentage-box span {
  font-size: 1.125em;
}

@media screen and (min-width: 992px) {
  .record-returns-box .percentage-box span {
    font-size: 1.625em;
  }
}

@media screen and (min-width: 1199px) {
  .record-returns-box .percentage-box span {
    font-size: 1.875em;
  }
}

@media screen and (min-width: 768px) {
  .record-returns-box .btn {
    margin-top: 30px;
  }
}

@media screen and (min-width: 992px) {
  .record-returns-box .btn {
    margin-top: 45px;
  }
}

.record-returns-box .record-returns-box-graphic {
  display: none;
}

@media screen and (min-width: 768px) {
  .record-returns-box .record-returns-box-graphic {
    display: block;
    margin: 0 auto;
    max-width: 600px;
  }
}

@media screen and (min-width: 992px) {
  .record-returns-box .record-returns-box-graphic {
    max-width: 720px;
  }
}

.retention-tool-box-graphic {
  display: none;
}

@media screen and (min-width: 768px) {
  .retention-tool-box-graphic {
    display: block;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .shipping-savings-box {
    padding-bottom: 15em;
  }
}

@media screen and (min-width: 992px) {
  .shipping-savings-box {
    padding-bottom: 20em;
  }
}

@media screen and (min-width: 1199px) {
  .shipping-savings-box {
    padding-bottom: 27em;
  }
}

.shipping-savings-box-graphic {
  position: absolute;
  bottom: 0;
  left: -1%;
  display: none;
  width: 102%;
  max-width: none;
}

@media screen and (min-width: 768px) {
  .shipping-savings-box-graphic {
    display: block;
  }
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.embed-container__video {
  border-radius: 25px;
  overflow: hidden;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.relative {
  position: relative;
}

.btn {
  background: #303dfb;
  padding: 0.5em 1.5em;
  display: inline-block;
  color: white;
  text-align: center;
  margin: 1em auto;
  border-radius: 5px;
  font-size: 0.875em;
  font-weight: 600;
  opacity: 1;
  transition: opacity 600ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

@media screen and (min-width: 768px) {
  .btn {
    font-size: 1em;
    padding: 0.5em 2em;
  }
  .btn:hover {
    opacity: 0.8 !important;
  }
}

@media screen and (min-width: 992px) {
  .btn {
    font-size: 1.125em;
  }
}

@media screen and (min-width: 1199px) {
  .btn {
    font-size: 1.25em;
  }
}

.btn__secondary {
  background: #00D166;
  color: #0f173c;
}

.btn__white {
  background: #ffffff;
  color: #0f173c;
}

.radialChart {
  padding: 1em 0;
  min-height: 350px;
  flex-grow: 1;
}

@media screen and (min-width: 1199px) {
  .radialChart {
    min-height: 550px;
  }
}

.radarChart {
  padding: 1em 0;
  min-height: 350px;
  flex-grow: 1;
}

@media screen and (min-width: 1199px) {
  .radarChart {
    min-height: 550px;
  }
}

.xyChart {
  padding: 1em 0;
  min-height: 500px;
  min-width: 600px;
}

@media screen and (min-width: 1199px) {
  .xyChart {
    min-height: 550px;
  }
}

.xy_chart_holder {
  overflow-x: scroll;
}

#multi_chart_nav {
  list-style-type: none;
  display: flex;
  justify-content: center;
}

#multi_chart_nav li {
  display: inline-block;
}

@media screen and (min-width: 768px) {
  #multi_chart_nav li {
    border-right: 2px solid #ccc;
  }
}

#multi_chart_nav li:last-of-type {
  border: 0;
}

#multi_chart_nav li a {
  border-radius: 25px;
  display: block;
  color: #0f173c;
  font-size: 0.75em;
  margin: 5px 1em;
  padding: 5px 1em;
  border: 1px solid #ccc;
}

@media screen and (min-width: 768px) {
  #multi_chart_nav li a {
    border-radius: 0;
    border: 1px solid white;
    display: inline-block;
    font-size: 0.875em;
  }
}

@media screen and (min-width: 1199px) {
  #multi_chart_nav li a {
    font-size: 1em;
    margin: 5px 1em;
    padding: 5px 1em;
  }
}

#multi_chart_nav li a.active {
  border-radius: 25px;
  color: #303dfb;
  border: 1px solid #303dfb;
}

.pieChart {
  padding: 1em 0;
  min-height: 350px;
  flex-grow: 1;
}

@media screen and (min-width: 1199px) {
  .pieChart {
    min-height: 550px;
  }
}

.footnote {
  padding-bottom: 30px;
}

.footnote small {
  opacity: 0.7;
}

.percentage-box {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 600px;
  margin: 2em auto 1em auto;
}

@media screen and (min-width: 768px) {
  .percentage-box {
    margin: 4em auto;
  }
}

@media screen and (min-width: 1199px) {
  .percentage-box {
    max-width: 992px;
  }
}

.percentage-box img {
  align-self: center;
  width: 80%;
}

.percentage-box img.box-img {
  margin-top: 20px;
  max-width: 150px;
}

@media screen and (min-width: 992px) {
  .percentage-box img.box-img {
    max-width: 180px;
  }
}

@media screen and (min-width: 1199px) {
  .percentage-box img.box-img {
    max-width: 250px;
  }
}

.percentage-box span {
  font-family: 'Epilogue', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4em;
  margin: 1em auto;
}

.percentage-box__text-right span {
  max-width: 300px;
}

@media screen and (min-width: 992px) {
  .percentage-box__text-right {
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
  }
  .percentage-box__text-right span {
    display: inline-block;
    max-width: 300px;
    text-align: left;
    margin: 0;
    margin-left: 1em;
  }
}

@media screen and (min-width: 992px) {
  .percentage-box__text-bottom span {
    font-size: 1.875em;
  }
}

@media screen and (min-width: 1199px) {
  .percentage-box__text-bottom span {
    font-size: 2.5em;
  }
}

.perc10-7 {
  max-width: 200px;
}

@media screen and (min-width: 992px) {
  .perc10-7 {
    max-width: 368px;
  }
}

.perc2 {
  max-width: 120px;
}

@media screen and (min-width: 992px) {
  .perc2 {
    max-width: 150px;
  }
}

.perc82 {
  max-width: 300px;
}

@media screen and (min-width: 992px) {
  .perc82 {
    max-width: 487px;
  }
}

.perc70 {
  max-width: 300px;
}

@media screen and (min-width: 992px) {
  .perc70 {
    max-width: 487px;
  }
}

.perc81 {
  max-width: 300px;
}

@media screen and (min-width: 992px) {
  .perc81 {
    max-width: 487px;
  }
}

.graphic-box {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  max-width: 768px;
  margin: 2em auto 1em auto;
}

@media screen and (min-width: 768px) {
  .graphic-box {
    margin: 4em auto;
  }
}

.graphic-box img {
  align-self: center;
  width: 80%;
}

.graphic-box img.box-img {
  margin-top: 20px;
  max-width: 150px;
}

@media screen and (min-width: 992px) {
  .graphic-box img.box-img {
    max-width: 180px;
  }
}

@media screen and (min-width: 1199px) {
  .graphic-box img.box-img {
    max-width: 250px;
  }
}

.graphic-box img.marker {
  max-width: 90px;
}

@media screen and (min-width: 992px) {
  .graphic-box img.marker {
    max-width: 100px;
  }
}

@media screen and (min-width: 1199px) {
  .graphic-box img.marker {
    max-width: 115px;
  }
}

.graphic-box span {
  font-family: 'Epilogue', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4em;
  margin: 1em auto;
}

@media screen and (min-width: 992px) {
  .graphic-box__text-right span {
    font-size: 22px;
  }
}

@media screen and (min-width: 992px) {
  .graphic-box__text-right {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
  .graphic-box__text-right span {
    display: inline-block;
    text-align: left;
    margin: 0;
    margin-left: 1em;
  }
}

.animate-on-scroll {
  opacity: 0;
  transition: all .5s ease;
  transition-delay: .4s;
}

.animate-on-scroll.animate-fadeindown {
  transform: translate3d(0, -100px, 0);
}

.animate-on-scroll.animate-fadeinup {
  transform: translate3d(0, 100px, 0);
}

.animate-on-scroll.animate-fadeinright {
  transform: translate3d(-100px, 0, 0);
}

.animate-on-scroll.animate-in {
  opacity: 1;
}

.animate-on-scroll.animate-in.animate-fadeindown, .animate-on-scroll.animate-in.animate-fadeinup, .animate-on-scroll.animate-in.animate-fadeinright {
  transform: translate3d(0, 0, 0);
}

header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  padding: 1em 0;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

header .btn {
  margin: 1em;
}

header .header__nav {
  display: none;
  padding: 0 1em 0 1em;
  margin-left: auto;
}

@media screen and (min-width: 768px) {
  header .header__nav {
    display: block;
  }
}

header nav a {
  display: block;
  color: #0f173c;
  padding: 0.5em 0;
  border-top: 1px solid #D7D7D7;
  font-size: 0.9375em;
}

header nav a:first-child {
  border-top: none;
}

@media screen and (min-width: 768px) {
  header nav a {
    color: #ffffff;
    display: inline-block;
    margin: 0 1em;
    border-top: none;
  }
}

@media screen and (max-width: 767px) {
  .nav-open header {
    background: #ffffff;
  }
  .nav-open header .header__nav {
    display: block;
    position: absolute;
    top: 94px;
    left: 0;
    background: white;
    width: 100%;
  }
  .nav-open header .logo {
    background-image: url(../images/Metapack-Logo.svg);
  }
}

header .logo {
  display: block;
  margin-left: 1em;
  margin-right: auto;
  height: 90px;
  width: 98px;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  background-image: url(../images/logo.svg);
}

@media screen and (min-width: 768px) {
  header .logo {
    margin-left: 2em;
    width: 130px;
  }
}

@media screen and (min-width: 992px) {
  header .logo {
    width: 160px;
  }
}

header .logo img {
  display: none;
  width: 100%;
}

.nav-toggle {
  background: none;
  border: none;
  color: #000000;
  display: inline-block;
  height: 30px;
  margin: 1em;
  position: relative;
  text-align: center;
  z-index: 100;
  outline: 0;
  padding: 0;
  width: 30px;
}

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

.nav-toggle span {
  -webkit-backface-visibility: hidden;
  background-color: white;
  pointer-events: none;
  position: absolute;
  height: 2px;
  top: 50%;
  left: 50%;
  width: 100%;
}

.nav-toggle span:first-child, .nav-toggle span:nth-child(2) {
  width: 0;
  transform-origin: 0 0;
  transform: rotate(-45deg) translate(-50%, -50%);
  transition: width 444ms cubic-bezier(0.237, 0, 0.237, 1);
}

.nav-toggle span:nth-child(2) {
  transform: rotate(45deg) translate(-50%, -50%);
}

.nav-toggle span:nth-child(3), .nav-toggle span:nth-child(4), .nav-toggle span:nth-child(5) {
  transition: width 444ms cubic-bezier(0.237, 0, 0.237, 1) 444ms, transform 444ms cubic-bezier(0.237, 0, 0.237, 1) 444ms;
}

.nav-toggle span:nth-child(3) {
  transform: translate(-60%, -7px);
}

.nav-toggle span:nth-child(4) {
  transform: translate(-60%, 0);
}

.nav-toggle span:nth-child(5) {
  transform: translate(-60%, 7px);
}

.nav-open .nav-toggle span {
  background: #0f173c;
}

.nav-open .nav-toggle span:first-child, .nav-open .nav-toggle span:nth-child(2) {
  width: 50%;
  transition: width 444ms cubic-bezier(0.237, 0, 0.237, 1) 444ms;
}

.nav-open .nav-toggle span:nth-child(3), .nav-open .nav-toggle span:nth-child(4), .nav-open .nav-toggle span:nth-child(5) {
  width: 0;
  transition: width 444ms cubic-bezier(0.237, 0, 0.237, 1), transform 444ms cubic-bezier(0.237, 0, 0.237, 1);
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translate(-50%, -500%);
}

.nav-open .nav-toggle span:nth-child(4) {
  transform: translate(-50%, -50%);
}

.nav-open .nav-toggle span:nth-child(5) {
  transform: translate(-50%, 400%);
}

footer .footer__inner {
  padding: 2em;
}

@media screen and (min-width: 768px) {
  footer .footer__inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
  }
}

footer .logo {
  display: block;
  margin: 0 auto 1em auto;
  max-width: 90px;
}

@media screen and (min-width: 768px) {
  footer .logo {
    max-width: 120px;
    margin: 0;
  }
}

footer .logo img {
  width: 100%;
}

footer .footer__nav {
  padding: 0 1em 0 1em;
  opacity: 0.5;
}

@media screen and (min-width: 768px) {
  footer .footer__nav {
    text-align: left;
    display: flex;
    justify-content: space-between;
    width: 70%;
  }
}

@media screen and (min-width: 992px) {
  footer .footer__nav {
    width: 60%;
  }
}

footer .footer__nav nav {
  line-height: 1;
}

footer a, footer p {
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 13px;
}

@media screen and (min-width: 768px) {
  footer a, footer p {
    font-size: 12px;
  }
}

footer .copyright {
  margin-top: 10px;
  opacity: 0.5;
}

@media screen and (min-width: 768px) {
  footer .copyright {
    margin-top: 0;
    text-align: left;
    text-align: right;
  }
}

footer nav a {
  display: inline-block;
  border-right: 1px solid #fff;
  padding-left: 5px;
  padding-right: 5px;
}

footer nav a:last-child {
  border: none;
}

footer .btn {
  font-size: 15px;
}

section.banner {
  background: #303dfb;
}

section.banner h1 {
  margin-bottom: 0;
}

@media screen and (min-width: 1440px) {
  section.banner h1 {
    margin-bottom: 0;
  }
}

section.banner h5 {
  margin-bottom: 20px;
}

@media screen and (min-width: 1199px) {
  section.banner h5 {
    margin-bottom: 35px;
  }
}

section.banner .banner__top {
  background: #303dfb;
  padding-top: 100px;
  position: relative;
}

@media screen and (min-width: 1199px) {
  section.banner .banner__top {
    padding-top: 85px;
  }
}

section.banner .banner__top .content {
  padding-bottom: 0;
}

section.banner .banner__bottom {
  padding-top: 20px;
}

@media screen and (min-width: 992px) {
  section.banner .banner__bottom {
    padding-top: 30px;
  }
}

section.banner .content {
  max-width: 550px;
}

@media screen and (min-width: 768px) {
  section.banner .content {
    max-width: 650px;
  }
}

@media screen and (min-width: 992px) {
  section.banner .content {
    max-width: 750px;
    padding-top: 50px;
  }
}

@media screen and (min-width: 1199px) {
  section.banner .content {
    max-width: 960px;
  }
}

.banner-background {
  background: #303dfb;
  position: relative;
  z-index: 10;
}

.banner-background:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 42.96875%;
}

.banner-background img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.banner-background .container {
  justify-content: space-between;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  align-items: center;
}
/* (ignored) */