@import url("//hello.myfonts.net/count/2ddfcf");

/*
* Style.scss
*
* Numiko Framework
*
* The order of files reflects the natural CSS cascade of specificity. We start with global vairables and work down to the most specific classes.
*
*
*
* [1]  Frameworks
* 		- External framrworks, Susy, Breakpoint and other SCSS systems.If you are using a framrwork, include it directly rather than a GEM.
* [2]  Config
* 		- Vairables at a global level, grid settings and font and colour vairables required for the site.
* [3]  Core
* 		- Mixinss, normalise and helper classes. Only mixins in the mixin file, helpers should comprise only of classes.
* [4]  Base
* 		- Typography, lists, forms, tables. Basic styling WITHOUT classes.
* [5]  Vendor
* 		- Vendor CSS from plugins or other frameworks.
* [6]  Layout
* 		- The core site layout based on grids and breakpoints.
* [7]  Objects
* 	    - Object abstractions that combine often repeated layouts.
* [8]  Components
* 	    - The primary elements of the site, created from objects and layouts,
*         these define the elements that reflect the design and UI of the site.
* [9]  States
* 	    - Page based alterations to the layout, design or UI.
* [10] Temp
* 	    - Styles that are either temporary during developlent or require work to re-factor a more appropriate
* 	      part of the framework.
*/

/*
 * [0] Choose theme
*/

/*
 * [1] Vendor - Frameworks
 *
 * https://github.com/at-import/breakpoint
 * https://github.com/douglasduteil/fake-breakpoint-slicer
 * http://albertogasparin.it/articles/2014/09/breakpoint-library-and-libsass/
 * https://github.com/ericam/susy/pull/406
*/

/*
 * [2] Config
*/

/*
 * [3] Core
*/

/* Mixins
* [1] Rems and Ems
* [2] Psuedo Blocks
* [3] Hide visibility (accessible)
* [4] Prevent webkit GPU flash
* [5] Breakpoint Slicer mixin (with susy with-layout())
*/

/*
* [1] Property handling with ems and rems
* Ems = font-size: em(20px);
* Rems = @include rem-property(font-size, 24px) or rem-property(line-height, 24px)
*/

/*
* [2] Psudo Blocks
* Quick method to create psudo blocks
*/

/*
* [3] Hides an element visually, but makes it still available for screenreaders
*/

/*
* [4] Prevent webkit GPU flash
*/

/*
* [5]Breakpoint Slicer mixin wrappers (with susy with-layout())
*/

/*
* [6] SVG png fallback
*/

/*
* [6] SVG Background mixin - png fallback
*/

/*! 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;
  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"] {
  -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;
  /* 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;
}

/*
*  Clearfix & Clear classes
*/

.clearfix,
.cookie-message {
  zoom: 1;
}

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

.clearfix:after,
.cookie-message:after {
  clear: both;
}

.clear {
  clear: both;
}

/*
*  Accessibility 
*/

.visuallyhidden,
.element-invisible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

.invisible {
  visibility: hidden;
}

.ir,
.primary-brand.o2,
.primary-brand.c4,
.secondary-brand.c4,
.secondary-brand.o2,
.article-header-brand .article-header-brand-o2 {
  display: block;
  border: 0;
  text-indent: -999em;
  overflow: hidden;
  background-color: transparent;
  background-repeat: no-repeat;
  text-align: left;
  direction: ltr;
}

.ir br,
.primary-brand.o2 br,
.primary-brand.c4 br,
.secondary-brand.c4 br,
.secondary-brand.o2 br,
.article-header-brand .article-header-brand-o2 br {
  display: none;
}

/*
* Reset List - Remove the standard styling off a UL/OL
*/

.reset-list,
.nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

/*
* Inine list - Create a basic horizontal style list
*/

.nav-list > li {
  display: inline-block;
}

/*
 * [4] Base
*/

/*
* Font face declarations
*/

/**
 * @license
 * MyFonts Webfont Build ID 3006415, 2015-04-09T12:55:34-0400
 *
 * The fonts listed in this notice are subject to the End User License
 * Agreement(s) entered into by the website owner. All other parties are
 * explicitly restricted from using the Licensed Webfonts(s).
 *
 * You may obtain a valid license at the URLs below.
 *
 * Webfont: FrutigerLTPro-Bold by Linotype
 * URL: http://www.myfonts.com/fonts/linotype/frutiger/pro-65-bold/
 * Licensed pageviews: 4,000,000
 *
 * Webfont: FrutigerLTPro-Roman by Linotype
 * URL: http://www.myfonts.com/fonts/linotype/frutiger/pro-55-roman/
 * Licensed pageviews: 2,000,000
 *
 * Webfont: FrutigerLTPro-Light by Linotype
 * URL: http://www.myfonts.com/fonts/linotype/frutiger/frutiger-pro-45-light/
 * Licensed pageviews: 2,000,000
 *
 * Webfont: FrutigerLTPro-LightItalic by Linotype
 * URL: http://www.myfonts.com/fonts/linotype/frutiger/pro-46-light-italic/
 * Licensed pageviews: 2,000,000
 *
 *
 * License: http://www.myfonts.com/viewlicense?type=web&buildid=3006415
 * Webfonts copyright: Part of the digitally encoded machine readable outline data for producing the Typefaces provided is copyrighted &#x00A9; 2006 Linotype GmbH, www.linotype.com. All rights reserved. This software is the property of Linotype GmbH, and may not be reproduced,
 *
 * © 2015 MyFonts Inc
*/

@font-face {
  font-family: 'FrutigerLTPro-Light';
  src: url('../fonts/2DDFCF_2_0.eot');
  src: url('../fonts/2DDFCF_2_0.eot?#iefix') format('embedded-opentype'), url('../fonts/2DDFCF_2_0.woff2') format('woff2'), url('../fonts/2DDFCF_2_0.woff') format('woff'), url('../fonts/2DDFCF_2_0.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'FrutigerLTPro-LightItalic';
  src: url('../fonts/2DDFCF_3_0.eot');
  src: url('../fonts/2DDFCF_3_0.eot?#iefix') format('embedded-opentype'), url('../fonts/2DDFCF_3_0.woff2') format('woff2'), url('../fonts/2DDFCF_3_0.woff') format('woff'), url('../fonts/2DDFCF_3_0.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'FrutigerLTPro-Roman';
  src: url('../fonts/2DDFCF_1_0.eot');
  src: url('../fonts/2DDFCF_1_0.eot?#iefix') format('embedded-opentype'), url('../fonts/2DDFCF_1_0.woff2') format('woff2'), url('../fonts/2DDFCF_1_0.woff') format('woff'), url('../fonts/2DDFCF_1_0.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'FrutigerLTPro-Bold';
  src: url('../fonts/2DDFCF_0_0.eot');
  src: url('../fonts/2DDFCF_0_0.eot?#iefix') format('embedded-opentype'), url('../fonts/2DDFCF_0_0.woff2') format('woff2'), url('../fonts/2DDFCF_0_0.woff') format('woff'), url('../fonts/2DDFCF_0_0.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'c4_headlineregular';
  src: url('../fonts/c4heareg-webfont.eot');
  src: url('../fonts/c4heareg-webfont.eot?#iefix') format('embedded-opentype'), url('../fonts/c4heareg-webfont.woff') format('woff'), url('../fonts/c4heareg-webfont.ttf') format('truetype'), url('../fonts/c4heareg-webfont.svg#c4_headlineregular') format('svg');
  font-weight: normal;
  font-style: normal;
}

*,
*:after,
*:before {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #4e4e4f;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  line-height: 1.4;
  font-size: 1em;
}

@media all and (min-width: 720px) {
  body {
    line-height: 1.4;
    font-size: 1.125em;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'c4_headlineregular', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  line-height: 1.25;
  font-weight: normal;
  margin-top: 1.4em;
  margin-bottom: 1em;
  color: #444D57;
}

h1 {
  font-size: 24px;
  font-size: 1.5rem;
}

@media all and (min-width: 720px) {
  h1 {
    font-size: 42px;
    font-size: 2.625rem;
  }
}

.article-header h1 {
  margin: 0;
  padding: 13px 68px 13px 20px;
  background-color: #DCA91F;
  color: #292929;
  display: inline-block;
  line-height: 22px;
  position: relative;
  font-size: 20px;
  font-size: 1.25rem;
}

.article-header h1:after {
  content: "";
  background-image: url(../img/raster/_svg2png/rounded-arrowhead.png);
  background-image: url(../img/svg/rounded-arrowhead.svg), none;
  background-repeat: no-repeat;
  color: #fff;
  line-height: 48px;
  text-align: center;
  background-color: #846513;
  width: 48px;
  height: 100%;
  position: absolute;
  right: 0px;
  top: 0;
}

h2 {
  font-size: 32px;
  font-size: 2rem;
}

h3 {
  font-size: 26px;
  font-size: 1.625rem;
}

h4 {
  font-size: 20px;
  font-size: 1.25rem;
}

h5 {
  font-size: 18px;
  font-size: 1.125rem;
}

h6 {
  font-size: 18px;
  font-size: 1.125rem;
}

p {
  margin-top: 0;
  margin-bottom: 0.7em;
}

a {
  color: #444D57;
  text-decoration: none;
  color: #fff;
}

a:hover {
  color: #22272c;
}

a:active,
a:focus {
  color: #22272c;
  outline: none;
}

hr {
  border-bottom: 1px solid #eee;
  border-left: none;
  border-right: none;
  border-top: none;
  margin: 1.4em 0;
}

img,
picture {
  margin: 0;
  max-width: 100%;
}

blockquote {
  border-left: 2px solid #eee;
  color: #747475;
  margin: 1.4em 0;
  padding-left: 0.7em;
}

cite {
  color: #8e8e8f;
  font-style: italic;
}

cite:before {
  content: "\2014 \00A0";
}

/*
* Default list styles
* What your standard lists should look like on the site
*/

ul,
ol,
dl {
  margin-top: 1.4em;
  margin-bottom: 1.4em;
}

/* Unordered List */

/* Ordered List */

/* Definition Lists */

dl dt {
  font-weight: bold;
}

/* 
* Nav list
*/

nav > ul,
nav > ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

form {
  background-color: #525252;
  padding: 0 25px 25px 25px;
}

@media all and (min-width: 720px) {
  form {
    margin-top: -2px;
    padding: 0 50px 50px 50px;
  }
}

form small {
  font-size: 16px;
  font-size: 1rem;
  font-family: 'c4_headlineregular', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  clear: both;
  display: block;
}

form#accept label:first-child {
  background-image: url(../img/raster/_svg2png/guidance.png);
  background-image: url(../img/svg/guidance.svg), none;
  background-repeat: no-repeat;
  padding-left: 65px;
  line-height: 45px;
  padding-left: 40px;
  line-height: 25px;
  background-size: 25px;
  font-size: 16px;
  font-size: 1rem;
}

fieldset {
  border-left: none;
  border-right: none;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  margin: 0;
  padding: 20px;
  padding: 25px;
  background-color: #292929;
  border-top: none;
  border-bottom: none;
  color: #fff;
}

@media all and (min-width: 720px) {
  fieldset {
    padding: 30px;
  }
}

@media all and (min-width: 720px) and (max-width: 1023px ) {
  fieldset {
    padding: 30px;
  }
}

input,
label,
select {
  display: block;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 18px;
  font-size: 1.125rem;
  font-family: 'c4_headlineregular', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  font-size: 14px;
  font-size: 0.875rem;
}

label {
  margin-bottom: 15px;
}

textarea,
input[type="text"],
select[multiple=multiple] {
  background-color: white;
  border: 1px solid #666;
  font-size: 18px;
  margin-bottom: 10px;
  padding: 0.4666666667em 0.4666666667em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: #292929;
  min-height: 37px;
}

textarea:hover,
input[type="text"]:hover,
select[multiple=multiple]:hover {
  border-color: #444D57;
}

textarea:focus,
input[type="text"]:focus,
select[multiple=multiple]:focus {
  border-color: #444D57;
  outline: none;
}

@media all and (min-width: 720px) {
  textarea,
  input[type="text"],
  select[multiple=multiple] {
    padding: 0.7em 0.7em;
    max-width: 360px;
    float: left;
    margin-right: 30px;
    margin-right: 1.875rem;
    margin-bottom: 15px;
  }
}

.form-submit {
  position: relative;
  background-color: #DCA91F;
  border: 1px solid #444D57;
  height: 37px;
  display: block;
}

@media all and (min-width: 720px) {
  .form-submit {
    display: inline-block;
    margin-left: -30px;
    padding-left: 20px;
  }
}

.form-submit:after {
  position: absolute;
  content: "";
  top: 0px;
  right: 0;
  width: 35px;
  height: 100%;
  background-image: url(../img/raster/_svg2png/play.png);
  background-image: url(../img/svg/play.svg), none;
  background-repeat: no-repeat;
}

input[type="submit"] {
  background-color: #444D57;
  color: #fff;
  border: 1px solid #444D57;
  font-size: 18px;
  margin-bottom: 10px;
  padding: 0.4666666667em 0.4666666667em;
  width: 100%;
  text-align: center;
  font-family: 'c4_headlineregular', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  background: none;
  color: #292929;
  text-align: left;
  position: relative;
  font-size: 14px;
  padding: 10px;
  height: 35px;
  z-index: 1;
  border: none;
}

@media all and (min-width: 720px) {
  input[type="submit"] {
    width: auto;
  }
}

input[type="submit"]:hover {
  border-color: #000;
}

input[type="submit"]:focus {
  border-color: #000;
  outline: none;
}

@media all and (min-width: 720px) {
  input[type="submit"] {
    padding: 0.7em 0.7em;
    float: left;
    margin-bottom: 15px;
    padding: 10px;
    padding-right: 45px;
  }
}

input.error,
input.error:hover,
input.error:focus {
  border-color: #ff0000;
  color: #ff0000;
}

span.error {
  color: #ff0000;
  clear: both;
  display: block;
}

textarea {
  resize: vertical;
}

/*
 * [5] Vendor - plugins
*/

/*
 * [6] Layout
*/

html {
  background: #DEDEDE;
}

body {
  background: #DEDEDE;
}

/*
 * The global primary container
 * Will restrict width - resuse everytime you want to lock content into the grid.
 */

.primary-container {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  border-color: transparent;
  border-style: solid;
  border-left-width: 10px;
  border-right-width: 10px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
  padding-top: 1.875rem;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  padding-top: 0;
  border-top: 0;
}

.primary-container:after {
  content: " ";
  display: block;
  clear: both;
}

@media all and (min-width: 480px) and (max-width: 719px ) {
  .primary-container {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-left-width: 20px;
    border-right-width: 20px;
    width: 460px;
  }

  .primary-container:after {
    content: " ";
    display: block;
    clear: both;
  }
}

@media all and (min-width: 720px) and (max-width: 1023px ) {
  .primary-container {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-left-width: 20px;
    border-right-width: 20px;
    width: 680px;
  }

  .primary-container:after {
    content: " ";
    display: block;
    clear: both;
  }

  .ipad-ios-6 .primary-container {
    width: 728px;
  }
}

@media all and (min-width: 1024px) and (max-width: 1199px ) {
  .primary-container {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-left-width: 20px;
    border-right-width: 20px;
    width: 920px;
  }

  .primary-container:after {
    content: " ";
    display: block;
    clear: both;
  }

  .ipad-ios-6 .primary-container {
    width: 728px;
  }
}

@media all and (min-width: 1200px) {
  .primary-container {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    border-left-width: 50px;
    border-right-width: 50px;
    max-width: 1300px;
    width: 1100px;
  }

  .primary-container:after {
    content: " ";
    display: block;
    clear: both;
  }
}

.primary-header {
  color: #fff;
  position: relative;
  height: 60px;
  height: 3.75rem;
}

@media all and (min-width: 720px) {
  .primary-header {
    height: 100px;
    height: 6.25rem;
  }
}

@media all and (min-width: 1024px) {
  .primary-header {
    height: 125px;
    height: 7.8125rem;
  }
}

.primary-main {
  background: #fff;
  background: #EAEAEA;
  padding-top: 30px;
}

.primary-main .description {
  font-family: 'c4_headlineregular', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  color: #fff;
  line-height: 24px;
  background: #525252;
  padding: 18px 25px 10px 25px;
  font-size: 16px;
  font-size: 1rem;
}

@media all and (min-width: 720px) {
  .primary-main .description {
    padding: 18px 50px 10px 50px;
  }
}

.primary-footer {
  color: #444D57;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: 'FrutigerLTPro-Roman', Helvetica, Arial, Sans-serif;
}

/*
 * [7] Objects
*/

/*
* Media Object - Aligns an image next to a block of text.
*/

.media {
  overflow: hidden;
}

.media__body {
  overflow: hidden;
}

.media__figure {
  float: left;
  margin-right: 0.7em;
}

.media__figure img {
  display: block;
}

.media__figure--rev {
  float: right;
  margin-left: 1.4em;
}

/*
* Flex-box alternative
*/

.fb-media {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.fb-media__figure {
  margin-right: 1.4em;
}

.fb-media__body {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

/*
* Flag Object - Aligns an image vertically next to a block of text.
*/

.flag {
  display: table;
  width: 100%;
}

.flag__figure,
.flag__body {
  display: table-cell;
  vertical-align: middle;
}

.flag--top .flag__figure,
.flag--top .flag__body {
  vertical-align: top;
}

.flag--bottom .flag__figure,
.flag--bottom .flag__body {
  vertical-align: bottom;
}

.flag__figure {
  padding-right: 1.4em;
}

.flag__figure > img {
  display: block;
  max-width: none;
}

.flag__figure--rev .flag__figure {
  padding-right: 0;
  padding-left: 1.4em;
}

.flag__body {
  width: 100%;
}

/*
* Video - resizes responsively
*/

.code-error {
  text-align: center;
  color: #fff;
  padding: 30px;
  display: block;
}

.video-wrapper {
  width: 100%;
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  background: #000;
  margin: 0;
}

.video-wrapper iframe,
.video-wrapper > span,
.video-wrapper object,
.video-wrapper .BrightcoveExperience {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
}

.video-wrapper.player-aspect-16-10 {
  padding-bottom: 62.5%;
}

.video-wrapper.player-aspect-16-9 {
  padding-bottom: 56.25%;
}

.video-wrapper.player-aspect-4-3 {
  padding-bottom: 75%;
}

/*
 * [8] Components
*/

.site-branding {
  color: #fff;
  margin: 0;
  position: absolute;
  left: 0;
  font-family: 'FrutigerLTPro-Roman', Helvetica, Arial, Sans-serif;
  width: 170px;
  height: 40px;
  font-size: 8px;
  font-size: 0.5rem;
}

@media all and (min-width: 720px) {
  .site-branding {
    font-size: 14px;
    font-size: 0.875rem;
    width: 300px;
    height: 72px;
  }
}

@media all and (min-width: 1024px) {
  .site-branding {
    top: 32px;
    top: 2rem;
  }
}

.primary-brand,
.brand-text,
.secondary-brand {
  position: absolute;
}

.primary-brand {
  top: 0;
  left: 0;
  display: inline-block;
}

.primary-brand.o2 {
  background-image: url(../img/raster/_svg2png/o2-logo.png);
  background-image: url(../img/svg/o2-logo.svg), none;
  background-repeat: no-repeat;
  width: 41px;
  height: 40px;
}

@media all and (min-width: 720px) {
  .primary-brand.o2 {
    width: 68px;
    height: 67px;
  }
}

.primary-brand.c4 {
  background-image: url(../img/raster/_svg2png/all4-logo-colour.png);
  background-image: url(../img/svg/all4-logo-colour.svg), none;
  background-repeat: no-repeat;
  width: 60px;
  height: 40px;
}

@media all and (min-width: 720px) {
  .primary-brand.c4 {
    top: 3px;
    width: 100px;
    height: 70px;
  }
}

.brand-text {
  top: 23px;
  left: 50px;
}

.c4 + .brand-text {
  left: 70px;
  color: #444D57;
}

@media all and (min-width: 720px) {
  .c4 + .brand-text {
    left: 125px;
  }
}

@media all and (min-width: 720px) {
  .brand-text {
    top: 40px;
    left: 114px;
  }
}

.secondary-brand {
  top: 18px;
  right: 20px;
  display: inline-block;
}

.secondary-brand.c4 {
  width: 32px;
  height: 20px;
  background-image: url(../img/raster/_svg2png/all4-logo.png);
  background-image: url(../img/svg/all4-logo.svg), none;
  background-repeat: no-repeat;
}

@media all and (min-width: 720px) {
  .secondary-brand.c4 {
    width: 79px;
    height: 52px;
    top: 21px;
    right: 5px;
  }
}

.secondary-brand.o2 {
  width: 25px;
  height: 25px;
  background-image: url(../img/raster/_svg2png/o2-logo-colour.png);
  background-image: url(../img/svg/o2-logo-colour.svg), none;
  background-repeat: no-repeat;
  top: 13px;
  right: 0;
}

@media all and (min-width: 720px) {
  .secondary-brand.o2 {
    width: 40px;
    height: 40px;
    top: 23px;
    right: 30px;
  }
}

.priority-branding {
  display: none;
}

.ad-container {
  background: #c8c8c8;
  width: 728px;
  height: 90px;
  margin: 0 auto;
  display: none;
}

@media all and (min-width: 1024px) {
  .ad-container {
    display: block;
  }
}

.article-body {
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-bottom: 20px;
  padding-bottom: 1.25rem;
}

@media all and (min-width: 720px) and (max-width: 1023px ) {
  .article-body {
    padding-left: 30px;
    padding-left: 1.875rem;
    padding-right: 30px;
    padding-right: 1.875rem;
    padding-top: 30px;
    padding-top: 1.875rem;
    padding-bottom: 30px;
    padding-bottom: 1.875rem;
  }
}

.article-header h1,
.article-header .article-header-brand {
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}

@media all and (min-width: 720px) {
  .article-header h1,
  .article-header .article-header-brand {
    width: auto;
    height: 48px;
  }
}

.article-header-brand {
  display: block;
  background: #fff;
  margin: 0;
  padding: 10px 20px 6px 20px;
  position: relative;
}

@media all and (min-width: 720px) {
  .article-header-brand {
    float: right;
  }
}

.article-header-brand .article-header-brand-text,
.article-header-brand .article-header-brand-o2 {
  display: table-cell;
  vertical-align: middle;
}

.article-header-brand .article-header-brand-text {
  font-family: 'c4_headlineregular', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  color: #999999;
  padding-right: 10px;
  font-size: 14px;
  font-size: 0.875rem;
}

.article-header-brand .article-header-brand-o2 {
  background-image: url(../img/raster/_svg2png/o2-logo-colour.png);
  background-image: url(../img/svg/o2-logo-colour.svg), none;
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
}

.article-media {
  padding: 0;
  margin: 0;
  width: 100%;
  padding: 0;
  background: #525252;
}

@media all and (min-width: 720px) {
  .article-media {
    padding: 0 50px 50px 50px;
  }
}

.article-body {
  color: #fff;
  padding: 20px;
  font-family: 'c4_headlineregular', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

@media all and (min-width: 720px) {
  .article-body {
    padding: 20px 0 0px 0px;
  }
}

.article-body p {
  margin: 0;
}

.article-body a:hover {
  color: #fff;
  text-decoration: none;
}

div.article-body {
  color: #fff;
  padding: 25px;
  font-family: 'c4_headlineregular', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  background: #525252;
}

@media all and (min-width: 720px) {
  div.article-body {
    padding: 50px;
  }
}

div.article-body p {
  padding: 25px;
  background-color: #292929;
  color: #fff;
}

@media all and (min-width: 720px) {
  div.article-body p {
    padding: 30px;
  }
}

.footer-nav {
  padding-top: 30px;
  padding-top: 1.875rem;
  padding-bottom: 15px;
  padding-bottom: 0.9375rem;
}

.footer-nav li {
  margin: 0 1rem;
}

.footer-nav li:first-child {
  margin-left: 0;
}

.footer-nav a {
  color: #444D57;
  display: block;
}

.cookie-message {
  background: #fff;
  padding: 20px;
  font-size: 12px;
  display: none;
}

@media all and (min-width: 1024px) {
  .cookie-message {
    padding: 20px 30px;
  }
}

@media all and (min-width: 1024px) {
  .cookie-message p {
    margin: 0 180px 0 0;
    max-width: 850px;
  }
}

.cookie-message p a {
  text-decoration: underline;
}

.cookie-message p a:hover {
  text-decoration: none;
}

.cookie-message .cookie-message-inner {
  max-width: 1100px;
  position: relative;
  margin: 0 auto;
}

@media all and (min-width: 480px) {
  .cookie-message .cookie-message-inner {
    max-width: 460px;
  }
}

@media all and (min-width: 720px) {
  .cookie-message .cookie-message-inner {
    max-width: 680px;
  }
}

@media all and (min-width: 1024px) {
  .cookie-message .cookie-message-inner {
    max-width: 920px;
  }
}

@media all and (min-width: 1200px) {
  .cookie-message .cookie-message-inner {
    max-width: 1100px;
  }
}

.cookie-message .close {
  display: block;
  background-color: #444D57;
  color: #fff;
  border: 1px solid #444D57;
  font-size: 14px;
  margin-top: 10px;
  padding: 5px 20px;
  text-align: center;
  float: left;
  font-family: 'c4_headlineregular', 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}

@media all and (min-width: 1024px) {
  .cookie-message .close {
    position: absolute;
    bottom: 0px;
    right: 0px;
  }
}

.cookie-message .close:hover {
  border-color: #000;
}

.cookie-message .close:focus {
  border-color: #000;
  outline: none;
}

.cookie-message .close:hover,
.cookie-message .close:focus {
  text-decoration: underline;
}

/*
*  [9] States
*/

/* States files are sass files when something needs to change based on something being on a certain page */

/*
 * [10] Temp
*/

/* Temporary css - for quick work/debugging that needs to be organised properly later */

.no-debug-background {
  background: transparent !important;
}

.breakpoint-test-huge {
  background-color: red;
  height: 40px;
  /*
    * at functions the same as only, ONLY this breakpoint
    */
  /*
    * at functions the same as only, ONLY this breakpoint
    */
  /*
    * between functins from the start of first breakpoint, until the start of the last (excludes it)
    */
  /*
    * at functions the same as only, ONLY this breakpoint
    */
}

@media all and (min-width: 720px) and (max-width: 1023px ) {
  .breakpoint-test-huge {
    background-color: yellow;
  }
}

@media all and (max-width: 719px) {
  .breakpoint-test-huge {
    border-bottom: 1px purple solid;
  }
}

@media all and (min-width: 1024px) and (max-width: 1199px ) {
  .breakpoint-test-huge {
    background-color: orange;
  }
}

@media all and (min-width: 1200px) {
  .breakpoint-test-huge {
    width: 36.4161849711%;
    float: left;
    margin-right: 1.7341040462%;
    background-color: green;
  }
}

/*
 * Test cases for all breakpoints;
 */

.bp-layout {
  background: grey;
  color: white;
  padding: 20px;
}

@media all and (min-width: 480px) and (max-width: 719px ) {
  .bp-layout {
    width: 47.619047619%;
    float: left;
    margin-right: 4.7619047619%;
  }

  .bp-layout:nth-child(2n) {
    float: right;
    margin-right: 0;
  }
}

@media all and (min-width: 720px) and (max-width: 1023px ) {
  .bp-layout {
    width: 31.25%;
    float: left;
    margin-right: 3.125%;
  }

  .bp-layout:nth-child(3n) {
    float: right;
    margin-right: 0;
  }
}

@media all and (min-width: 1024px) and (max-width: 1199px ) {
  .bp-layout {
    width: 23.2558139535%;
    float: left;
    margin-right: 2.3255813953%;
  }

  .bp-layout:last-child {
    float: right;
    margin-right: 0;
  }
}

@media all and (min-width: 1200px) {
  .bp-layout {
    width: 23.6994219653%;
    float: left;
    margin-right: 1.7341040462%;
  }

  .bp-layout:last-child {
    float: right;
    margin-right: 0;
  }
}

.bp-at-small {
  opacity: 0.3;
}

@media all and (min-width: 480px) and (max-width: 719px ) {
  .bp-at-small {
    opacity: 1;
  }
}

.bp-at-medium {
  opacity: 0.3;
}

@media all and (min-width: 720px) and (max-width: 1023px ) {
  .bp-at-medium {
    opacity: 1;
  }
}

.bp-at-large {
  opacity: 0.3;
}

@media all and (min-width: 1024px) and (max-width: 1199px ) {
  .bp-at-large {
    opacity: 1;
  }
}

.bp-at-huge {
  opacity: 0.3;
}

@media all and (min-width: 1200px) {
  .bp-at-huge {
    opacity: 1;
  }
}