@charset "UTF-8";
/*!

Callum Roper and Daniel Bisgrove at Star Digital

ACKNOWLEDGEMENTS
normalize.css | MIT License | https://github.com/necolas/normalize.css
inuit.css | Apache License 2.0 | https://github.com/csswizardry/inuit.css
HTML5 Boilerplate | https://github.com/h5bp/html5-boilerplate
Bootstrap | Apache License 2.0 | https://github.com/twitter/bootstrap
Helium | https://github.com/cbrauckmuller/helium
Font Awesome | SIL Open Font License, MIT License, CC BY 3.0 License | https://github.com/FortAwesome/Font-Awesome

*/
/* SASS */
/*

VARIABLES

*/
/* PALETTE */
/* TYPOGRAPHY */
/* LAYOUT */
/*

MIXINS

*/
/*
  * Output font size using rem and fallback
  *
   `@include font-size(10px);`
  *
*/
/*
  * Output font size using rem and colour
  *
   `@include font-size-colour (10px, ffffff);`
  *
*/
/*
  * Output uppercase with some letter spacing
  *
   `@include uppercase(0.1em);`
  *
*/
/*
  * Output vendor-prefixed rules
  *
   `@include prefix(border-radius, 4px);`
  *
*/
/*
  * Output clearfix rules
  *
   `@include clearfix();`
  *
*/
/*
  * Output media query block
  *
   `@include media-query(min, 640px);`
  *
*/
/*
  * Output media query block
  *
   `@include media-query-height(min, 640px);`
  *
*/
/*
  * Output media query block with min and max limits
  *
   `@include media-query-bracket(640px, 960px);`
  *
*/
/*
  * Output rule for offscreen image replacement
  *
   `@include offscreen();`
  *
*/
/*
  * Output color using rgba and fallback
  *
   `@include alpha(border-color, rgba(black,0.1), white);`
  *
*/
/*
  * Output percentage using px
  *
   `@include pxtopercent(500px, 1000px);`
  *
*/
/*
  * Set the opacity for all browsers and provide a filter fallback for IE8.
  *
   `@include opacity(0.8);`
  *
*/
/*
  * Center-align a block level element
  *
   `@include center-block;`
  *
*/
/*
  * Absolute Positioned
  *
   `@include abs-pos(10px, 10px, 5px, 15px);`
  *
*/
/*
  * Centre element within the parent
  *
   `@include centered();`
  *
*/
/*
  * Full width element
  *
   `@include full-width();`
  *
*/
/*
  * Input Box Mixin
  *
   `@include input-box();`
  *
*/
/*
  * Vertical Align anything
  *
   `@include vertical-align();`
  *
*/
/*
  * Set float direction and width
  *
   `@include fl-width(left, 100%);`
  *
*/
/*
  * Set the alignment of text in an 'inline-block' element
  *
   `@include display-align(middle);`
  *
*/
/*
  * Break the word if the containing div is too small
  *
   `@include word-wrap();`
  *
*/
/*
  * Add ellipsis onto end of text if overflows the height of element
  *
   `@include ellipsis();`
  *
*/
/* RESET */
/* ====== NORMALIZE ====== */
/* ======
NORMALIZE
  - HTML5 Display Definitions
  - Base
  - Links
  - Typography
  - Embedded Content
  - Figures
  - Forms
  - Tables
====== */
/*================================================================================
$ 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: 0; }

/*================================================================================
$ 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="button"],
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 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 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; }

/* ====== RESET ====== */
/* ======
RESET
  - Reset Styles
====== */
/*================================================================================
$ RESET STYLES
================================================================================*/
/*
    * Let’s make the box model all nice, shall we…?
*/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  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; }

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

/* REBOOT */
/* ====== BASE ====== */
/* ======
BASE
    - Root
    - Links
    - Sectioning
    - Headings
    - Paragraphs
    - Quotes
    - Preformatted
    - Lists
    - Tables
    - Forms
    - Inline
    - Media
====== */
/*================================================================================
$ ROOT
================================================================================*/
@font-face {
  font-family: 'GothamHTF-Book';
  font-style: normal;
  font-weight: normal;
  src: local("GothamHTF-Book"), url("../fonts/GothamHTF-Book.woff") format("woff"); }
html {
  font: 100%/1.13 "GothamHTF-Book", "GothamHTF-Book", sans-serif;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%; }

body {
  color: #333333;
  text-rendering: optimizeLegibility; }
  body:after {
    content: 'palm';
    display: none; }
    @media screen and (min-width: 600px) {
      body:after {
        content: 'lap'; } }
    @media screen and (min-width: 900px) {
      body:after {
        content: 'desk'; } }
    @media screen and (min-width: 1200px) {
      body:after {
        content: 'wide'; } }

/*================================================================================
$ LINKS
================================================================================*/
a {
  color: #D1161E; }
  a:hover, a:active, a:focus {
    color: #e93139;
    text-decoration: underline; }

/*================================================================================
$ SECTIONING
================================================================================*/
hr {
  border: none;
  border-bottom: 1px solid #EEEEEE;
  clear: both;
  margin-bottom: 10px;
  padding-bottom: 5px; }

p {
  margin-bottom: 10px; }

/*================================================================================
$ HEADINGS
================================================================================*/
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: "GothamHTF-Book", "GothamHTF-Book", sans-serif;
  -webkit-font-smoothing: antialiased;
  font-weight: 500;
  line-height: 1.13; }

h1, .h1 {
  font-size: 32px;
  font-size: 2rem; }

h2, .h2 {
  font-size: 26px;
  font-size: 1.625rem; }

h3, .h3 {
  font-size: 24px;
  font-size: 1.5rem; }

h4, .h4 {
  font-size: 22px;
  font-size: 1.375rem; }

h5, .h5 {
  font-size: 20px;
  font-size: 1.25rem; }

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

h1 span, .h1 span,
h2 span, .h2 span,
h3 span, .h3 span,
h4 span, .h4 span,
h5 span, .h5 span,
h6 span, .h6 span {
  font-size: inherit;
  font-weight: normal; }

/*================================================================================
$ PARAGRAPHS
================================================================================*/
.lede {
  color: #666666;
  font-size: 18px;
  font-size: 1.125rem;
  -webkit-font-smoothing: antialiased;
  line-height: 1.25;
  margin-bottom: 10px; }

small, .small, .caption {
  color: #D4D5D7;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "GothamHTF-Book", "GothamHTF-Book", sans-serif; }

.caption {
  padding-top: 5px;
  margin-bottom: 5px; }

/*================================================================================
$ QUOTES
================================================================================*/
blockquote {
  margin-left: 10px;
  margin-right: 10px; }

blockquote + figcaption:before {
  content: "—"; }

/*================================================================================
$ PREFORMATTED
================================================================================*/
pre {
  margin-left: 10px;
  overflow: auto;
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word; }

pre code, pre samp {
  line-height: 1.25; }

/*================================================================================
$ LISTS
================================================================================*/
ul, ol, dl {
  margin-left: 10px; }
  ul.unstyled, ol.unstyled, dl.unstyled {
    list-style: none;
    margin-left: 0; }

li > ul, li > ol {
  margin-bottom: 0; }

nav ul {
  list-style: none;
  list-style-image: none;
  margin: 0;
  padding: 0; }
nav a {
  display: block; }

dd + dt {
  padding-top: 5px; }

/*================================================================================
$ TABLES
================================================================================*/
table {
  margin-top: 10px;
  width: 100%; }

caption {
  color: #666666;
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 5px;
  padding-top: 5px; }

th, td {
  padding: 5px;
  text-align: left;
  vertical-align: top; }

[colspan] {
  text-align: center; }

[colspan="1"] {
  text-align: left; }

[rowspan] {
  vertical-align: middle; }

[rowspan="1"] {
  vertical-align: top; }

.numerical {
  text-align: right; }

/*================================================================================
$ FORMS
================================================================================*/
form > :last-child {
  margin-bottom: 0; }

fieldset {
  border: none;
  margin-bottom: 10px; }

legend {
  color: #666666;
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 5px;
  padding-top: 5px;
  text-transform: uppercase;
  letter-spacing: 0.1em; }

.field {
  list-style: none;
  margin-bottom: 10px; }

.options {
  list-style: none;
  margin: 0; }

label {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  margin-bottom: 5px; }

.options label, label.check {
  display: inline-block;
  font-size: 16px;
  font-size: 1rem;
  margin-bottom: 0; }

abbr[title="Required"] {
  border: 0;
  color: #f00;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold; }

input + .caption, select + .caption, textarea + .caption {
  display: block;
  margin-bottom: 0; }

.form__actions {
  border-top: 1px solid #EEEEEE;
  margin-top: 10px;
  padding-top: 10px; }

button, input, select, textarea {
  line-height: 18px;
  outline: none;
  vertical-align: middle; }

.text, select, textarea {
  background: #FFFFFF;
  border: 1px solid #CCCCCC;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1);
  -ms-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1);
  -o-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1);
  color: inherit;
  max-width: 100%;
  padding: 5px;
  width: 100%; }
  .text:focus, select:focus, textarea:focus {
    border-color: #D1161E;
    -webkit-box-shadow: 0 0 3px rgba(41, 147, 204, 0.5);
    -moz-box-shadow: 0 0 3px rgba(41, 147, 204, 0.5);
    -ms-box-shadow: 0 0 3px rgba(41, 147, 204, 0.5);
    -o-box-shadow: 0 0 3px rgba(41, 147, 204, 0.5);
    box-shadow: 0 0 3px rgba(41, 147, 204, 0.5);
    outline: none; }

.text {
  height: 25px; }

textarea, textarea.text {
  height: auto;
  min-width: 100%; }

input[type="radio"],
input[type="checkbox"] {
  margin-right: 5px; }

[disabled] {
  background: #f2f2f2;
  cursor: default; }

.error label {
  color: #cc0000; }
.error .text, .error select, .error textarea {
  border-color: #cc0000;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  -ms-border-radius: 5px 5px 0 0;
  -o-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0; }
.error .error__message {
  display: block; }

.error__message {
  background: #cc0000;
  -webkit-border-radius: 0 0 5px 5px;
  -moz-border-radius: 0 0 5px 5px;
  -ms-border-radius: 0 0 5px 5px;
  -o-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
  color: white;
  display: none;
  font-size: 14px;
  font-size: 0.875rem;
  padding: 5px; }

/*================================================================================
$ INLINE
================================================================================*/
abbr {
  color: #666666; }

abbr[title], dfn[title] {
  border-bottom: 1px dotted #CCCCCC;
  cursor: help; }

mark, .mark {
  background: #ffc;
  padding: 0 2px; }

ins {
  background: #f2f2f2;
  padding: 0 2px; }

del {
  text-decoration: line-through; }

code, samp {
  color: #696;
  font-family: Inconsolata, Consolas, Monaco, monospace; }

samp {
  background-color: #f2f2f2;
  padding: 5px; }

kbd {
  background: white;
  border: 1px solid #EEEEEE;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px;
  color: #666666;
  font-family: inherit;
  font-size: 90%;
  line-height: 90%;
  margin: 0 2px;
  padding: 5px; }

sub {
  font-size: smaller;
  line-height: 90%;
  vertical-align: sub; }

sup {
  font-size: smaller;
  line-height: 90%;
  vertical-align: super; }

/*================================================================================
$ MEDIA
================================================================================*/
img, video, embed {
  border: none;
  height: auto;
  max-width: 100%; }

figure img {
  display: block; }

figcaption {
  clear: left;
  color: #666666;
  font-size: 14px;
  font-size: 0.875rem;
  padding: 5px; }

/*

HELPERS

*/
/*
 * Clearfix
 */
.clearfix,
.cf,
nav ul,
.field,
.nav,
.nav--inline,
.nav--stacked,
.nav--tabbed,
.nav--breadcrumb,
.tab__body,
.container,
.grid {
  zoom: 1; }
  .clearfix:before, .clearfix:after,
  .cf:before,
  nav ul:before,
  .field:before,
  .nav:before,
  .nav--inline:before,
  .nav--stacked:before,
  .nav--tabbed:before,
  .nav--breadcrumb:before,
  .tab__body:before,
  .container:before,
  .grid:before,
  .cf:after,
  nav ul:after,
  .field:after,
  .nav:after,
  .nav--inline:after,
  .nav--stacked:after,
  .nav--tabbed:after,
  .nav--breadcrumb:after,
  .tab__body:after,
  .container:after,
  .grid:after {
    content: "";
    display: table; }
  .clearfix:after,
  .cf:after,
  nav ul:after,
  .field:after,
  .nav:after,
  .nav--inline:after,
  .nav--stacked:after,
  .nav--tabbed:after,
  .nav--breadcrumb:after,
  .tab__body:after,
  .container:after,
  .grid:after {
    clear: both; }

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

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

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

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

.visible {
  display: block !important;
  visibility: visible; }

/*
 * For menu toggling
 */
.is-closed {
  border: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  padding: 0 !important; }

.is-open {
  height: auto;
  overflow: visible; }

/*
 * Breakpoint based hiding
 */
.palm {
  display: none !important; }

.lap {
  display: none !important; }

.not-desk {
  display: none !important; }

@media screen and (min-width: 0px) {
  .desk {
    display: none !important; }

  .not-desk {
    display: inherit !important; }

  .lap {
    display: none !important; }

  .not-lap {
    display: inherit !important; }

  .palm {
    display: inherit !important; }

  .not-palm {
    display: none !important; } }
@media screen and (min-width: 600px) and (max-width: 899px) {
  .desk {
    display: none !important; }

  .not-desk {
    display: inherit !important; }

  .lap {
    display: inherit !important; }

  .not-lap {
    display: none !important; }

  .palm {
    display: none !important; }

  .not-palm {
    display: inherit !important; } }
@media screen and (min-width: 900px) {
  .desk {
    display: inherit !important; }

  .not-desk {
    display: none !important; }

  .lap {
    display: none !important; }

  .not-lap {
    display: inherit !important; }

  .palm {
    display: none !important; }

  .not-palm {
    display: inherit !important; } }
/*
    * Overrides for emergency use only ;)
*/
.float--right, .fr {
  float: right !important; }

.float--left, .fl {
  float: left !important; }

.text--left {
  text-align: left  !important; }

.text--center {
  text-align: center !important; }

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

.flush {
  margin: 0 !important; }

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

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

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

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

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

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

.clear--both, .cb {
  clear: both !important; }

/* OBJECTS */
/* ====== OBJECTS ====== */
/* ======
OBJECTS
  - Navs
  - Icons
  - Grid
====== */
/*================================================================================
$ NAVS
================================================================================*/
.nav, .nav--inline, .nav--stacked, .nav--tabbed, .nav--breadcrumb {
  margin-left: 0;
  list-style: none; }
  .nav > li, .nav--inline > li, .nav--stacked > li, .nav--tabbed > li, .nav--breadcrumb > li {
    float: left; }
    .nav > li + li, .nav--inline > li + li, .nav--stacked > li + li, .nav--tabbed > li + li, .nav--breadcrumb > li + li {
      margin-left: 10px; }
    .nav > li > a, .nav--inline > li > a, .nav--stacked > li > a, .nav--tabbed > li > a, .nav--breadcrumb > li > a {
      display: inline-block; }
    .nav > li.active > a, .nav--inline > li.active > a, .nav--stacked > li.active > a, .nav--tabbed > li.active > a, .nav--breadcrumb > li.active > a {
      cursor: default; }

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

.nav--stacked > li {
  display: block;
  float: none;
  margin: 0; }
  .nav--stacked > li + li {
    margin-left: 0; }
  .nav--stacked > li > a {
    display: block; }

.nav--tabbed {
  margin-bottom: 10px;
  border-bottom: 1px solid #CCCCCC; }
  .nav--tabbed > li {
    margin-bottom: -1px; }
    .nav--tabbed > li + li {
      margin-left: 5px; }
    .nav--tabbed > li > a {
      background: #f2f2f2;
      border: 1px solid #CCCCCC;
      border-bottom: none;
      border-radius: 9px 9px 0 0;
      -webkit-font-smoothing: antialiased;
      font-weight: bold;
      padding: 5px;
      text-decoration: none; }
    .nav--tabbed > li.active > a {
      background: none;
      border-bottom: 1px solid #FFFFFF;
      color: inherit; }

.tabbed--full {
  text-align: center; }
  .tabbed--full > li + li {
    margin-left: 0; }
  .tabbed--full > li > a {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    display: block; }
  .tabbed--full > li:first-child > a {
    -webkit-border-radius: 9px 0 0 0;
    -moz-border-radius: 9px 0 0 0;
    -ms-border-radius: 9px 0 0 0;
    -o-border-radius: 9px 0 0 0;
    border-radius: 9px 0 0 0; }
  .tabbed--full > li:last-child > a {
    -webkit-border-radius: 0 9px 0 0;
    -moz-border-radius: 0 9px 0 0;
    -ms-border-radius: 0 9px 0 0;
    -o-border-radius: 0 9px 0 0;
    border-radius: 0 9px 0 0; }

.tabbed-2 > li {
  width: 50%; }

.tabbed-3 > li {
  width: 33.33333%; }

.tabbed-4 > li {
  width: 25%; }

.tab__body {
  margin-bottom: 10px; }
  .tab__body > :last-child {
    margin-bottom: 0; }

.nav--breadcrumb > li + li {
  margin-left: 5px; }
  .nav--breadcrumb > li + li:before {
    content: "→";
    display: inline-block;
    margin-right: 5px; }
@media screen and (max-width: 599px) {
  .nav--breadcrumb > li {
    display: none; }
    .nav--breadcrumb > li:nth-last-child(2) {
      display: block;
      float: none; }
    .nav--breadcrumb > li a {
      display: block; }
  .nav--breadcrumb > li + li {
    margin-left: 0; }
    .nav--breadcrumb > li + li:before {
      content: "←";
      float: left; } }

/*================================================================================
$ ICONS
================================================================================*/
[class^="icon-"] span, [class*=" icon-"] span {
  position: absolute;
  left: -9999px; }

/*================================================================================
$ GRID
================================================================================*/
.wrapper {
  clear: both;
  width: 100%; }

.container {
  list-style: none;
  margin: 0 auto;
  max-width: 1400px;
  padding-left: 5px;
  padding-right: 5px;
  width: auto; }
  @media screen and (min-width: 600px) {
    .container {
      padding-right: 10px;
      padding-left: 10px; } }

.grid {
  margin-left: -4%; }
  @media screen and (min-width: 900px) {
    .grid {
      margin-left: -2%; } }

.grid--padded-top, .grid--padded {
  padding-top: 10px; }

.grid--padded-bottom, .grid--padded {
  padding-bottom: 10px; }

[class*=span], .grid__cell {
  float: left;
  display: inline;
  min-height: 1px;
  padding-left: 4%;
  position: relative;
  width: 100%; }
  @media screen and (min-width: 900px) {
    [class*=span], .grid__cell {
      padding-left: 2%; } }

@media screen and (max-width: 599px) {
  .palm-1-1 {
    width: 100%; }

  .palm-2-1 {
    width: 50%; }

  .palm-2-2 {
    width: 100%; }

  .palm-3-1 {
    width: 33.33333%; }

  .palm-3-2 {
    width: 66.66667%; }

  .palm-3-3 {
    width: 100%; }

  .palm-4-1 {
    width: 25%; }

  .palm-4-2 {
    width: 50%; }

  .palm-4-3 {
    width: 75%; }

  .palm-4-4 {
    width: 100%; } }
@media screen and (min-width: 600px) and (max-width: 899px) {
  .lap-1-1 {
    width: 100%; }

  .lap-2-1 {
    width: 50%; }

  .lap-2-2 {
    width: 100%; }

  .lap-3-1 {
    width: 33.33333%; }

  .lap-3-2 {
    width: 66.66667%; }

  .lap-3-3 {
    width: 100%; }

  .lap-4-1 {
    width: 25%; }

  .lap-4-2 {
    width: 50%; }

  .lap-4-3 {
    width: 75%; }

  .lap-4-4 {
    width: 100%; }

  .lap-5-1 {
    width: 20%; }

  .lap-5-2 {
    width: 40%; }

  .lap-5-3 {
    width: 60%; }

  .lap-5-4 {
    width: 80%; }

  .lap-5-5 {
    width: 100%; }

  .lap-6-1 {
    width: 16.66667%; }

  .lap-6-2 {
    width: 33.33333%; }

  .lap-6-3 {
    width: 50%; }

  .lap-6-4 {
    width: 66.66667%; }

  .lap-6-5 {
    width: 83.33333%; }

  .lap-6-6 {
    width: 100%; }

  .lap-7-1 {
    width: 14.28571%; }

  .lap-7-2 {
    width: 28.57143%; }

  .lap-7-3 {
    width: 42.85714%; }

  .lap-7-4 {
    width: 57.14286%; }

  .lap-7-5 {
    width: 71.42857%; }

  .lap-7-6 {
    width: 85.71429%; }

  .lap-7-7 {
    width: 100%; }

  .lap-8-1 {
    width: 12.5%; }

  .lap-8-2 {
    width: 25%; }

  .lap-8-3 {
    width: 37.5%; }

  .lap-8-4 {
    width: 50%; }

  .lap-8-5 {
    width: 62.5%; }

  .lap-8-6 {
    width: 75%; }

  .lap-8-7 {
    width: 87.5%; }

  .lap-8-8 {
    width: 100%; } }
@media screen and (min-width: 900px) {
  .desk-1-1 {
    width: 100%; }

  .desk-2-1 {
    width: 50%; }

  .desk-2-2 {
    width: 100%; }

  .desk-3-1 {
    width: 33.33333%; }

  .desk-3-2 {
    width: 66.66667%; }

  .desk-3-3 {
    width: 100%; }

  .desk-4-1 {
    width: 25%; }

  .desk-4-2 {
    width: 50%; }

  .desk-4-3 {
    width: 75%; }

  .desk-4-4 {
    width: 100%; }

  .desk-6-1 {
    width: 16.66667%; }

  .desk-6-2 {
    width: 33.33333%; }

  .desk-6-3 {
    width: 50%; }

  .desk-6-4 {
    width: 66.66667%; }

  .desk-6-5 {
    width: 83.33333%; }

  .desk-6-6 {
    width: 100%; }

  .desk-7-1 {
    width: 14.28571%; }

  .desk-7-2 {
    width: 28.57143%; }

  .desk-7-3 {
    width: 42.85714%; }

  .desk-7-4 {
    width: 57.14286%; }

  .desk-7-5 {
    width: 71.42857%; }

  .desk-7-6 {
    width: 85.71429%; }

  .desk-7-7 {
    width: 100%; }

  .desk-8-1 {
    width: 12.5%; }

  .desk-8-2 {
    width: 25%; }

  .desk-8-3 {
    width: 37.5%; }

  .desk-8-4 {
    width: 50%; }

  .desk-8-5 {
    width: 62.5%; }

  .desk-8-6 {
    width: 75%; }

  .desk-8-7 {
    width: 87.5%; }

  .desk-8-8 {
    width: 100%; } }
/* PLUGIN */
/* THEME */
/* ====== HEADER ====== */
/* ======
HEADER
	- Header
====== */
/*================================================================================
$ HEADER
================================================================================*/
#header {
  float: left;
  width: 100%; }

.red-header {
  background-color: #525252;
  float: left;
  height: 75px;
  width: 100%; }
  .red-header img {
    max-height: 75px; }

.nav-container {
  background-color: #FFFFFF;
  float: left;
  padding: 10px 0;
  margin-left: 0;
  width: 100%; }
  .nav-container ul {
    float: right;
    margin-right: 10px;
    width: auto; }
    @media screen and (min-width: 0) and (max-width: 599px) {
      .nav-container ul {
        margin-left: 0;
        margin-right: 0; } }
  .nav-container li {
    background-color: #A6A6AA;
    border-radius: 10px;
    float: left;
    list-style: none;
    margin-right: 2px; }
    @media screen and (min-width: 0) and (max-width: 599px) {
      .nav-container li {
        float: left; } }
    .nav-container li:hover {
      background-color: #D4D5D7;
      color: #4D4E4E;
      text-decoration: underline; }
  .nav-container a {
    color: #FFFFFF;
    display: block;
    font-weight: bold;
    padding: 10px 75px; }
    @media screen and (max-width: 1099px) {
      .nav-container a {
        padding: 10px 55px; } }
    @media screen and (min-width: 600px) and (max-width: 899px) {
      .nav-container a {
        padding: 10px 25px; } }
    @media screen and (min-width: 0) and (max-width: 599px) {
      .nav-container a {
        padding: 10px 3px; } }
    @media screen and (min-width: 0) and (max-width: 399px) {
      .nav-container a {
        font-size: 14px; } }
  .nav-container .active {
    background-color: #D4D5D7;
    color: #4D4E4E; }

/* ====== GENERAL ====== */
/* ======
BLOG
	- General Layout
	- Blog Home
====== */
/*================================================================================
$ GENERAL LAYOUT
================================================================================*/
.footer-container {
  background-color: #FFFFFF;
  float: left;
  padding: 20px 10px;
  width: 100%; }
  @media screen and (min-width: 0) and (max-width: 899px) {
    .footer-container {
      padding: 20px 5px; } }

.footer-text {
  float: left;
  width: auto; }
  .footer-text > p {
    color: #4D4E4E;
    font-size: 12px; }

.footer-nav-container {
  float: right; }
  @media screen and (min-width: 0) and (max-width: 599px) {
    .footer-nav-container {
      width: 100%; } }
  @media screen and (min-width: 0) and (max-width: 599px) {
    .footer-nav-container ul {
      padding: 10px 0; } }
  .footer-nav-container li {
    float: left;
    list-style: outside none none;
    padding: 0 10px; }
    @media screen and (min-width: 600px) and (max-width: 899px) {
      .footer-nav-container li {
        padding: 0 5px; } }
    @media screen and (min-width: 0) and (max-width: 599px) {
      .footer-nav-container li {
        padding: 0;
        text-align: center;
        width: 50%; } }
    .footer-nav-container li a {
      color: #4D4E4E;
      font-size: 12px;
      vertical-align: top; }

/*
 * jQuery FlexSlider v2.4.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 and later license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 * 
 */
/* ====================================================================================================================
 * FONT-FACE
 * ====================================================================================================================*/
@font-face {
  font-family: 'flexslider-icon';
  src: url("fonts/flexslider-icon.eot");
  src: url("fonts/flexslider-icon.eot?#iefix") format("embedded-opentype"), url("fonts/flexslider-icon.woff") format("woff"), url("fonts/flexslider-icon.ttf") format("truetype"), url("fonts/flexslider-icon.svg#flexslider-icon") format("svg");
  font-weight: normal;
  font-style: normal; }
/* ====================================================================================================================
 * RESETS
 * ====================================================================================================================*/
.flex-container a:hover,
.flex-slider a:hover,
.flex-container a:focus,
.flex-slider a:focus {
  outline: none; }

.slides,
.slides > li,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none; }

.flex-pauseplay span {
  text-transform: capitalize; }

/* ====================================================================================================================
 * BASE STYLES
 * ====================================================================================================================*/
.flexslider {
  margin: 0;
  padding: 0; }

.flexslider .slides > li {
  -webkit-backface-visibility: hidden; }

.flexslider .slides img {
  width: 100%;
  display: block; }

.flexslider .slides:after {
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

html[xmlns] .flexslider .slides {
  display: block; }

* html .flexslider .slides {
  height: 1%; }

.no-js .flexslider .slides > li:first-child {
  display: block; }

/* ====================================================================================================================
 * DEFAULT THEME
 * ====================================================================================================================*/
.flexslider {
  background: #ffffff;
  border: 4px solid #ffffff;
  position: relative;
  zoom: 1;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2);
  -o-box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2);
  box-shadow: "" 0 1px 4px rgba(0, 0, 0, 0.2); }

.flexslider .slides {
  zoom: 1; }

.flexslider .slides img {
  height: auto; }

.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease; }

.loading .flex-viewport {
  max-height: 300px; }

.carousel li {
  margin-right: 5px; }

.flex-direction-nav {
  *height: 0; }

.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 40px;
  height: 40px;
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3); }

.flex-direction-nav a:before {
  font-family: "flexslider-icon";
  font-size: 40px;
  display: inline-block;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3); }

.flex-direction-nav .flex-prev {
  left: -50px; }

.flex-direction-nav .flex-next {
  right: -50px;
  text-align: right; }

.flexslider:hover .flex-direction-nav .flex-prev {
  opacity: 0.7;
  left: 10px; }

.flexslider:hover .flex-direction-nav .flex-prev:hover {
  opacity: 1; }

.flexslider:hover .flex-direction-nav .flex-next {
  opacity: 0.7;
  right: 10px; }

.flexslider:hover .flex-direction-nav .flex-next:hover {
  opacity: 1; }

.flex-direction-nav .flex-disabled {
  opacity: 0 !important;
  filter: alpha(opacity=0);
  cursor: default; }

.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000; }

.flex-pauseplay a:before {
  font-family: "flexslider-icon";
  font-size: 20px;
  display: inline-block; }

.flex-pauseplay a:hover {
  opacity: 1; }

.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: 20px;
  text-align: center;
  z-index: 4; }
  @media screen and (min-width: 0) and (max-width: 599px) {
    .flex-control-nav {
      display: none; } }

.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline; }

.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  border: 1px solid #FFFFFF;
  background: transparent;
  cursor: pointer;
  text-indent: -9999px; }

.flex-control-paging li a:hover {
  background: #FFFFFF;
  border: 1px solid #FFFFFF; }

.flex-control-paging li a.flex-active {
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
  cursor: default; }

.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden; }

.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0; }

.flex-control-thumbs img {
  width: 100%;
  height: auto;
  display: block;
  opacity: .7;
  cursor: pointer;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease; }

.flex-control-thumbs img:hover {
  opacity: 1; }

.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default; }

/* ====================================================================================================================
 * RESPONSIVE
 * ====================================================================================================================*/
@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px; }

  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px; } }
.flexslider {
  float: left;
  width: 100%; }
  .flexslider > li {
    position: relative; }
  .flexslider p {
    padding-left: 30px;
    top: 0; }
    @media screen and (min-width: 0) and (max-width: 599px) {
      .flexslider p {
        padding-left: 0;
        width: 100%; } }

.slide-detail {
  background-color: #FFFFFF;
  border: 2px solid #FFFFFF;
  border-radius: 20px;
  left: 5%;
  padding: 20px;
  position: absolute;
  top: 25%;
  width: 30%;
  z-index: 1000; }
  @media screen and (min-width: 900px) and (max-width: 1199px) {
    .slide-detail {
      width: 50%; } }
  @media screen and (min-width: 600px) and (max-width: 899px) {
    .slide-detail {
      left: 50px;
      top: 15px;
      width: 75%; } }
  @media screen and (min-width: 0) and (max-width: 599px) {
    .slide-detail {
      border-radius: 0;
      float: left;
      left: 0;
      margin-top: 10px;
      padding: 0 5px;
      position: relative;
      top: 0;
      width: 100%; } }

.directions-container {
  float: right;
  padding-left: 50px;
  width: 43%;
  border-left: 1px solid black; }

.flex-direction-nav {
  bottom: 55%;
  display: block;
  left: 0;
  list-style: outside none none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: auto;
  width: 100%;
  z-index: 9; }
  @media screen and (min-width: 0) and (max-width: 599px) {
    .flex-direction-nav {
      display: none; } }
  .flex-direction-nav li {
    color: #FFFFFF; }
  .flex-direction-nav .flex-nav-prev {
    margin: 0;
    position: relative;
    width: 100%; }
    .flex-direction-nav .flex-nav-prev .flex-prev {
      display: block;
      overflow: hidden;
      left: 20px; }
      .flex-direction-nav .flex-nav-prev .flex-prev:before {
        background-image: url("../images/left-arrow.png");
        background-position: center center;
        background-repeat: no-repeat;
        background-size: 20px;
        color: #FFFFFF;
        content: url("");
        overflow: hidden;
        text-indent: -9999px;
        width: 20px; }
  .flex-direction-nav .flex-nav-next {
    margin: 0;
    position: relative;
    width: 100%; }
    .flex-direction-nav .flex-nav-next .flex-next {
      display: block;
      overflow: hidden;
      right: 20px; }
      .flex-direction-nav .flex-nav-next .flex-next:before {
        background-image: url("../images/right-arrow.png");
        background-position: center center;
        background-repeat: no-repeat;
        background-size: 20px;
        color: #FFFFFF;
        content: url("");
        overflow: hidden;
        text-indent: -9999px;
        width: 20px; }

/* ====== GENERAL ====== */
/* ======
GENERAL
	- General Layout
	- Map
    - Products
    - Suppliers
    - Privacy Policy
====== */
/*================================================================================
$ GENERAL LAYOUT
================================================================================*/
.flexslider .slides > li {
  display: none;
  opacity: 1; }
  .flexslider .slides > li:first-child {
    display: block;
    opacity: 1; }

.content {
  float: none;
  margin: 0 auto;
  max-width: 1400px;
  position: relative; }

.left-col {
  float: left;
  width: 50%; }
  @media screen and (min-width: 0) and (max-width: 899px) {
    .left-col {
      width: 100%; } }
  .left-col ul {
    float: right;
    margin-left: 0; }
    @media screen and (min-width: 0) and (max-width: 899px) {
      .left-col ul {
        float: none;
        text-align: center; } }
    .left-col ul li {
      line-height: 25px;
      list-style: none; }

.right-col {
  float: left;
  width: 50%; }
  @media screen and (min-width: 0) and (max-width: 899px) {
    .right-col {
      width: 100%; } }
  .right-col ul {
    float: left;
    margin-left: 0;
    padding-left: 50px; }
    @media screen and (min-width: 0) and (max-width: 899px) {
      .right-col ul {
        float: none;
        padding-left: 0;
        text-align: center; } }
    .right-col ul li {
      line-height: 25px;
      list-style: none; }
  .right-col a {
    color: #000000; }

.grey-bg {
  background: #D4D5D7; }

.container-content {
  float: left;
  position: relative;
  width: 100%; }

.map-content {
  background-color: #FFFFFF;
  border-radius: 10px;
  float: left;
  margin: 60px 0;
  padding: 40px 60px;
  width: 100%; }
  @media screen and (min-width: 0) and (max-width: 899px) {
    .map-content {
      border-radius: 0;
      margin: 0;
      padding: 20px; } }

/*================================================================================
$ MAP
================================================================================*/
.map-content .left-col {
  padding-right: 50px; }
  @media screen and (min-width: 0) and (max-width: 899px) {
    .map-content .left-col {
      padding-right: 0;
      margin-bottom: 20px; } }
  @media screen and (min-width: 0) and (max-width: 899px) {
    .map-content .left-col iframe {
      height: 100%; } }
.map-content .right-col {
  border-left: 1px solid #4D4E4E; }
  @media screen and (min-width: 0) and (max-width: 899px) {
    .map-content .right-col {
      border-left: 0; } }

@media screen and (min-width: 0) and (max-width: 599px) {
  .contact li, .contact a, .contact span {
    font-size: 14px; } }
.contact .left-col {
  border-right: 1px solid #4D4E4E; }
  @media screen and (min-width: 0) and (max-width: 899px) {
    .contact .left-col {
      border-right: 0; } }
.contact .right-col {
  border-left: 0px; }

.map-directions {
  padding-left: 50px;
  padding-top: 20px; }
  @media screen and (min-width: 0) and (max-width: 899px) {
    .map-directions {
      padding-left: 0; } }
  .map-directions:first-child {
    border-bottom: 1px solid #4D4E4E;
    padding-bottom: 20px;
    padding-top: 0; }
  .map-directions > p {
    font-size: 14px; }
    .map-directions > p span {
      font-weight: bold; }
  .map-directions ol {
    font-size: 14px;
    line-height: 20px; }

/*================================================================================
$ PRODUCTS
================================================================================*/
.product-content {
  max-width: none; }
  .product-content .flexslider-content {
    position: relative;
    width: 100%; }

.flexslider.product-flexslider {
  float: none;
  margin: 60px auto;
  max-width: 1400px; }
  @media screen and (min-width: 0) and (max-width: 599px) {
    .flexslider.product-flexslider {
      margin-bottom: 20px; } }
  .flexslider.product-flexslider .flex-control-nav {
    bottom: -50px; }

.text-overlay {
  left: 10%;
  position: absolute;
  top: 30%;
  width: 20%;
  z-index: 1000; }
  @media screen and (min-width: 900px) and (max-width: 1199px) {
    .text-overlay {
      left: 1%;
      width: 30%; } }
  @media screen and (min-width: 600px) and (max-width: 899px) {
    .text-overlay {
      left: 1%;
      top: 0%;
      width: 34%; } }
  @media screen and (min-width: 0) and (max-width: 599px) {
    .text-overlay {
      left: 1%;
      position: relative;
      width: 100%; } }
  .text-overlay p {
    color: #FFFFFF;
    line-height: 20px;
    margin-bottom: 20px;
    margin-right: 10px; }
    @media screen and (min-width: 0) and (max-width: 899px) {
      .text-overlay p {
        font-size: 14px; } }
    @media screen and (min-width: 0) and (max-width: 599px) {
      .text-overlay p {
        color: #000000;
        margin-right: 0; } }

.grey-overlay {
  background-color: #272525;
  background-color: rgba(39, 37, 37, 0.45);
  height: 100%;
  position: absolute;
  width: 35%;
  z-index: 9; }

@media screen and (min-width: 0) and (max-width: 599px) {
  .overlays {
    display: none; } }

.grey-overlay.right {
  right: 0; }

.grey-overlay.left {
  left: 0; }

/*================================================================================
$ SUPPLIERS
================================================================================*/
.logo-container ul {
  float: left;
  margin-left: 0;
  width: 100%; }
.logo-container li {
  border-right: 1px solid #96969a;
  float: left;
  list-style: none;
  min-height: 150px;
  padding: 10px;
  position: relative;
  text-align: center;
  width: 20%; }
  @media screen and (min-width: 0) and (max-width: 399px) {
    .logo-container li {
      min-height: 100px; } }
  @media screen and (min-width: 600px) and (max-width: 1199px) {
    .logo-container li {
      width: 25%; } }
  @media screen and (min-width: 0) and (max-width: 599px) {
    .logo-container li {
      width: 50%; } }
  @media screen and (min-width: 600px) and (max-width: 1199px) {
    .logo-container li:nth-child(4n+4) {
      border-right: 0; } }
  .logo-container li:nth-child(5n+5) {
    border-right: 0; }
    @media screen and (min-width: 600px) and (max-width: 1199px) {
      .logo-container li:nth-child(5n+5) {
        border-right: 1px solid #96969a; } }
    @media screen and (min-width: 0) and (max-width: 599px) {
      .logo-container li:nth-child(5n+5) {
        border-right: 1px solid #96969a; } }
  @media screen and (min-width: 0) and (max-width: 599px) {
    .logo-container li:nth-child(2n+2) {
      border-right: 0; } }
  .logo-container li:before {
    border-bottom: 1px solid #96969a;
    bottom: 0;
    content: "";
    margin: 0 auto;
    position: absolute;
    left: 0;
    height: 1px;
    right: 0;
    width: 90%; }
.logo-container .last:before {
  border-bottom: 0; }
  @media screen and (min-width: 0) and (max-width: 1199px) {
    .logo-container .last:before {
      border-bottom: 1px solid #96969a; } }
.logo-container img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 85%; }

@media screen and (min-width: 0) and (max-width: 599px) {
  .suppliers-content {
    padding: 20px 10px; } }

.privacy-content h2 {
  margin: 15px 0; }
.privacy-content ul {
  margin-bottom: 10px;
  margin-left: 25px; }
  .privacy-content ul > li {
    padding-left: 10px; }

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