@-webkit-viewport {
  width: device-width; }
@-moz-viewport {
  width: device-width; }
@-ms-viewport {
  width: device-width;
  zoom: 1.0; }
@-o-viewport {
  width: device-width; }
@viewport {
  width: device-width; }
/*=HASHGRID
------------------------------------------------*/
/**
 * Grid
 */
#grid {
  /* Dimensions - same width as your grid with gutters */
  width: 980px;
  z-index: 9999;
  /* Grid (left-aligned)
  position: absolute;
  top: 0;
  left: 0;
  */
  /* Grid (centered) */
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -490px; }

/**
 * Vertical grid lines
 *
 * Set the column width taking the borders into consideration,
 * and use margins to set column gutters.
 */
#grid div.vert {
  width: 60px;
  border: solid darkturquoise;
  border-width: 0 1px;
  margin-right: 20px; }

#grid div.vert.first-line {
  margin-left: 19px; }

/**
 * Horizontal grid lines, defined by your base line height
 *
 * Remember, the CSS properties that define the box model:
 * visible height = height + borders + margins + padding
 */
#grid div.horiz {
  /* 24px line height */
  height: 7px;
  border-bottom: 1px dotted #FF9999;
  margin: 0;
  padding: 0; }

#grid div.horiz:nth-child(3n+3) {
  border-bottom: 1px solid #FF9999; }

body {
  width: 100%;
  *zoom: 1; }
  body:before, body:after {
    content: "";
    display: table; }
  body:after {
    clear: both; }

/*=VARIABLES - GRID
------------------------------------------------*/
/*=VARIABLES - COLORS
------------------------------------------------*/
/*=VARIABLES - FONTS
------------------------------------------------*/
/*FUNCTIONS
------------------------------------------------*/
/*=MIXINS 
------------------------------------------------*/
/* 

STORM ID RESET STYLES

Based on Meyer Reset, HTML5 Boilerplate, Normalize.css and more

Updated: JULY 2012

*/
/* 
BETTER BOX MODEL. SUPPORTED IN DECENT BROWSERS AND IE8+. POLYFILL FOR IE7
=========================================================================
*/
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

/* 
RESET LOADS OF STUFF
====================
*/
/* Set background colour in case user-styles use a different colour */
html,
body {
  background: #fff; }

/* Stop unwanted automatic text resizing on some mobile devices */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

/* Override defaults on all elements */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video, main {
  background: transparent;
  border: 0;
  font-size: 100%;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline; }

/* Display block on HTML5 elements */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block; }

/* 
STANDARDISE THE STYLE OF COMMON ELEMENTS
========================================
*/
* {
  text-rendering: optimizeLegibility; }

strong,
b {
  font-weight: bold; }

em,
i {
  font-style: italic; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none; }

ins {
  text-decoration: none; }

mark {
  font-style: italic;
  font-weight: bold; }

del {
  text-decoration: line-through; }

dfn {
  font-style: italic; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

td {
  vertical-align: top; }

hr {
  border: 0;
  display: block;
  height: 1px;
  margin: 0;
  padding: 0; }

address {
  font-style: normal; }

/*
 * 1. Corrects color not being inherited in IE6/7/8/9
 * 2. Corrects text not wrapping in FF3 
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  white-space: normal;
  /* 2 */ }

/* Addresses margin not present in IE6/7/8/9, S5, O11 */
figure {
  margin: 0; }

/* Addresses styling for 'hidden' attribute not present in IE7/8/9, FF3, S4 */
[hidden] {
  display: none; }

/* 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; }

/* 
IMAGES
======
*/
/* Improve image quality when scaled in IE7 / Remove the gap between images and borders on image containers: h5bp.com/i/440
 */
img {
  border: 0;
  vertical-align: middle; }

/* 
HYPERLINKS
==========
*/
/* Improves readability when focused and also mouse hovered in all browsers */
a {
  text-decoration: none; }

a:hover,
a:focus,
a:active {
  outline: 0;
  text-decoration: none; }

/* Addresses outline displayed oddly in Chrome */
a:focus {
  outline: thin dotted; }

/* 
CODE BLOCKS ETC
===============
*/
/* Standardise code blocks */
pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  line-height: 100%; }

pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

/* 
FORM ELEMENTS
=============
*/
/* Remove default appearance from inputs */
input,
button {
  border: 0;
  outline: 0;
  padding: 0;
  vertical-align: middle;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 0; }

/* Remove default appearance from search inputs in Webkit */
input[type="search"] {
  border-radius: 0;
  -moz-appearance: none;
  -webkit-appearance: none; }

input[type="checkbox"] {
  -moz-appearance: checkbox;
  -webkit-appearance: checkbox; }

input[type="radio"] {
  -moz-appearance: radio;
  -webkit-appearance: radio; }

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none; }

/* Remove inner padding and border in FF3/4: h5bp.com/l */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/*
 * 1. Corrects font size not being inherited in all browsers
 * 2. Addresses margins set differently in IE6/7, FF3+, S5, Chrome
 * 3. Improves appearance and consistency in all browsers
 * 4. Define line-height as normal to match FF3/4 (set using !important in the UA stylesheet)
 */
button,
input,
select,
textarea {
  font-size: 100%;
  /* 1 */
  line-height: normal;
  /* 4 */
  margin: 0;
  /* 2 */
  vertical-align: baseline;
  /* 3 */ }

/*
 * 1. Improves usability and consistency of cursor style between image-type 'input' and others
 * 2. Corrects inability to style clickable 'input' types in iOS
 */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
  cursor: pointer;
  /* 1 */
  -webkit-appearance: button;
  /* 2 */ }

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

/*
 * 1. Remove default vertical scrollbar in IE6/7/8/9
 * 2. Allow only vertical resizing
 */
textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical; }

textarea:hover,
textarea:active,
textarea:focus {
  outline: none; }

/* 
CLEARFIX 
========
*/
.clearfix:before,
.clearfix:after {
  content: "";
  display: table; }

.clearfix:after {
  clear: both; }

.row {
  display: block;
  width: 100%;
  margin: 0; }
  @media screen and (min-width: 48em) {
    .row {
      width: 102.77778%;
      margin: 0 -1.38889%; } }

.row-small {
  display: block;
  width: 102.77778%;
  margin: 0 -1.38889%; }

.roundel {
  -moz-border-radius: 100px;
  -webkit-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px; }

.center {
  text-align: center; }

.text-right {
  text-align: right; }

.block {
  display: block; }

.inline-block {
  display: inline-block; }

body .no-margins {
  margin: 0; }

body .absolute {
  position: absolute; }

body .relative {
  position: relative; }

body > .wrap {
  margin-bottom: 1.5em; }

.content {
  margin-top: 1.5em; }

@media screen and (min-width: 48em) {
  .gutter-right {
    padding-right: 3em; } }

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  margin-bottom: 3em;
  margin-top: 0; }

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

@media screen and (min-width: 48em) {
  .margins-only {
    margin-left: 1.042%;
    margin-right: 1.042%;
    width: 97.917%; } }

.two-up {
  margin: 0;
  list-style-type: none; }
  @media screen and (min-width: 48em) {
    .two-up {
      display: block;
      width: 102.77778%;
      margin-left: -1.38889%;
      margin-right: -1.38889%;
      *zoom: 1; }
      .two-up:before, .two-up:after {
        content: "";
        display: table; }
      .two-up:after {
        clear: both; }
      .two-up > .col {
        display: inline;
        float: left;
        width: 47.22222%;
        margin-left: 1.38889%;
        margin-right: 1.38889%; } }

.three-up {
  margin: 0;
  list-style-type: none; }
  @media screen and (min-width: 48em) {
    .three-up {
      display: block;
      width: 102.77778%;
      margin-left: -1.38889%;
      margin-right: -1.38889%;
      *zoom: 1; }
      .three-up:before, .three-up:after {
        content: "";
        display: table; }
      .three-up:after {
        clear: both; }
      .three-up > .col {
        display: inline;
        float: left;
        width: 30.55556%;
        margin-left: 1.38889%;
        margin-right: 1.38889%; } }

.four-up {
  margin: 0;
  list-style-type: none; }
  @media screen and (min-width: 48em) {
    .four-up {
      display: block;
      width: 102.77778%;
      margin-left: -1.38889%;
      margin-right: -1.38889%;
      *zoom: 1; }
      .four-up:before, .four-up:after {
        content: "";
        display: table; }
      .four-up:after {
        clear: both; }
      .four-up > .col {
        display: inline;
        float: left;
        width: 22.22222%;
        margin-left: 1.38889%;
        margin-right: 1.38889%; } }

.five-up {
  margin: 0;
  list-style-type: none; }
  @media screen and (min-width: 48em) {
    .five-up {
      display: block;
      width: 103.33333%;
      margin-left: -1.66667%;
      margin-right: -1.66667%;
      *zoom: 1; }
      .five-up:before, .five-up:after {
        content: "";
        display: table; }
      .five-up:after {
        clear: both; }
      .five-up > .col {
        display: inline;
        float: left;
        width: 16.66667%;
        margin-left: 1.66667%;
        margin-right: 1.66667%; } }

.six-up {
  margin: 0;
  list-style-type: none; }
  @media screen and (min-width: 48em) {
    .six-up {
      display: block;
      width: 103.33333%;
      margin-left: -1.66667%;
      margin-right: -1.66667%;
      *zoom: 1; }
      .six-up:before, .six-up:after {
        content: "";
        display: table; }
      .six-up:after {
        clear: both; }
      .six-up > .col {
        display: inline;
        float: left;
        width: 13.88889%;
        margin-left: 1.38889%;
        margin-right: 1.38889%; } }

.eight-up {
  margin: 0;
  list-style-type: none; }
  @media screen and (min-width: 48em) {
    .eight-up {
      display: block;
      width: 104.16667%;
      margin-left: -2.08333%;
      margin-right: -2.08333%;
      *zoom: 1; }
      .eight-up:before, .eight-up:after {
        content: "";
        display: table; }
      .eight-up:after {
        clear: both; }
      .eight-up > .col {
        display: inline;
        float: left;
        width: 8.33333%;
        margin-left: 2.08333%;
        margin-right: 2.08333%; } }

.blockgrid-two-up {
  display: block;
  width: 102.77778%;
  margin-left: -1.38889%;
  margin-right: -1.38889%;
  *zoom: 1; }
  .blockgrid-two-up:before, .blockgrid-two-up:after {
    content: "";
    display: table; }
  .blockgrid-two-up:after {
    clear: both; }
  .blockgrid-two-up .col {
    display: inline;
    float: left;
    width: 47.22222%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; }

.blockgrid-three-up {
  display: block;
  width: 102.77778%;
  margin-left: -1.38889%;
  margin-right: -1.38889%;
  *zoom: 1; }
  .blockgrid-three-up:before, .blockgrid-three-up:after {
    content: "";
    display: table; }
  .blockgrid-three-up:after {
    clear: both; }
  .blockgrid-three-up .col {
    display: inline;
    float: left;
    width: 30.55556%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; }

.blockgrid-four-up {
  display: block;
  width: 102.77778%;
  margin-left: -1.38889%;
  margin-right: -1.38889%;
  *zoom: 1; }
  .blockgrid-four-up:before, .blockgrid-four-up:after {
    content: "";
    display: table; }
  .blockgrid-four-up:after {
    clear: both; }
  .blockgrid-four-up .col {
    display: inline;
    float: left;
    width: 22.22222%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; }

.blockgrid-seven-up {
  display: block;
  width: 102%;
  margin: 0 -1%; }
  .blockgrid-seven-up .col {
    display: inline;
    float: left;
    width: 12%;
    margin: 0 1.14%; }

.blockgrid-eight-up {
  display: block;
  width: 104.16667%;
  margin-left: -2.08333%;
  margin-right: -2.08333%;
  *zoom: 1; }
  .blockgrid-eight-up:before, .blockgrid-eight-up:after {
    content: "";
    display: table; }
  .blockgrid-eight-up:after {
    clear: both; }
  .blockgrid-eight-up .col {
    display: inline;
    float: left;
    width: 8.33333%;
    margin-left: 2.08333%;
    margin-right: 2.08333%; }

.col {
  display: inline;
  float: left; }

.small-1 {
  display: inline;
  float: left;
  width: 5.55556%;
  margin-left: 1.38889%;
  margin-right: 1.38889%; }

.small-2 {
  display: inline;
  float: left;
  width: 13.88889%;
  margin-left: 1.38889%;
  margin-right: 1.38889%; }

.small-3 {
  display: inline;
  float: left;
  width: 22.22222%;
  margin-left: 1.38889%;
  margin-right: 1.38889%; }

.small-4 {
  display: inline;
  float: left;
  width: 30.55556%;
  margin-left: 1.38889%;
  margin-right: 1.38889%; }

.small-5 {
  display: inline;
  float: left;
  width: 38.88889%;
  margin-left: 1.38889%;
  margin-right: 1.38889%; }

.small-6 {
  display: inline;
  float: left;
  width: 47.22222%;
  margin-left: 1.38889%;
  margin-right: 1.38889%; }

.small-7 {
  display: inline;
  float: left;
  width: 55.55556%;
  margin-left: 1.38889%;
  margin-right: 1.38889%; }

.small-8 {
  display: inline;
  float: left;
  width: 63.88889%;
  margin-left: 1.38889%;
  margin-right: 1.38889%; }

.small-9 {
  display: inline;
  float: left;
  width: 72.22222%;
  margin-left: 1.38889%;
  margin-right: 1.38889%; }

.small-10 {
  display: inline;
  float: left;
  width: 80.55556%;
  margin-left: 1.38889%;
  margin-right: 1.38889%; }

.small-11 {
  display: inline;
  float: left;
  width: 88.88889%;
  margin-left: 1.38889%;
  margin-right: 1.38889%; }

.small-12 {
  display: inline;
  float: left;
  width: 97.22222%;
  margin-left: 1.38889%;
  margin-right: 1.38889%; }

@media screen and (min-width: 44em) {
  .medium-1 {
    display: inline;
    float: left;
    width: 5.55556%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 44em) {
  .medium-2 {
    display: inline;
    float: left;
    width: 13.88889%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 44em) {
  .medium-3 {
    display: inline;
    float: left;
    width: 22.22222%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 44em) {
  .medium-4 {
    display: inline;
    float: left;
    width: 30.55556%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 44em) {
  .medium-5 {
    display: inline;
    float: left;
    width: 38.88889%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 44em) {
  .medium-6 {
    display: inline;
    float: left;
    width: 47.22222%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 44em) {
  .medium-7 {
    display: inline;
    float: left;
    width: 55.55556%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 44em) {
  .medium-8 {
    display: inline;
    float: left;
    width: 63.88889%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 44em) {
  .medium-9 {
    display: inline;
    float: left;
    width: 72.22222%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 44em) {
  .medium-10 {
    display: inline;
    float: left;
    width: 80.55556%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 44em) {
  .medium-11 {
    display: inline;
    float: left;
    width: 88.88889%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 44em) {
  .medium-12 {
    display: inline;
    float: left;
    width: 97.22222%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 60em) {
  .large-1 {
    display: inline;
    float: left;
    width: 5.55556%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 60em) {
  .large-2 {
    display: inline;
    float: left;
    width: 13.88889%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 60em) {
  .large-3 {
    display: inline;
    float: left;
    width: 22.22222%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 60em) {
  .large-4 {
    display: inline;
    float: left;
    width: 30.55556%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 60em) {
  .large-5 {
    display: inline;
    float: left;
    width: 38.88889%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 60em) {
  .large-6 {
    display: inline;
    float: left;
    width: 47.22222%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 60em) {
  .large-7 {
    display: inline;
    float: left;
    width: 55.55556%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 60em) {
  .large-8 {
    display: inline;
    float: left;
    width: 63.88889%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 60em) {
  .large-9 {
    display: inline;
    float: left;
    width: 72.22222%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 60em) {
  .large-10 {
    display: inline;
    float: left;
    width: 80.55556%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 60em) {
  .large-11 {
    display: inline;
    float: left;
    width: 88.88889%;
    margin-left: 1.38889%;
    margin-right: 1.38889%; } }

@media screen and (min-width: 60em) {
  .large-12 {
    display: inline;
    float: left;
    width: 97.22222%;
    margin-left: 1.38889%;
    margin-right: 1.38889%;
    display: block;
    float: none; } }

.pull-right {
  float: right; }

@media screen and (min-width: 48em) {
  .pull-right-tablet {
    float: right; } }

@media screen and (min-width: 60em) {
  .pull-right-desktop {
    float: right; } }

.pull-left {
  float: left; }

@media screen and (min-width: 48em) {
  .pull-left-tablet {
    float: left; } }

@media screen and (min-width: 60em) {
  .pull-left-desktop {
    float: left; } }

@font-face {
  font-family: 'azo_sansblack';
  src: url("../../Content/fonts/rui_abreu_-_azosans-black-webfont.eot");
  src: url("../../Content/fonts/rui_abreu_-_azosans-black-webfont.eot?#iefix") format("embedded-opentype"), url("../../Content/fonts/rui_abreu_-_azosans-black-webfont.woff2") format("woff2"), url("../../Content/fonts/rui_abreu_-_azosans-black-webfont.woff") format("woff"), url("../../Content/fonts/rui_abreu_-_azosans-black-webfont.ttf") format("truetype"), url("../../Content/fonts/rui_abreu_-_azosans-black-webfont.svg#azo_sansblack") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'azo_sansbold';
  src: url("../../Content/fonts/rui_abreu_-_azosans-bold-webfont.eot");
  src: url("../../Content/fonts/rui_abreu_-_azosans-bold-webfont.eot?#iefix") format("embedded-opentype"), url("../../Content/fonts/rui_abreu_-_azosans-bold-webfont.woff2") format("woff2"), url("../../Content/fonts/rui_abreu_-_azosans-bold-webfont.woff") format("woff"), url("../../Content/fonts/rui_abreu_-_azosans-bold-webfont.ttf") format("truetype"), url("../../Content/fonts/rui_abreu_-_azosans-bold-webfont.svg#azo_sansbold") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'azo_sansbold_italic';
  src: url("../../Content/fonts/rui_abreu_-_azosans-bolditalic-webfont.eot");
  src: url("../../Content/fonts/rui_abreu_-_azosans-bolditalic-webfont.eot?#iefix") format("embedded-opentype"), url("../../Content/fonts/rui_abreu_-_azosans-bolditalic-webfont.woff2") format("woff2"), url("../../Content/fonts/rui_abreu_-_azosans-bolditalic-webfont.woff") format("woff"), url("../../Content/fonts/rui_abreu_-_azosans-bolditalic-webfont.ttf") format("truetype"), url("../../Content/fonts/rui_abreu_-_azosans-bolditalic-webfont.svg#azo_sansbold_italic") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'azo_sanslight';
  src: url("../../Content/fonts/rui_abreu_-_azosans-light-webfont.eot");
  src: url("../../Content/fonts/rui_abreu_-_azosans-light-webfont.eot?#iefix") format("embedded-opentype"), url("../../Content/fonts/rui_abreu_-_azosans-light-webfont.woff2") format("woff2"), url("../../Content/fonts/rui_abreu_-_azosans-light-webfont.woff") format("woff"), url("../../Content/fonts/rui_abreu_-_azosans-light-webfont.ttf") format("truetype"), url("../../Content/fonts/rui_abreu_-_azosans-light-webfont.svg#azo_sanslight") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'azo_sansmedium';
  src: url("../../Content/fonts/rui_abreu_-_azosans-medium-webfont.eot");
  src: url("../../Content/fonts/rui_abreu_-_azosans-medium-webfont.eot?#iefix") format("embedded-opentype"), url("../../Content/fonts/rui_abreu_-_azosans-medium-webfont.woff2") format("woff2"), url("../../Content/fonts/rui_abreu_-_azosans-medium-webfont.woff") format("woff"), url("../../Content/fonts/rui_abreu_-_azosans-medium-webfont.ttf") format("truetype"), url("../../Content/fonts/rui_abreu_-_azosans-medium-webfont.svg#azo_sansmedium") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'azo_sansregular';
  src: url("../../Content/fonts/rui_abreu_-_azosans-regular-webfont.eot");
  src: url("../../Content/fonts/rui_abreu_-_azosans-regular-webfont.eot?#iefix") format("embedded-opentype"), url("../../Content/fonts/rui_abreu_-_azosans-regular-webfont.woff2") format("woff2"), url("../../Content/fonts/rui_abreu_-_azosans-regular-webfont.woff") format("woff"), url("../../Content/fonts/rui_abreu_-_azosans-regular-webfont.ttf") format("truetype"), url("../../Content/fonts/rui_abreu_-_azosans-regular-webfont.svg#azo_sansregular") format("svg");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'azo_sansthin';
  src: url("../../Content/fonts/rui_abreu_-_azosans-thin-webfont.eot");
  src: url("../../Content/fonts/rui_abreu_-_azosans-thin-webfont.eot?#iefix") format("embedded-opentype"), url("../../Content/fonts/rui_abreu_-_azosans-thin-webfont.woff2") format("woff2"), url("../../Content/fonts/rui_abreu_-_azosans-thin-webfont.woff") format("woff"), url("../../Content/fonts/rui_abreu_-_azosans-thin-webfont.ttf") format("truetype"), url("../../Content/fonts/rui_abreu_-_azosans-thin-webfont.svg#azo_sansthin") format("svg");
  font-weight: normal;
  font-style: normal; }
/* Fonts */
.wrapper {
  *zoom: 1;
  margin-left: auto;
  margin-right: auto;
  max-width: 1248px;
  padding: 0 4%; }
  .wrapper:before, .wrapper:after {
    content: "";
    display: table; }
  .wrapper:after {
    clear: both; }

body {
  font-size: 1.3em;
  font-family: 'azo_sansregular', "Helvetica Neue", Arial, Helvetica, sans-serif; }

body:after {
  content: 'small';
  display: none; }

img {
  width: 100%; }

.centre-image {
  display: block;
  margin: 0 auto; }

.max-width {
  max-width: 300px; }

.panel {
  margin-bottom: 1.5em; }
  @media screen and (min-width: 44em) {
    .panel {
      margin-bottom: 0; } }

ul li {
  list-style: none !important; }

hr {
  background: #e3e3e3;
  margin-bottom: 12px;
  width: 100%; }

/** Floats*/
.float-left {
  float: left; }

.float-right {
  float: right; }

/** Alignment*/
.text-align--center {
  text-align: center; }

/** Display*/
.block {
  display: block; }

.inline-block {
  display: inline-block; }

.inline {
  display: inline; }

/** Font Weights */
.italic {
  font-style: italic; }

.bold {
  font-family: 'azo_sansbold', "Helvetica Neue", Arial, Helvetica, sans-serif; }

/** Font Case */
.uppercase {
  text-transform: uppercase; }

/** Positioning */
.relative {
  position: relative; }

.absolute {
  position: absolute; }

/**
* Add/remove margins
*/
.push-xlarge {
  margin: 3em; }

.push-xlarge--top {
  margin-top: 3em; }

.push-xlarge--right {
  margin-right: 3em; }

.push-xlarge--bottom {
  margin-bottom: 3em; }

.push-xlarge--left {
  margin-left: 3em; }

.push-xlarge--ends {
  margin-top: 3em;
  margin-bottom: 3em; }

.push-xlarge--sides {
  margin-right: 3em;
  margin-left: 3em; }

.push-large {
  margin: 2em; }

.push-large--top {
  margin-top: 2em; }

.push-large--right {
  margin-right: 2em; }

.push-large--bottom {
  margin-bottom: 2em; }

.push-large--left {
  margin-left: 2em; }

.push-large--ends {
  margin-top: 2em;
  margin-bottom: 2em; }

.push-large--sides {
  margin-right: 2em;
  margin-left: 2em; }

.push {
  margin: 1em; }

.push--top {
  margin-top: 1em; }

.push--right {
  margin-right: 1em; }

.push--bottom {
  margin-bottom: 1em; }

.push--left {
  margin-left: 1em; }

.push--ends {
  margin-top: 1em;
  margin-bottom: 1em; }

.push--sides {
  margin-right: 1em;
  margin-left: 1em; }

.push-half {
  margin: 0.5em; }

.push-half--top {
  margin-top: 0.5em; }

.push-half--right {
  margin-right: 0.5em; }

.push-half--bottom {
  margin-bottom: 0.5em; }

.push-half--left {
  margin-left: 0.5em; }

.push-half--ends {
  margin-top: 0.5em;
  margin-bottom: 0.5em; }

.push-half--sides {
  margin-right: 0.5em;
  margin-left: 0.5em; }

@media screen and (max-width: 48em) {
  .push-half--small {
    margin: 0.5em; }

  .push-half--top--small {
    margin-top: 0.5em; }

  .push-half--right--small {
    margin-right: 0.5em; }

  .push-half--bottom--small {
    margin-bottom: 0.5em; }

  .push-half--left--small {
    margin-left: 0.5em; }

  .push-half--ends--small {
    margin-top: 0.5em;
    margin-bottom: 0.5em; }

  .push-half--sides--small {
    margin-right: 0.5em;
    margin-left: 0.5em; } }
.push-small {
  margin: 0.2em; }

.push-small--top {
  margin-top: 0.2em; }

.push-small--right {
  margin-right: 0.2em; }

.push-small--bottom {
  margin-bottom: 0.2em; }

.push-small--left {
  margin-left: 0.2em; }

.push-small--ends {
  margin-top: 0.2em;
  margin-bottom: 0.2em; }

.push-small--sides {
  margin-right: 0.2em;
  margin-left: 0.2em; }

.flush {
  margin: 0; }

.flush--top {
  margin-top: 0; }

.flush--right {
  margin-right: 0; }

.flush--bottom {
  margin-bottom: 0; }

.flush--left {
  margin-left: 0; }

.flush--ends {
  margin-top: 0;
  margin-bottom: 0; }

.flush--sides {
  margin-right: 0;
  margin-left: 0; }

@media screen and (min-width: 48em) {
  .flush--med {
    margin: 0; }

  .flush--top--med {
    margin-top: 0; }

  .flush--right--med {
    margin-right: 0; }

  .flush--bottom--med {
    margin-bottom: 0; }

  .flush--left--med {
    margin-left: 0; }

  .flush--ends--med {
    margin-top: 0;
    margin-bottom: 0; }

  .flush--sides--med {
    margin-right: 0;
    margin-left: 0; } }
/**
* Add/remove paddings
*/
.soft-large {
  padding: 2em; }

.soft-large--top {
  padding-top: 2em; }

.soft-large--right {
  padding-right: 2em; }

.soft-large--bottom {
  padding-bottom: 2em; }

.soft-large--left {
  padding-left: 2em; }

.soft-large--ends {
  padding-top: 2em;
  padding-bottom: 2em; }

.soft-large--sides {
  padding-right: 2em;
  padding-left: 2em; }

.soft-xlarge {
  padding: 3em; }

.soft-xlarge--top {
  padding-top: 3em; }

.soft-xlarge--right {
  padding-right: 3em; }

.soft-xlarge--bottom {
  padding-bottom: 3em; }

.soft-xlarge--left {
  padding-left: 3em; }

.soft-xlarge--ends {
  padding-top: 3em;
  padding-bottom: 3em; }

.soft-xlarge--sides {
  padding-right: 3em;
  padding-left: 3em; }

.soft {
  padding: 1em; }

.soft--top {
  padding-top: 1em; }

.soft--right {
  padding-right: 1em; }

.soft--bottom {
  padding-bottom: 1em; }

.soft--left {
  padding-left: 1em; }

.soft--ends {
  padding-top: 1em;
  padding-bottom: 1em; }

.soft--sides {
  padding-right: 1em;
  padding-left: 1em; }

.soft-half {
  padding: 0.5em; }

.soft-half--top {
  padding-top: 0.5em; }

.soft-half--right {
  padding-right: 0.5em; }

.soft-half--bottom {
  padding-bottom: 0.5em; }

.soft-half--left {
  padding-left: 0.5em; }

.soft-half--ends {
  padding-top: 0.5em;
  padding-bottom: 0.5em; }

.soft-half--sides {
  padding-right: 0.5em;
  padding-left: 0.5em; }

.hard {
  padding: 0; }

.hard--top {
  padding-top: 0; }

.hard--right {
  padding-right: 0; }

.hard--bottom {
  padding-bottom: 0; }

.hard--left {
  padding-left: 0; }

.hard--ends {
  padding-top: 0;
  padding-bottom: 0; }

.hard--sides {
  padding-right: 0;
  padding-left: 0; }

@media screen and (min-width: 48em) {
  .hard--med {
    padding: 0; }

  .hard--top--med {
    padding-top: 0; }

  .hard--right--med {
    padding-right: 0; }

  .hard--bottom--med {
    padding-bottom: 0; }

  .hard--left--med {
    padding-left: 0; }

  .hard--ends--med {
    padding-top: 0;
    padding-bottom: 0; }

  .hard--sides--med {
    padding-right: 0;
    padding-left: 0; } }
@media screen and (min-width: 48em) {
  .soft-xxlarge--sides {
    padding-right: 8em;
    padding-left: 8em; } }

.push-xxlarge--ends {
  margin-top: 3.5em;
  margin-bottom: 3.5em; }

/** Logo */
.logo {
  display: inline-block;
  font-family: 'azo_sansmedium', "Helvetica Neue", Arial, Helvetica, sans-serif; }

.logo h1 {
  font-size: 0.65em;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #323232;
  display: inline-block;
  line-height: 80px; }
  @media screen and (min-width: 50em) {
    .logo h1 {
      line-height: 200px; } }

header {
  height: 75px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  background-color: white;
  -webkit-transition: height 0.3s;
  -moz-transition: height 0.3s;
  -ms-transition: height 0.3s;
  -o-transition: height 0.3s;
  transition: height 0.3s; }
  @media screen and (min-width: 50em) {
    header {
      height: 200px; } }

header.smaller {
  height: 75px; }

header.smaller .logo h1 {
  line-height: 80px; }

/**Main Heading */
.main h1 {
  font-size: 2.5em;
  letter-spacing: 2px;
  font-family: 'azo_sansbold', "Helvetica Neue", Arial, Helvetica, sans-serif;
  color: #323232;
  line-height: 1em;
  margin-top: 4.25em;
  z-index: -9999;
  position: relative; }
  @media screen and (min-width: 50em) {
    .main h1 {
      font-size: 4.5em;
      margin-top: 3.25em; } }

.hidden {
  display: none; }

.hidden-medium {
  display: none; }

.hideme {
  opacity: 0; }

/* Overlay style */
.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  z-index: 9999; }

/* Overlay closing cross */
.overlay .overlay-close {
  float: right;
  overflow: hidden;
  border: none;
  background: url(../images/icons/cross.svg) no-repeat;
  margin-top: 20px;
  color: transparent;
  outline: none;
  z-index: 100; }

.nav-trigger-style {
  font-size: 0.5em;
  background: #ffffff;
  cursor: pointer; }

/* Menu style */
.overlay nav {
  text-align: center;
  position: relative;
  top: 40%;
  height: 60%;
  font-size: 14px;
  line-height: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%); }
  @media screen and (min-width: 50em) {
    .overlay nav {
      font-size: 15px;
      top: 36%;
      height: 60%;
      line-height: 10px; } }

.overlay ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  height: 100%;
  position: relative;
  z-index: 9999; }

.primary-nav {
  float: right;
  display: inline-block;
  margin-top: 22px; }
  @media screen and (min-width: 50em) {
    .primary-nav {
      margin-top: 85px; } }

header.smaller .primary-nav {
  margin-top: 22px; }

.overlay ul li {
  display: block;
  margin-bottom: 30px; }

.overlay ul li a {
  font-weight: 300;
  display: block;
  color: #323232;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
  z-index: 9999; }

.overlay ul li a:hover,
.overlay ul li a:focus {
  color: #747474; }

/* Effects */
.overlay-hugeinc {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s, visibility 0s 0.5s;
  transition: opacity 0.5s, visibility 0s 0.5s; }

.overlay-hugeinc.open {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s; }

.overlay-hugeinc nav {
  -webkit-perspective: 1200px;
  perspective: 1200px; }

.overlay-hugeinc nav ul {
  opacity: 0.4;
  -webkit-transform: translateY(-25%) rotateX(35deg);
  transform: translateY(-25%) rotateX(35deg);
  -webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s; }

.overlay-hugeinc.open nav ul {
  opacity: 1;
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg); }

.overlay-hugeinc.close nav ul {
  -webkit-transform: translateY(25%) rotateX(-35deg);
  transform: translateY(25%) rotateX(-35deg); }

.case-study {
  margin-top: 80px;
  padding: 0 0 85px 0;
  overflow: hidden; }

.case-study-alt {
  margin-top: 0; }

.details h1 {
  margin-top: 70px;
  margin-bottom: 25px;
  color: #ffffff;
  font-size: 2.0em;
  font-family: 'azo_sansmedium', "Helvetica Neue", Arial, Helvetica, sans-serif; }
  @media screen and (min-width: 50em) {
    .details h1 {
      font-size: 3.6em;
      margin-top: 200px; } }

.details p {
  color: #ffffff;
  font-size: 1.4em;
  font-family: 'azo_sanslight', "Helvetica Neue", Arial, Helvetica, sans-serif;
  margin-bottom: 45px; }
  @media screen and (min-width: 50em) {
    .details p {
      padding: 0 10%; } }

.full-screenshot {
  position: relative;
  z-index: 1; }

.full-screenshot-alt {
  margin-top: 50px; }
  @media screen and (min-width: 50em) {
    .full-screenshot-alt {
      margin-top: 150px; } }

.decorative-header {
  color: #ffffff;
  font-size: 9.5em;
  text-transform: uppercase;
  position: absolute;
  width: 150%;
  z-index: 0;
  opacity: 0.05;
  margin-left: -30%;
  margin-top: 360px;
  display: none;
  overflow: hidden;
  text-align: center;
  font-family: 'azo_sansbold', "Helvetica Neue", Arial, Helvetica, sans-serif; }
  @media screen and (min-width: 50em) {
    .decorative-header {
      display: block; } }

.decorative-header-alt {
  color: #ffffff;
  font-size: 9.5em;
  text-transform: uppercase;
  position: absolute;
  width: 150%;
  z-index: 0;
  opacity: 0.05;
  margin-left: -30%;
  margin-top: 0px;
  display: none;
  overflow: hidden;
  text-align: center;
  font-family: 'azo_sansbold', "Helvetica Neue", Arial, Helvetica, sans-serif; }
  @media screen and (min-width: 50em) {
    .decorative-header-alt {
      display: block; } }

.text-flash p {
  padding: 100px 10%;
  font-size: 1.4em;
  color: #525252;
  font-family: 'azo_sanslight', "Helvetica Neue", Arial;
  line-height: 1.4em; 
  display: grid;
  }

.footer p {
  padding: 100px 10%;
  font-size: 0.7em;
  letter-spacing: 1px;
  color: #525252;
  font-weight: 400;
  text-transform: uppercase; 
  display: grid;
  }

.more-details {
  padding: 0;
  font-size: 0.8em;
  text-transform: uppercase;
  text-align: center;
  display: block;
  margin-bottom: 80px;
  color: #ffffff;
  font-weight: 300;
  letter-spacing: 2px; }

.more-details .divider {
  margin: 0 20px 0 20px !important; }

.text-colour-dark {
  color: #323232 !important; }

/** Colours */
.scottish-ballet-gold {
  background-color: #8e7751; }

.refine-surgery-green {
  background-color: #1abca2; }

.ecci-blue {
  background-color: #1582be; }

.dental-shades-grey {
  background-color: #d5d5d5; }

.the-witchery-green {
  background-color: #868042; }

.rhubarb-purple {
  background-color: #62495c; }

.the-tower-orange {
  background-color: #f28826; }

.multiply-blue {
  background-color: #00a6e2; }

.scottish-salmon-turquoise {
  background-color: #5eb3b2; }

.bunnahabhain-grey {
  background-color: #ededed; }

.citnow-blue {
  background-color: #0027a2; }

.glenwyvis-purple {
  background-color: #48193d; }

.the-macallan-gold {
  background-color: #866e45; }

.william-grant-gold {
  background-color: #f6f5f0; }

.piersland-green {
  background-color: #60beac; }

.buzzacott-grey {
  background-color: #f2f2f2; }

.ardnahoe-gold {
  background-color: #f2eee7; }

.firstbus-grey {
  background-color: #f2f2f2; }

.malones-gold {
background-color: #EBE7DE; }

.vpz-grey {
background-color: #F8FAFA; }

.scottish-gymnastics-blue {
background-color: #213055; }

.norwood-gold {
background-color: #F8F7F4; }

.purelifi-blue {
background-color: #EEF5FC; }

.dragonfly-grey {
background-color: #F5F5F5; }

.tweeds-blue {
background-color: #3E4153; }

.shil-lilac {
background-color: #F6F8FE; }

.fleettracking-blue {
background-color: #F5FAFF; }

.smugglers-green {
background-color: #B8D3D0; }

.eastren-blue {
background-color: #273943; }

.harper-blue {
background-color: #153043; }

.spence-blue {
background-color: #292F4A; }

.hoh-dark {
background-color: #262525; }

.silent-pool-teal {
background-color: #EFF7F8; }

.el-blue {
background-color: #EFF7F8; }



/** Bespoke Grid */
.bespoke-grid {
  width: 100%;
  float: left; }
  @media screen and (min-width: 50em) {
    .bespoke-grid {
      width: 50%; } }

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