@charset "UTF-8";
/**
* ## Welcome
* this styleguide is generated using styledown, grunt and jeckyll and is based on Inuit CSS
*/
/**
* ## Settings
* start here for global settings and variables
*/
/**
* ### Functions
* <span class="epsilon">ui/settings/functions.scss</span><br>
* contains simple maths. `quarter($number);` `halve($number);` `double($number);` `quadruple($number);`
*
*/
/**
* ### Type Settings
* <span class="epsilon">ui/settings/type-settings.scss</span> <br>
* set your base font-size and line-height, heading sizes, font weight variables, font-family variables<br><br>
* the `$base-font` is Merriweather and `$heading-font` is pontiac. Merriweather is Google Fonts, pontiac is @font-face<br>
* `$base-font-size` 15px<br>
* `$base-line-height` 29px<br>
* `$heading-size-1`  52px;<br>
* `$heading-size-2`  37px;<br>
* `$heading-size-3`  24px;<br>
* `$heading-size-4`  20px;<br>
* `$heading-size-5`  16px;<br>
* `$heading-size-6`  14px;<br>
* `$light` 200;
* `$book` 300;
* `$heavy` 700;
* `$black` 800;
*/
/**
* ### Colors
* <span class="epsilon">ui/settings/type-settings.scss</span> <br>
* these are the theme variables. note that these swatches are only part of the styleguide css
*
*     @example
*     <div class="fw clearfix"><p>Theme Colors</p></div>
*     <div class="swatch swatch-highlight">
*     </div>
*     <div class="swatch swatch-highlight--mute">
*     </div>
*     <div class="swatch swatch-base-color">
*     </div>
*     <div class="swatch swatch-base-color--mute">
*     </div>
*     <div class="fw clearfix"><p>Potential App Colors if needed</p></div>
*     <div class="swatch swatch-success-light">
*     </div>
*     <div class="swatch swatch-success-dark">
*     </div>
*     <div class="swatch swatch-error-light">
*     </div>
*     <div class="swatch swatch-error-dark">
*     </div>
*     <div class="swatch swatch-warning-light">
*     </div>
*     <div class="swatch swatch-warning-dark">
*     </div>
*     <div class="swatch swatch-info-light">
*     </div>
*     <div class="swatch swatch-info-dark">
*     </div>

*
*/
/**
* ### Global Variables
* <span class="epsilon">ui/settings/global.scss</span> <br>
* These are simply variables that might be used throughout project. A good place to look should you find a variable.
*
*/
*:focus {
  outline: 0; }

/**
* ### Breakpoints
* <span class="epsilon">ui/settings/breakpoints.scss</span> <br>
* by setting breakpoints here they can be used in conjuction with the layout module and trumps spacing responsive module<br><br>
* "max-mobile"    "screen and (max-width: 500px)",<br>
* <!--"landscape-mobile"    "screen and (min-width: 480px)",<br>-->
* "two-hands"    "screen and (min-width: 500px)",<br>
* "full-nav"      "screen and (min-width: 760px)",<br>
* "small-desk"      "screen and (min-width: 900px)",<br>
* "desk"          "screen and (min-width: 1180px)",<br>
* <!--"huge"          "screen and (min-width: 1400px)"-->
*
*/
/**
* ## Tools
* add your tools
*/
/**
* ### Mixins
* <span class="epsilon">ui/tools/mixins.scss</span> <br>
* `@mixin bp($mq)` pop one of the breakpoints above as the variable<br>
* `@mixin font-size($font-size, $line-height: auto)` <br>
* `@mixin vendor($property, $value...)`<br>
* `@mixin clearfix`<br>
* `@mixin attention($self: false)`<br>
* `@mixin headings($from: 1, $to: 6)`<br>
* `@mixin loading()` pops a loading gif in the background of the container<br>
* `@mixin hidden` hide from everything<br>
* `@mixin visuallyhidden` hide only visually
*
*/
/**
* ### Animations
* <span class="epsilon">ui/tools/animations.scss</span> <br>
* some handy animations. don't forget to add -webkit-animation too. so far there is..<br>
* 1) animation: fade-in-and-up 1.0s 1 ease-in-out; which fades element up<br>
*
*/
/*

* 1) animation: sk-scaleout 1.0s 1 ease-in-out; which scales in an element<br>

@-webkit-keyframes sk-scaleout {
  0% { -webkit-transform: scale(0) }

  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}

@keyframes sk-scaleout {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }

  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}

* 2) animation: subtle-sk-scaleout 1.0s 1 ease-in-out; which scales in an element more subtily<br>

@-webkit-keyframes subtle-sk-scaleout {
  0% { -webkit-transform: scale(0.7) }

  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}

@keyframes subtle-sk-scaleout {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
*/
/*
@-webkit-keyframes fade-in-and-up {
    0% {
      -webkit-transform: translate(0, 20px);
      opacity: 0;

    }

    100% {
      -webkit-transform: translate(0, 0);
      opacity: 1;

    }
}

@keyframes fade-in-and-up {
  0% {
    transform: translate(0, 20px);
    opacity: 0;

  }

  100% {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
    opacity: 1;

  }
}
*/
@-webkit-keyframes fade-in-and-up {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes fade-in-and-up {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

/**
* ## Generic
* all projects have these don't really need to tweak them
*/
/**
* ### Normalize
* <span class="epsilon">ui/generic/normalize.scss</span> <br>
* v3.0.3 | checked 4th Feb 2016 | http://necolas.github.io/normalize.css/
*/
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block; }

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden], template {
  display: none; }

a {
  background-color: transparent; }

a:active, a:hover {
  outline: 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b, strong {
  font-weight: 700; }

dfn {
  font-style: italic; }

h1 {
  font-size: 2em;
  margin: .67em 0; }

mark {
  background: #ff0;
  color: #000; }

small {
  font-size: 80%; }

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -.5em; }

sub {
  bottom: -.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 1em 40px; }

hr {
  box-sizing: content-box;
  height: 0; }

pre {
  overflow: auto; }

code, kbd, pre, samp {
  font-family: monospace,monospace;
  font-size: 1em; }

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0; }

button {
  overflow: visible; }

button, select {
  text-transform: none; }

button, html input[type="button"],
input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled], html input[disabled] {
  cursor: default; }

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0; }

input {
  line-height: normal; }

input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

input[type="number"]::-webkit-inner-spin-button, input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box; }

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

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: .35em .625em .75em; }

legend {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto; }

optgroup {
  font-weight: 700; }

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

td, th {
  padding: 0; }

/**
* ### Inuit CSS Reset
* <span class="epsilon">ui/generic/reset.scss</span> <br>
*
*/
/*
 * As well as using normalize.css, it is often advantageous to remove all
 * margins from certain elements.
 */
body,
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
dl, dd, ol, ul,
form, fieldset, legend,
figure,
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.
 */
u,
ins {
  text-decoration: none; }

/*
 * Apply faux underlines to inserted text via `border-bottom`.
 */
ins {
  border-bottom: 1px solid; }

/**
 * ### Box-Sizing
 * <span class="epsilon">ui/generic/box-sizing.scss</span> <br>
 * Set the global `box-sizing` state to `border-box`.<br>
 * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice<br>
 * paulirish.com/2012/box-sizing-border-box-ftw
 */
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

*, *:before, *:after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
  box-sizing: inherit; }

/**
* ### Shared
* <span class="epsilon">ui/generic/shared.scss</span> <br>
* styles that are globally shared<br>
*
* Where `%margin-bottom` is concerned,this value will be the same as the
* base line-height. This allows us to keep a consistent vertical rhythm.
* As per: csswizardry.com/2012/06/single-direction-margin-declarations<br>
*
* Where `%margin-left` is concerned we want to try and indent certain elements
* by a consistent amount. Define that amount once,here.
*
*/
h1, h2, h3, h4, h5, h6,
ul, ol, dl,
blockquote, p, address,
hr,
table,
fieldset, figure,
pre,
hr,
input[type="username"],
input[type="text"],
input[type="password"],
input[type="email"],
textarea,
.chosen-container,
.alignnone,
.aligncenter,
.alignright,
.alignleft {
  margin-bottom: 29px;
  margin-bottom: 2.0714285714rem; }

ul, ol, dd {
  margin-left: 29px;
  margin-left: 2.0714285714rem; }

/**
* ## Base
* Getting into the nitty gritty of custom styles
*/
/**
* ### High Level Page styling
* <span class="epsilon">ui/base/page.scss</span> <br>
* no need to tweak this
* 1. Set the default `font-size` and `line-height` for the entire project,
*    sourced from our default variables. The `font-size` is calculated to exist
*    in ems, the `line-height` is calculated to exist unitlessly.
* 2. Force scrollbars to always be visible to prevent awkward ‘jumps’ when
*    navigating between pages that do/do not have enough content to produce
*    scrollbars naturally.
* 3. Ensure the page always fills at least the entire height of the viewport.
* 4. Prevent certain mobile browsers from automatically zooming fonts.
* 5. Fonts on OSX will look more consistent with other systems that do not
*    render text using sub-pixel anti-aliasing.
*
*/
html {
  font-size: 0.875em;
  /* [1] */
  font-family: "Droid Serif", serif;
  line-height: 2.0714285714;
  /* [1] */
  background-color: white;
  color: #414243;
  overflow-y: scroll;
  /* [2] */
  min-height: 100%;
  /* [3] */
  -webkit-text-size-adjust: 100%;
  /* [4] */
  -ms-text-size-adjust: 100%;
  /* [4] */
  position: relative;
  font-weight: 100; }

body {
  overflow-x: hidden; }

/**
* ### Headings
* <span class="epsilon">ui/base/headings.scss</span> <br>
* setup all headings using the variables in type-settings.scss plus some helpful classes
*
*     @example
*     h1 This is an h1 or .alpha
*     h2 This is an h2 or .beta
*     h3 This is an h3 or .gamma
*     h4 This is an h4 or .delta
*     h5 This is an h5 or .epsilon
*     h6 This is an h6 or .zeta
*     //p.huge This has a class of .huge
*     p.big This has a class of .big
*     p.block-heading This has a class of .block-heading
*     <!--<h2>Normal Heading <span class="light-heading">.light-heading</span></h2>-->
*     <div style="background:black; padding: 10px; padding-bottom: 0;margin-bottom: 22px;"><h3 class="white-heading">this has a class of .white-heading</h3></div>
*     <!--<h3 class="double-border-heading epsilon allcaps uppercase">Popular</h4>-->
*
*/
h1, h2, h3, h4, h5, h6 {
  color: #414243;
  font-weight: 700;
  text-transform: uppercase; }

h1,
.alpha {
  font-family: "Montserrat", sans-serif;
  font-size: 52px;
  font-size: 3.7142857143rem;
  line-height: 1.4; }
  @media screen and (max-width: 500px) {
    h1,
    .alpha {
      font-size: 37px;
      font-size: 2.6428571429rem;
      line-height: 1.3; } }

h2,
.beta {
  font-family: "Montserrat", sans-serif;
  font-size: 37px;
  font-size: 2.6428571429rem;
  line-height: 1.3; }
  @media screen and (max-width: 500px) {
    h2,
    .beta {
      font-size: 24px;
      font-size: 1.7142857143rem;
      line-height: 1.3; } }

h3,
.gamma {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-size: 1.7142857143rem;
  line-height: 1.5; }
  @media screen and (max-width: 500px) {
    h3,
    .gamma {
      font-size: 16px;
      font-size: 1.1428571429rem;
      line-height: 1.7; } }

h4,
.delta {
  font-family: "Montserrat", sans-serif;
  font-size: 19px;
  font-size: 1.3571428571rem;
  line-height: 1.5263157895; }

h5,
.epsilon {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-size: 1.1428571429rem;
  line-height: 1.8125; }

h6,
.zeta {
  font-size: 14px;
  font-size: 1rem;
  line-height: 2.0714285714;
  font-family: "Montserrat", sans-serif; }

.big {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-transform: uppercase; }
  @media screen and (max-width: 500px) {
    .big {
      font-size: 37px;
      font-size: 2.6428571429rem;
      line-height: 1.3; } }
  @media screen and (min-width: 500px) {
    .big {
      font-size: 50px;
      font-size: 3.5714285714rem;
      line-height: 1.3; } }
  @media screen and (min-width: 760px) {
    .big {
      font-size: 70px;
      font-size: 5rem;
      line-height: 1.3; } }

.block-heading {
  background: 700;
  text-transform: uppercase;
  font-size: 14px;
  font-size: 1rem;
  line-height: 1.7;
  color: white;
  padding: 0 5px;
  display: inline-block; }

.white-heading {
  color: white; }

/**
* ### Type
* <span class="epsilon">ui/base/type.scss</span> <br>
* set some helpful type specific classes. Also set b and strong for the font you are using. `.heading` `.allcaps` `.highlight` `.small` `.subtitle` `.text-truncate` `.screenreader` .screenreader hides things but keeps visible for screenreader
*
*     @example
*     p this is <b>bold with b tag</b>  and this is <strong> strong with strong tag</strong>
*     p.heading this has a class of .heading
*     h2.body-text this is an h2 with .body-text
*     p.allcaps this has a class of .allcaps
*     h2.nocaps this is an h3 with .nocaps
*     p.highlight this has a class of .highlight
*     p.small this has a class of .small
*     p.subtitle this has a class of .subtitle
*     p.text-truncate this has a class of .text-truncate Praesent commodo cursus magna, vel scelerisque nisl consectetur et. Aenean lacinia bibendum nulla sed consectetur.
*     p the below link has .word-wrap
*     <p class="gamma"><a href="" class="word-wrap">Thisisasuperlongemailaddressthatneedstowrap@longlonglonglong.com</a><p>
*     <!--p this is some overlay text on an image
*     <div class="fw u-1/2-small-desk">
*     <a href="#" class="secret-link"><img src="/img/stock.jpg"></a>
*     <div class="overlay-text u-pr">
*     <p class="block-heading u-mb-">Entertainment</p><h3 class="white-heading u-mb- big">Vestibulum Porta Aenean Ullam</h3>
*     </div>
*     </div>-->
*
*
*/
b, strong {
  font-weight: bold; }

.heading {
  font-family: "Montserrat", sans-serif; }

.body-text {
  font-family: "Droid Serif", serif;
  font-weight: 400; }

.allcaps {
  text-transform: uppercase; }

.nocaps {
  text-transform: none; }

.highlight {
  color: #ed174a !important;
  fill: #ed174a !important; }

.small {
  font-size: 12px;
  font-size: 0.8571428571rem;
  line-height: 2.4166666667;
  line-height: 1.4; }

.subtitle {
  opacity: 0.5; }

.text-truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; }

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

.word-wrap {
  overflow-wrap: break-word;
  word-wrap: break-word; }

/*

.svg-right {
	position: relative;

	svg {
		width: 6px;
	    height: 16px;
	    stroke-width: 2px;
	    stroke-linecap: round;
	    display: inline-block;
	    vertical-align: text-top;
	    margin-left: 10px;
	}
}

.svg-left {
	position: relative;

	svg {
		width: 6px;
	    height: 16px;
	    stroke-width: 2px;
	    stroke-linecap: round;
	    display: inline-block;
	    vertical-align: text-top;
	    margin-right: 10px;
	}
}

	.svg--white {
		fill: transparent;
		stroke: white;
	}

	.svg--base {
		fill: transparent;
		stroke: $base-color;
	}
*/
/*

	Blockquotes

*/
/**
* ### Links
* <span class="epsilon">ui/base/links.scss</span> <br>
* general text links. `.secret-link` inherits the color but hover effect is the same
*
*     @example
*     <a href="#">normal link </a> &nbsp;this is <a href="#" class="secret-link">secret hover me</a>
*     <p>the ul below has .secret-links</p>
*     <ul class="secret-links"><li><a href="f">link</a></li><li><a href="f">link</a></li><li><a href="f">link</a></li><li><a href="f">link</a></li></ul>
*
*/
a {
  text-decoration: none;
  color: #ed174a;
  -ms-transition: 0.2s, all;
  -webkit-transition: 0.2s, all;
  -moz-transition: 0.2s, all;
  transition: 0.2s, all; }
  a:hover, a:active, a:focus {
    text-decoration: none;
    color: #a4b540; }

.secret-link, .secret-links a {
  color: inherit; }
  .secret-link:hover, .secret-link:active, .secret-link:focus, .secret-links a:hover, .secret-links a:active, .secret-links a:focus {
    color: #a4b540; }

/**
* ### Images
* <span class="epsilon">ui/base/images.scss</span> <br>
* all images are responsive, no classes needed
* .social svg are tweaked in size
*     @example
*     <div class="alignleft u-mr0"><img src="http://placehold.it/1000x300" /></div>
*     <p>.little-svg // .svg--white // .full-nav-svg--white</p>
*     <svg class="little-svg"><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://localhost:4000/img/svg-defs.svg#shape-lightbox"></use></svg><br>
*     <div style="background: black; padding: 20px; float: left; width: 100%;"><svg class="little-svg svg--white"><use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="http://localhost:4000/img/svg-defs.svg#shape-lightbox"></use></svg></div>
*     <br><br><a href="/img/svg-defs-demo.html">SVG defs demo</a>
*/
img {
  max-width: 100%;
  /* [1] */
  font-style: italic;
  /* [2] */
  vertical-align: middle;
  /* [3] */
  height: auto; }

.little-svg {
  width: 50px;
  height: 50px;
  fill: #414243; }

.svg--white {
  fill: white; }

@media screen and (min-width: 760px) {
  .full-nav-svg--white {
    fill: white; } }

a .little-svg {
  -ms-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s; }
  a .little-svg:hover {
    fill: #a4b540; }

/*
	sections with a background image
*/
/*
.gradient {
	@include vendor(background-size, cover);
	background-position: top center;

	@include bp(desk) {
		background-attachment: fixed;
	}
}

.gradient:after {
	position:absolute;
	top: 0;
	left: 0;
	height: 500px;
	width: 100%;
	content: "";
	background: -moz-linear-gradient(top, $ellipse-gradiant-inner 0%, $ellipse-gradiant-outer 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, $ellipse-gradiant-inner), color-stop(100%, $ellipse-gradiant-outer));
	background: -webkit-linear-gradient(top, $ellipse-gradiant-inner 0%, $ellipse-gradiant-outer 100%);
	background: -o-linear-gradient(top, $ellipse-gradiant-inner 0%, $ellipse-gradiant-outer 100%);
	background: -ms-linear-gradient(top, $ellipse-gradiant-inner 0%, $ellipse-gradiant-outer 100%);
	background: linear-gradient(to bottom, $ellipse-gradiant-inner 0%, $ellipse-gradiant-outer 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$ellipse-gradiant-inner', endColorstr='$ellipse-gradiant-outer', GradientType=0 );
}

.gradient {
	.wrapper {
		z-index: 99;
	}
}
*/
/*
	sections with a background color
*/
.bg-off-white {
  background: #f7f8f8; }

.bg-highlight {
  background: #ed174a; }

.bg-quaternary-color {
  background: #459dbd;
  color: white; }

.bg-quinternary-color {
  background: #DBE4BD; }

.bg-black {
  background: black;
  color: white; }

/*
.bg-image--tablet {
	background-image: url(../../img/tablet.jpg); // fallback for browser with no mulit-background support
	background-image: linear-gradient(
      rgba(0,0,0, 0.6),
      rgba(0,0,0, 0.6)
    	),
	  url(../../img/tablet.jpg);
	@include vendor(background-size, cover);
	background-position: top center;
	@include bp(desk) {
		background-attachment: fixed;
	}
	p, li, h1, h2, h3, h4 {
		color: white;
	}
}
*/
/**
* ### Misc Elements
* <span class="epsilon">ui/misc-elements.scss</span> <br>
* any elements that need specific styling
*
*     @example
*     <hr>
*
*     <hr class="mini-hr">
*
*     <hr class="mini-hr aligncenter">
*/
hr {
  border: none;
  border-bottom: dotted 2px #414243;
  clear: both; }

.mini-hr {
  width: 50%;
  max-width: 300px; }

label {
  display: block;
  margin-bottom: 7.25px; }

form div {
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

input[type="username"], input[type="text"], input[type="password"], input[type="email"], textarea, .chosen-container {
  background: #f7f8f8;
  border: solid 1px #ccc;
  border-radius: 0;
  padding: 0.9em 14.5px 0.8em !important;
  width: 100%;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: inherit;
  color: inherit; }
  input[type="username"]::-webkit-input-placeholder, input[type="text"]::-webkit-input-placeholder, input[type="password"]::-webkit-input-placeholder, input[type="email"]::-webkit-input-placeholder, textarea::-webkit-input-placeholder, .chosen-container::-webkit-input-placeholder {
    /* WebKit browsers */
    color: #ccc; }
  input[type="username"]:-moz-placeholder, input[type="text"]:-moz-placeholder, input[type="password"]:-moz-placeholder, input[type="email"]:-moz-placeholder, textarea:-moz-placeholder, .chosen-container:-moz-placeholder {
    /* Mozilla Firefox 4 to 18 */
    color: #ccc;
    opacity: 1; }
  input[type="username"]::-moz-placeholder, input[type="text"]::-moz-placeholder, input[type="password"]::-moz-placeholder, input[type="email"]::-moz-placeholder, textarea::-moz-placeholder, .chosen-container::-moz-placeholder {
    /* Mozilla Firefox 19+ */
    color: #ccc;
    opacity: 1; }
  input[type="username"]:-ms-input-placeholder, input[type="text"]:-ms-input-placeholder, input[type="password"]:-ms-input-placeholder, input[type="email"]:-ms-input-placeholder, textarea:-ms-input-placeholder, .chosen-container:-ms-input-placeholder {
    /* Internet Explorer 10+ */
    color: #ccc; }

textarea {
  width: 100%;
  resize: vertical; }

form ul {
  margin: 0;
  padding: 0;
  list-style: none; }

/**
* ### Lists
* <span class="epsilon">ui/base/lists.scss</span> <br>
* some handy list styles, `.block-list` &nbsp; `.inline-list` &nbsp; `.stack-list`
*
*     @example
*     h5.u-mb0 basic
*     <ul><li>example one</li><li>basic</li><li>example one</li><li>example one</li><li>example one</li></ul>
*     h5.u-mb0 .block-list
*     <ul class="block-list"><li>.block-list</li><li>basic</li><li>example one</li><li>example one</li><li>example one</li></ul>
*     h5.u-mb0 .inline-list
*     <ul class="inline-list"><li>.inline-list</li><li>basic</li><li>example one</li><li>example one</li><li>example one</li></ul><br/>
*     h5.u-mb0 .stack-list
*     <ul class="stack-list"><li>.stack-list</li><li>basic</li><li>example one</li><li>example one</li><li>example one</li></ul>
*     h5.u-mb0 .stack-list .stack-list--padded-links
*     <ul class="stack-list stack-list--padded-links"><li><a href="">link</a></li><li><a href="">link</a></li><li><a href="">link</a></li><li><a href="">link</a></li></ul>
*/
li > ul,
li > ol {
  margin-bottom: 0; }

ul, ol {
  list-style-position: inside; }

.block-list {
  margin: 0;
  padding: 0; }
  .block-list li {
    list-style: none;
    clear: both;
    display: inline-block; }

.inline-list {
  margin: 0;
  padding: 0; }
  .inline-list li {
    list-style: none;
    float: left;
    margin-right: 14.5px; }

.stack-list {
  display: block;
  margin-bottom: 0;
  margin: 0;
  list-style: none;
  float: left;
  width: 100%; }
  .stack-list > li {
    list-style: none;
    float: left;
    width: 100%; }

.stack-list--padded-links a {
  padding: 14.5px;
  display: block; }

/**
* ### Tables
* <span class="epsilon">ui/base/tables.scss</span> <br>
* just set tables to 100% width
*
*
*/
table {
  width: 100%; }

/**
* ## Objects
* not quite components
*/
/*------------------------------------*    #LAYOUT
\*------------------------------------*/
/**
* ### Layout
* <span class="epsilon">ui/objects/layout.scss</span> <br>
* The inuitcss layout system uses `box-sizing: border-box;` and
* `display: inline-block;` to create an extremely powerful, flexible
* alternative to the traditional grid system. Combine the layout items with
* the widths found in `trumps.widths`.
* `.layout` is the container and `.layout__item` is the grid elements. Just add `.u-1/2` to the `.layout__item` !!MAKE SURE WHITE SPACE IS CLEARED
*
*/
.layout {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-left: -29px; }

.layout__item {
  display: inline-block;
  /* [1] */
  padding-left: 29px;
  /* [2] */
  vertical-align: top;
  /* [3] */
  width: 100%;
  /* [4] */
  position: relative;
  float: none !important;
  -webkit-box-sizing: border-box;
  /* [5] */
  -moz-box-sizing: border-box;
  /* [5] */
  box-sizing: border-box;
  /* [5] */ }

@media screen and (min-width: 760px) {
  .layout--table {
    display: table !important; }
  .layout__item--table-cell {
    display: table-cell !important; } }

/**
 * ### Buttons
 * very simple
 *
 *     @example
 *     <a href="" class="button">Button</a>
 *     <a href="" class="button button--secondary">.button .button--secondary</a>
 *     <a href="" class="button button--tertiary">.button .button--tertiary</a>
 *     <!--<a href="" class="button--ghost">.button--ghost </a>-->
 *     <a href="" class="button button--tiny">.button .button--tiny</a>
 *     <div style="background:black;" class="u-p u-mb"><div class="button--white">.button--white</div></div>
 *     <!--<div style="background:black; position: relative" class="u-p"><p>&nbsp;</p><div class="button--white button--app">.button--white button--app</div></div>-->
*/
.button {
  display: inline-block;
  /* [1] */
  vertical-align: middle;
  /* [2] */
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  text-align: center;
  /* [4] */
  border: none;
  /* [4] */
  margin: 0;
  /* [4] */
  cursor: pointer;
  /* [5] */
  overflow: visible;
  /* [6] */
  padding: 8px 17px;
  /* [7] */
  background-color: #ed174a;
  text-transform: uppercase;
  border: 1px solid #ed174a;
  border-radius: 0px;
  margin-bottom: 29px;
  -ms-transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  font-size: 14px;
  font-size: 1rem;
  line-height: 2.0714285714;
  color: white;
  position: relative; }
  .button:hover, .button:active, .button:focus {
    text-decoration: none;
    background-color: #a4b540;
    border-color: #a4b540;
    color: white; }

footer input[type="submit"] {
  background: transparent;
  border: none; }

.gform_wrapper input[type="submit"] {
  display: inline-block;
  /* [1] */
  vertical-align: middle;
  /* [2] */
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  text-align: center;
  /* [4] */
  border: none;
  /* [4] */
  margin: 0;
  /* [4] */
  cursor: pointer;
  /* [5] */
  overflow: visible;
  /* [6] */
  padding: 8px 17px;
  /* [7] */
  background-color: #ed174a;
  text-transform: uppercase;
  border: 1px solid #ed174a;
  border-radius: 0px;
  margin-bottom: 29px;
  -ms-transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  font-size: 14px;
  font-size: 1rem;
  line-height: 2.0714285714;
  color: white;
  position: relative; }
  .gform_wrapper input[type="submit"]:hover, .gform_wrapper input[type="submit"]:active, .gform_wrapper input[type="submit"]:focus {
    text-decoration: none;
    background-color: #a4b540;
    border-color: #a4b540;
    color: white; }

.button--secondary {
  display: inline-block;
  /* [1] */
  vertical-align: middle;
  /* [2] */
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  text-align: center;
  /* [4] */
  border: none;
  /* [4] */
  margin: 0;
  /* [4] */
  cursor: pointer;
  /* [5] */
  overflow: visible;
  /* [6] */
  padding: 8px 17px;
  /* [7] */
  background-color: #ed174a;
  text-transform: uppercase;
  border: 1px solid #ed174a;
  border-radius: 0px;
  margin-bottom: 29px;
  -ms-transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  font-size: 14px;
  font-size: 1rem;
  line-height: 2.0714285714;
  color: white;
  position: relative;
  background-color: #a4b540 !important;
  border-color: #a4b540 !important;
  color: white; }
  .button--secondary:hover, .button--secondary:active, .button--secondary:focus {
    text-decoration: none;
    background-color: #a4b540;
    border-color: #a4b540;
    color: white; }
  .button--secondary:hover, .button--secondary:active, .button--secondary:focus {
    background-color: #ed174a !important;
    border-color: #ed174a !important;
    color: white; }

.button--tertiary {
  display: inline-block;
  /* [1] */
  vertical-align: middle;
  /* [2] */
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  text-align: center;
  /* [4] */
  border: none;
  /* [4] */
  margin: 0;
  /* [4] */
  cursor: pointer;
  /* [5] */
  overflow: visible;
  /* [6] */
  padding: 8px 17px;
  /* [7] */
  background-color: #ed174a;
  text-transform: uppercase;
  border: 1px solid #ed174a;
  border-radius: 0px;
  margin-bottom: 29px;
  -ms-transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  font-size: 14px;
  font-size: 1rem;
  line-height: 2.0714285714;
  color: white;
  position: relative;
  background-color: #414243 !important;
  border-color: #414243 !important;
  color: white; }
  .button--tertiary:hover, .button--tertiary:active, .button--tertiary:focus {
    text-decoration: none;
    background-color: #a4b540;
    border-color: #a4b540;
    color: white; }
  .button--tertiary:hover, .button--tertiary:active, .button--tertiary:focus {
    background-color: #ed174a !important;
    border-color: #ed174a !important;
    color: white; }

/* color modifiers */
.button--white {
  display: inline-block;
  /* [1] */
  vertical-align: middle;
  /* [2] */
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
  text-align: center;
  /* [4] */
  border: none;
  /* [4] */
  margin: 0;
  /* [4] */
  cursor: pointer;
  /* [5] */
  overflow: visible;
  /* [6] */
  padding: 8px 17px;
  /* [7] */
  background-color: #ed174a;
  text-transform: uppercase;
  border: 1px solid #ed174a;
  border-radius: 0px;
  margin-bottom: 29px;
  -ms-transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  transition: 0.3s;
  font-size: 14px;
  font-size: 1rem;
  line-height: 2.0714285714;
  color: white;
  position: relative;
  background-color: transparent !important;
  border-color: white !important;
  color: white; }
  .button--white:hover, .button--white:active, .button--white:focus {
    text-decoration: none;
    background-color: #a4b540;
    border-color: #a4b540;
    color: white; }
  .button--white:hover, .button--white:active, .button--white:focus {
    background-color: white !important;
    border-color: white !important;
    color: #ed174a; }

.button--tiny {
  padding: 2.6666666667px 17px; }

.wrapper {
  margin: 0 auto;
  padding: 0 29px;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  max-width: 1120px; }

.wrapper--narrow {
  margin: 0 auto;
  padding: 0 29px;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
  @media screen and (min-width: 900px) {
    .wrapper--narrow {
      width: 80%;
      max-width: 1000px; } }

#main {
  float: left;
  width: 100%;
  z-index: 99;
  background: white;
  min-height: 100%; }

.site-wrap {
  /* Critical position and size styles */
  min-height: 100%;
  min-width: 100%;
  background-color: white;
  /* Needs a background or else the nav will show through */
  position: relative;
  top: 0;
  bottom: 100%;
  left: 0;
  z-index: 1; }

/*
.overlay {
  background: rgba(0,0,0,0.4);
   opacity: 0;
   position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  transition: all 0.7s;
  height: 100%;
  z-index: -1;

}
*/
/**
* ### Header
* <span class="epsilon">ui/objects/header.scss</span> <br>
* The site header styles
*
*     @example
*     <header class="wrapper text-center u-pt+ u-pb">
*     <h1>NZ Musicians</h1>
*     <h2 class="body-text gamma nocaps"><em>Discover. Share. Collaborate.<br /> #nzmusicians</em></h2>
*     </header>
*
*/
header {
  background: url(../../img/banner-1.jpg) no-repeat;
  -ms-background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  background-size: cover;
  color: white;
  text-shadow: 0px 0px 170px black; }
  @media screen and (min-width: 760px) {
    header h1 {
      font-size: 80px; } }
  header.Black {
    color: #414243; }
  header.White {
    color: white !important; }

.single header {
  color: #414243;
  text-shadow: none; }

.footer {
  background: #414243;
  position: relative;
  z-index: 99;
  color: white; }

/**
* ## Components
*
*/
/*

  Menu Trigger

*/
/* Big trigger

$trigger-width: 40px;
$trigger-height: 19px;
$trigger-top-position: 61px;
$slice3-top: -20px;
$slice3-left: 2px;
$span-mb: 8px;
$span-ml: 2px;

*/
/* Small Trigger */
/*

    Huuman vibe

    .hamburger is just the p tag with span in it
*/
.hamburger {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px;
  padding-top: 13px;
  margin-bottom: 0;
  /*display: none;

  @include bp(full-nav) {
    display: block;
}
*/
  /* for displaying a contasting button background ---- this is in the checked zone below too
  &:after {
      position: absolute;
      top:-13px;
      left:-8px;
      border-radius: 400px;
      background: $base-color;
      width: 40px;
      height: 40px;
      content: "";
  }*/
  z-index: 6000; }
  .hamburger span {
    width: 20px;
    height: 2px;
    display: block;
    background: white;
    margin: 0 0 4px 0px;
    z-index: 99;
    position: relative; }
  .hamburger:hover {
    opacity: 0.7; }

.light-trigger .hamburger span {
  background: white; }

/*

    Nav Trigger

    This is the hidden checkbox
 */
.nav-trigger {
  /* critical styles - hide the checkbox input */
  position: absolute;
  clip: rect(0, 0, 0, 0); }

label[for="nav-trigger"] {
  /* critical positioning styles */
  position: absolute;
  left: 20px;
  top: 20px;
  z-index: 2;
  /* non-critical apperance styles */
  height: 40px;
  width: 40px;
  cursor: pointer;
  background: transparent;
  border-radius: 99px;
  margin-bottom: 0; }

/* Make the Magic Happen */
.no-js {
  /*.nav-trigger:checked + label {

        // for displaying a contasting button background ---- this is in the checked zone below too
        .hamburger:after {
            top:-12px;
        }
    }*/
  /*
    .nav-trigger:checked + label {

     // left: $push-site-wrap-width + $spacing-unit;
      @include vendor(transform, translate($push-trigger-width, 0));

        span {
            opacity: 0;
            filter: alpha(opacity=0);
        }
        span.slice1 {
          transform: rotate(45deg);
          -ms-transform: rotate(45deg);
          -webkit-transform: rotate(45deg);
          margin-top: 8px;
        }
        span.slice3 {
          transform: rotate(-45deg);
          -ms-transform: rotate(-45deg);
          -webkit-transform: rotate(-45deg);
          margin-top: $slice3-top;
          margin-left: $slice3-left;
        }
        span.slice1, span.slice3 {
          opacity: 1;
          filter: alpha(opacity=100);
        }

        // for displaying a contasting button background ---- this is in the checked zone below too
        .hamburger:after {
            top:-13px;
        }
    }

    .nav-trigger:checked ~ .site-wrap {
        @include vendor(transform, translate($push-site-wrap-width, 0));
        box-shadow: 0 0 5px 5px rgba(0,0,0,0.2);
        opacity: 0.3;
    }

    */ }
  .no-js .nav-trigger:checked + .nav {
    -ms-transform: translate(250px, 0);
    -webkit-transform: translate(250px, 0);
    -moz-transform: translate(250px, 0);
    transform: translate(250px, 0); }
  .no-js .nav-trigger:checked ~ .site-wrap {
    opacity: 0.3; }

.js.slideme {
  /*.hamburger {
        //@include vendor(transform, translate($push-trigger-width, 0));
        //z-index: 10;

        span {
            opacity: 0;
            filter: alpha(opacity=0);
        }
        span.slice1 {
          transform: rotate(45deg);
          -ms-transform: rotate(45deg);
          -webkit-transform: rotate(45deg);
          margin-top: 8px;
        }
        span.slice3 {
          transform: rotate(-45deg);
          -ms-transform: rotate(-45deg);
          -webkit-transform: rotate(-45deg);
          margin-top: $slice3-top;
          margin-left: $slice3-left;
        }
        span.slice1, span.slice3 {
          opacity: 1;
          filter: alpha(opacity=100);
      }

        // for displaying a contasting button background ---- this is in the checked zone below too
        &:after {
            top:-12px;
        }
    }

    */ }
  .js.slideme .site-wrap {
    opacity: 0.3; }
  .js.slideme .nav {
    -ms-transform: translate(250px, 0);
    -webkit-transform: translate(250px, 0);
    -moz-transform: translate(250px, 0);
    transform: translate(250px, 0); }

.nav {
  -ms-transition: 0.1s all;
  -webkit-transition: 0.1s all;
  -moz-transition: 0.1s all;
  transition: 0.1s all;
  width: 240px;
  height: 100%;
  position: fixed;
  top: 0;
  left: -250px;
  bottom: 0;
  overflow-y: scroll;
  padding-top: 24.1666666667px;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.2);
  z-index: 9;
  background: white; }
  .nav li {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-size: 1.1428571429rem;
    line-height: 1.7;
    text-transform: uppercase;
    width: 100%;
    list-style: none;
    text-align: left; }
    .nav li.current-menu-item > a {
      color: #ed174a; }
    .nav li a {
      display: block;
      padding: 7.25px 0;
      color: #414243;
      text-decoration: none;
      transition: all 0.3s; }
      .nav li a:hover {
        color: #ed174a; }
    .nav li ul {
      margin: 0; }
      .nav li ul li a {
        padding-left: 14.5px;
        text-transform: capitalize; }
  .nav .nav-branding {
    width: 100%;
    height: 70px; }
    .nav .nav-branding svg {
      width: 100%;
      height: 70px;
      fill: #414243; }

@media screen and (min-width: 760px) {
  .hamburger, label[for="nav-trigger"] {
    display: none; }
  .nav {
    /* set these to override the mobile nav */
    right: 0 !important;
    left: auto;
    bottom: auto;
    margin-bottom: 0 !important;
    top: 0px;
    position: absolute;
    width: 100%;
    margin: 0;
    -ms-transform: none !important;
    -webkit-transform: none !important;
    -moz-transform: none !important;
    transform: none !important;
    -ms-translate: none !important;
    -webkit-translate: none !important;
    -moz-translate: none !important;
    translate: none !important;
    padding: 0;
    background: none;
    text-align: right;
    overflow: visible;
    height: auto;
    z-index: 99;
    -ms-box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none; }
    .nav ul {
      margin: 0;
      padding: 0; }
    .nav #main-menu {
      padding-top: 58px; }
    .nav li {
      display: inline-block;
      position: relative;
      width: auto;
      margin-right: 14.5px;
      -ms-transition: 0.3s;
      -webkit-transition: 0.3s;
      -moz-transition: 0.3s;
      transition: 0.3s;
      font-size: 14px;
      font-size: 1rem;
      line-height: 2.0714285714; }
      .nav li:last-of-type {
        margin-right: 0; }
      .nav li.current-menu-item a, .nav li.current-parent-item > a {
        color: white;
        border-bottom: solid 2px white; }
      .nav li a {
        padding: 0;
        color: white; }
        .nav li a:hover, .nav li a:active, .nav li a:focus {
          color: #ed174a; }
    .nav .nav-branding {
      width: 188px;
      height: 78px;
      position: absolute;
      top: 29px;
      left: 29px; }
      .nav .nav-branding svg {
        width: 188px;
        height: 78px;
        fill: white; }
    .nav .menu-item-has-children ul {
      position: relative;
      top: 29px;
      left: 0;
      position: absolute;
      display: block;
      margin-bottom: 0;
      margin: 0;
      list-style: none;
      float: left;
      width: 100%;
      display: none;
      background: rgba(0, 0, 0, 0.4);
      min-width: 200px; }
      .nav .menu-item-has-children ul > li {
        list-style: none;
        float: left;
        width: 100%; }
      .nav .menu-item-has-children ul a {
        text-transform: capitalize; }
      .nav .menu-item-has-children ul li {
        width: 100%; }
    .nav .menu-item-has-children:hover ul {
      display: block; }
  .alt-nav .nav .nav-branding svg {
    fill: #414243; }
  .alt-nav .nav li.current-menu-item a, .alt-nav .nav li.current-menu-parent > a {
    color: #414243;
    border-bottom: solid 2px #414243; }
  .alt-nav .nav li a {
    color: #414243; }
    .alt-nav .nav li a:hover, .alt-nav .nav li a:active, .alt-nav .nav li a:focus {
      color: #ed174a; }
  .alt-nav .nav .menu-item-has-children ul {
    background: white; } }

@media screen and (min-width: 760px) and (min-width: 760px) {
  .alt-nav .nav .extra-nav-elements a svg {
    fill: #414243; }
    .alt-nav .nav .extra-nav-elements a svg:hover, .alt-nav .nav .extra-nav-elements a svg:active, .alt-nav .nav .extra-nav-elements a svg:focus {
      fill: #a4b540; } }

@media screen and (min-width: 760px) {
  .extra-nav-elements {
    position: absolute;
    top: 4px;
    right: 29px; }
    .extra-nav-elements .button, .extra-nav-elements a svg {
      display: inline-block;
      vertical-align: middle; } }

/*
    @include bp(desk) {

        .nav {

            #main-menu {
                padding-right: $main-nav-padding-right;
            }

            .extra-nav-elements  {
                top: $extra-nav-elements-top;
            }
        }
    }
    */
/**
* ### GridBox
* <span class="epsilon">ui/components/gridbox.scss</span> <br>
* Some boxes with background images, text overlay that link
*
*     @example
*     div.gridbox
*       <div class="gridbox__content" style="background-image: url('http://img.youtube.com/vi/39ufeusotzs/sddefault.jpg');"></div>
*       <a href="<?php the_permalink(); ?>" class="gridbox__link">
*       <h3 class="gridbox__title allcaps"><?php the_title(); ?><span class="small fw"><?php the_field('tagline'); ?></span></h3>
*       </a>
*     div.gridbox
*       <div class="gridbox__content" style="background-image: url('http://img.youtube.com/vi/39ufeusotzs/sddefault.jpg');"></div>
*       <a href="<?php the_permalink(); ?>" class="gridbox__link">
*       <h3 class="gridbox__title allcaps"><?php the_title(); ?><span class="small fw"><?php the_field('tagline'); ?></span></h3>
*       </a>
*     div.gridbox
*       <div class="gridbox__content" style="background-image: url('http://img.youtube.com/vi/39ufeusotzs/sddefault.jpg');"></div>
*       <a href="<?php the_permalink(); ?>" class="gridbox__link">
*       <h3 class="gridbox__title allcaps"><?php the_title(); ?><span class="small fw"><?php the_field('tagline'); ?></span></h3>
*       </a>
*/
.gridbox {
  position: relative;
  padding-bottom: 50%;
  width: 50%;
  float: left;
  overflow: hidden;
  background: url(/img/ring.gif) no-repeat center;
  -ms-transition: all 0.1s;
  -webkit-transition: all 0.1s;
  -moz-transition: all 0.1s;
  transition: all 0.1s; }
  .gridbox span {
    display: none; }
  @media screen and (min-width: 500px) {
    .gridbox {
      padding-bottom: 33.3333%;
      width: 33.3333%; } }
  @media screen and (min-width: 900px) {
    .gridbox {
      padding-bottom: 25%;
      width: 25%; } }
  .gridbox .gridbox__content {
    -ms-background-size: cover;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -ms-transition: all 0.1s ease-in-out;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center top; }
  .gridbox .gridbox__link {
    position: absolute;
    z-index: 9;
    width: 100%;
    height: 100%; }
  .gridbox .gridbox__title {
    z-index: 33333;
    padding: 87px 29px 29px 29px;
    text-align: center;
    color: #fff;
    position: absolute;
    width: 100%;
    bottom: 0;
    background: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    background: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    background: -o-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    background: -ms-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    margin: 0; }
  .gridbox:hover .gridbox__content {
    -webkit-filter: blur(5px);
    -moz-filter: blur(5px);
    -o-filter: blur(5px);
    -ms-filter: blur(5px);
    filter: blur(5px); }
  .gridbox:hover .gridbox__title {
    bottom: auto;
    top: 0;
    padding-top: 29px;
    padding-bottom: 80%;
    -webkit-animation: fade-in-and-up 0.6s 1 ease-in-out;
    animation: fade-in-and-up 0.6s 1 ease-in-out;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
    background: -o-linear-gradient(top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%);
    background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.4) 100%); }
    .gridbox:hover .gridbox__title span {
      display: block; }

/**
* ### Columns
* <span class="epsilon">ui/components/columns.scss</span> <br>
* Some columns for ya!
*
*     @example
*     p Below is a ul with .columns
*     <ul class="columns stack-list">
*     <li><span class="u-pr">This is a list item</span> <a href="#" class="button button--tiny u-mb0 u-vbase u-vbase">.button--tiny u-mb0 u-vbase</a></li><li><span class="u-pr">This is a list item</span> <a href="#" class="button button--tiny u-mb0 u-vbase">.button--tiny u-mb0 u-vbase</a></li><li><span class="u-pr">This is a list item</span> <a href="#" class="button button--tiny u-mb0 u-vbase">.button--tiny u-mb0 u-vbase</a></li><li><span class="u-pr">This is a list item</span> <a href="#" class="button button--tiny u-mb0 u-vbase">.button--tiny u-mb0 u-vbase</a></li><li><span class="u-pr">This is a list item</span> <a href="#" class="button button--tiny u-mb0 u-vbase">.button--tiny u-mb0 u-vbase</a></li><li><span class="u-pr">This is a list item</span> <a href="#" class="button button--tiny u-mb0 u-vbase">.button--tiny u-mb0 u-vbase</a></li><li><span class="u-pr">This is a list item</span> <a href="#" class="button button--tiny u-mb0 u-vbase">.button--tiny u-mb0 u-vbase</a></li><li><span class="u-pr">This is a list item</span> <a href="#" class="button button--tiny u-mb0 u-vbase">.button--tiny u-mb0 u-vbase</a></li><li><span class="u-pr">This is a list item</span> <a href="#" class="button button--tiny u-mb0 u-vbase">.button--tiny u-mb0 u-vbase</a></li>
*     </ul>
*     p Below is a ul with .columns--slim
*     <ul class="columns stack-list">
*     <li><span class="u-pr">This is a list item</span> <a href="#" class="button button--tiny u-mb0 u-vbase u-vbase">.button--tiny u-mb0 u-vbase</a></li><li><span class="u-pr">This is a list item</span> <a href="#" class="button button--tiny u-mb0 u-vbase">.button--tiny u-mb0 u-vbase</a></li><li><span class="u-pr">This is a list item</span> <a href="#" class="button button--tiny u-mb0 u-vbase">.button--tiny u-mb0 u-vbase</a></li><li><span class="u-pr">This is a list item</span> <a href="#" class="button button--tiny u-mb0 u-vbase">.button--tiny u-mb0 u-vbase</a></li><li><span class="u-pr">This is a list item</span> <a href="#" class="button button--tiny u-mb0 u-vbase">.button--tiny u-mb0 u-vbase</a></li><li><span class="u-pr">This is a list item</span> <a href="#" class="button button--tiny u-mb0 u-vbase">.button--tiny u-mb0 u-vbase</a></li><li><span class="u-pr">This is a list item</span> <a href="#" class="button button--tiny u-mb0 u-vbase">.button--tiny u-mb0 u-vbase</a></li><li><span class="u-pr">This is a list item</span> <a href="#" class="button button--tiny u-mb0 u-vbase">.button--tiny u-mb0 u-vbase</a></li><li><span class="u-pr">This is a list item</span> <a href="#" class="button button--tiny u-mb0 u-vbase">.button--tiny u-mb0 u-vbase</a></li>
*     </ul>
*/
.columns {
  -webkit-columns: 2 336px;
  -moz-columns: 2 336px;
  columns: 2 336px;
  -webkit-column-gap: 2em;
  -moz-column-gap: 2em;
  column-gap: 2em; }

.columns--slim {
  -webkit-columns: 2 160px;
  -moz-columns: 2 160px;
  columns: 2 160px;
  -webkit-column-gap: 2em;
  -moz-column-gap: 2em;
  column-gap: 2em; }

.fancybox-trigger {
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 9; }
  .fancybox-trigger svg:hover {
    fill: white;
    opacity: 0.8; }

/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp {
  padding: 0;
  margin: 0;
  border: 0;
  outline: none;
  vertical-align: top; }

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020; }

.fancybox-skin {
  position: relative;
  background: #f9f9f9;
  color: #444;
  text-shadow: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px; }

.fancybox-opened {
  z-index: 8030; }

.fancybox-opened .fancybox-skin {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5); }

.fancybox-outer, .fancybox-inner {
  position: relative; }

.fancybox-inner {
  overflow: hidden; }

.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch; }

.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap; }

.fancybox-image, .fancybox-iframe {
  display: block;
  width: 100%;
  height: 100%; }

.fancybox-image {
  max-width: 100%;
  max-height: 100%; }

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
  background-image: url("fancybox/fancybox_sprite.png"); }

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 8060; }

#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url("fancybox/fancybox_loading.gif") center center no-repeat; }

.fancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040; }

.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url("fancybox/blank.gif");
  /* helps IE */
  -webkit-tap-highlight-color: transparent;
  z-index: 8040; }

.fancybox-prev {
  left: 0; }

.fancybox-next {
  right: 0; }

.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden; }

.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px; }

.fancybox-next span {
  right: 10px;
  background-position: 0 -72px; }

.fancybox-nav:hover span {
  visibility: visible; }

.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important; }

/* Overlay helper */
.fancybox-lock {
  overflow: hidden !important;
  width: auto; }

.fancybox-lock body {
  overflow: hidden !important; }

.fancybox-lock-test {
  overflow-y: hidden !important; }

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: url("fancybox/fancybox_overlay.png"); }

.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0; }

.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll; }

/* Title helper */
.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050; }

.fancybox-opened .fancybox-title {
  visibility: visible; }

.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center; }

.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: transparent;
  /* Fallback for web browsers that doesn't support RGBa */
  background: rgba(0, 0, 0, 0.8);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #FFF;
  font-weight: bold;
  line-height: 24px;
  white-space: nowrap; }

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff; }

.fancybox-title-inside-wrap {
  padding-top: 10px; }

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: #000;
  background: rgba(0, 0, 0, 0.8); }

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  #fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
    background-image: url("fancybox/fancybox_sprite@2x.png");
    background-size: 44px 152px;
    /*The size of the normal image, half the size of the hi-res image*/ }
  #fancybox-loading div {
    background-image: url("fancybox/fancybox_loading@2x.gif");
    background-size: 24px 24px;
    /*The size of the normal image, half the size of the hi-res image*/ } }

/*
 * jQuery FlexSlider v2.6.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
 * ====================================================================================================================*/
/* ====================================================================================================================
 * RESETS
 * ====================================================================================================================*/
.flex-container a:hover,
.flex-slider a:hover {
  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 {
  display: none;
  -webkit-backface-visibility: hidden; }

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

.flexslider .slides:after {
  content: "\0020";
  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 {
  margin: 0 0 58px;
  position: relative;
  zoom: 1;
  float: left;
  width: 100%; }
  .flexslider.flexslider--gradient:after {
    position: absolute;
    top: 0;
    left: 0;
    height: 150px;
    width: 100%;
    content: "";
    background: -moz-linear-gradient(top, black 0%, transparent 100%);
    background: -webkit-gradient(left top, left bottom, color-stop(0%, black), color-stop(100%, transparent));
    background: -webkit-linear-gradient(top, black 0%, transparent 100%);
    background: -o-linear-gradient(top, black 0%, transparent 100%);
    background: -ms-linear-gradient(top, black 0%, transparent 100%);
    background: linear-gradient(to bottom, black 0%, transparent 100%);
    z-index: 99;
    pointer-events: none; }

.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;
  position: relative; }

.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;
  opacity: 0;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out; }

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

.flex-direction-nav a.flex-next:before {
  content: '\f002'; }

.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-direction-nav a {
  width: 60px;
  height: 54px;
  z-index: 999; }
  .flex-direction-nav a svg {
    width: 50px;
    height: 50px;
    fill: white;
    -ms-transform: rotate(90deg);
    /* IE 9 */
    -webkit-transform: rotate(90deg);
    /* Safari */
    transform: rotate(90deg); }
  .flex-direction-nav a.flex-next svg {
    -ms-transform: rotate(-90deg);
    /* IE 9 */
    -webkit-transform: rotate(-90deg);
    /* Safari */
    transform: rotate(-90deg); }

.flex-direction-nav a:before {
  display: none; }

.flexslider--visible-nav .flex-direction-nav {
  bottom: 50px;
  left: 10px;
  position: absolute; }
  .flexslider--visible-nav .flex-direction-nav .flex-prev {
    left: 10px;
    bottom: 0;
    opacity: 1; }
  .flexslider--visible-nav .flex-direction-nav .flex-next {
    left: 50px;
    bottom: 0;
    opacity: 1; }

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

.flex-control-nav {
  display: none; }

.flex-direction-nav {
  display: none; }

@media screen and (min-width: 500px) {
  .flex-direction-nav {
    display: block; } }

/**
* ### Flexslider Content
* <span class="epsilon">ui/components/flexslider-content.scss</span> <br>
* Super basic example that probably will surfice in most cases
*
*     @example
*     <div class="flexslider">
*     <ul class="slides">
*     <li><img src="/img/1.jpg" /></li>
*     <li><img src="/img/2.jpg" /></li>
*     </ul>
*
*     <div class="flex-content u-p- u-pt0 two-hands-p+ two-hands-pt0 text-center">
*     <p class="big u-mb0">a world untouched</p>
*     <p class="gamma body-text"><i>Discover the magic that is North Otago...</i></p>
*     <p><a href="" class="button--secondary u-mr--">Button</a><a class="button--white u-ml--">.button--white</a></p>
*
*     </div>
*
*     </div>
*
*/
.flex-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  margin-top: 58px;
  -webkit-animation: fade-in-and-up 0.7s 1 ease-in-out;
  animation: fade-in-and-up 0.7s 1 ease-in-out;
  color: white;
  text-shadow: 0 0 17px rgba(0, 0, 0, 0.5); }
  @media screen and (min-width: 760px) {
    .flex-content {
      margin-top: 20%; } }
  .flex-content .big {
    opacity: 0.8; }

input[type="search"] {
  background: transparent;
  border: solid 1px white;
  padding: 15px 41px 14px 14px;
  color: white;
  width: 100%;
  box-sizing: border-box; }

.search-form {
  position: relative;
  float: left;
  clear: left;
  width: 100%;
  /*
    this is a border for the search icon if you want
	&:after {
		content: "";
		position: absolute;
		top:0;
		left: 33px;
		width: 1px;
		background: white;
		height: 32px;

	}

    */
  /*
	@include bp(lap-and-up) {
		width: 110px;
		position: absolute;
		top: -5px;
		right: 0;
		margin: 0px;
	}

	@include bp(portable) {
		width: 135px;
		position: absolute;
		top: -5px;
		right: 0;
		margin: 0px;
	}
    */ }
  .search-form svg {
    position: absolute;
    top: 13px;
    right: 12px;
    fill: white;
    width: 20px;
    height: 20px;
    pointer-events: none; }
    .search-form svg:hover {
      cursor: pointer; }
  .search-form #searchsubmit {
    position: absolute;
    top: 0;
    right: 0;
    width: 35px;
    height: 47px; }

.gfield {
  float: left;
  width: 100%;
  clear: none !important; }

#field_1_2, #field_1_3 {
  width: 50%; }
  #field_1_2 input, #field_1_3 input {
    width: 95%; }

.gform_wrapper ul.gfield_checkbox li input[type=checkbox]:checked + label, .gform_wrapper ul.gfield_radio li input[type=radio]:checked + label {
  font-weight: normal; }

.gform_wrapper {
  margin: 0 !important;
  max-width: 100% !important; }

.home-boxes {
  position: relative; }
  .home-boxes:hover .overlay__item {
    display: block; }
  .home-boxes .overlay__item {
    top: 0;
    left: 0;
    position: absolute;
    height: 100%;
    width: 100%;
    display: none; }
    .home-boxes .overlay__item.purple {
      background: rgba(116, 118, 155, 0.8); }
    .home-boxes .overlay__item.yellow {
      background: rgba(165, 181, 64, 0.8); }
    .home-boxes .overlay__item.blue {
      background: rgba(70, 158, 190, 0.8); }
    .home-boxes .overlay__item.brown {
      background: rgba(162, 154, 123, 0.8); }
    .home-boxes .overlay__item h2 {
      color: white; }
    .home-boxes .overlay__item div {
      top: 25%;
      left: 0;
      position: absolute;
      width: 100%; }
      .home-boxes .overlay__item div svg {
        width: 70px;
        height: 70px; }
        @media screen and (min-width: 760px) {
          .home-boxes .overlay__item div svg {
            width: 100px;
            height: 100px; } }

@media screen and (min-width: 1180px) {
  .nav #main-menu {
    padding-right: 370px; }
  .extra-nav-elements {
    top: 47px; } }

/**
 * #TRUMPS
 */
/*------------------------------------*    #WIDTHS
\*------------------------------------*/
/**
 * A series of width helper classes that you can use to size things like grid
 * systems. Classes can take a fraction-like format (e.g. `.u-2/3`) or a spoken-
 * word format (e.g. `.u-2-of-3`). Use these in your markup:
 *
 * <div class="u-7/12">
 */
.u-1\/1 {
  width: 100% !important; }

.u-1\/2 {
  width: 50% !important; }

.u-1\/3 {
  width: 33.3333333333% !important; }

.u-2\/3 {
  width: 66.6666666667% !important; }

.u-1\/4 {
  width: 25% !important; }

.u-2\/4 {
  width: 50% !important; }

.u-3\/4 {
  width: 75% !important; }

.u-1\/5 {
  width: 20% !important; }

.u-2\/5 {
  width: 40% !important; }

.u-3\/5 {
  width: 60% !important; }

.u-4\/5 {
  width: 80% !important; }

/*------------------------------------*    #WIDTHS-RESPONSIVE
\*------------------------------------*/
/**
 * Responsive width classes based on your responsive settings.
 */
@media screen and (max-width: 500px) {
  .u-1\/1-max-mobile {
    width: 100% !important; }
  .u-1\/2-max-mobile {
    width: 50% !important; }
  .u-1\/3-max-mobile {
    width: 33.3333333333% !important; }
  .u-2\/3-max-mobile {
    width: 66.6666666667% !important; }
  .u-1\/4-max-mobile {
    width: 25% !important; }
  .u-2\/4-max-mobile {
    width: 50% !important; }
  .u-3\/4-max-mobile {
    width: 75% !important; }
  .u-1\/5-max-mobile {
    width: 20% !important; }
  .u-2\/5-max-mobile {
    width: 40% !important; }
  .u-3\/5-max-mobile {
    width: 60% !important; }
  .u-4\/5-max-mobile {
    width: 80% !important; } }

@media screen and (min-width: 500px) {
  .u-1\/1-two-hands {
    width: 100% !important; }
  .u-1\/2-two-hands {
    width: 50% !important; }
  .u-1\/3-two-hands {
    width: 33.3333333333% !important; }
  .u-2\/3-two-hands {
    width: 66.6666666667% !important; }
  .u-1\/4-two-hands {
    width: 25% !important; }
  .u-2\/4-two-hands {
    width: 50% !important; }
  .u-3\/4-two-hands {
    width: 75% !important; }
  .u-1\/5-two-hands {
    width: 20% !important; }
  .u-2\/5-two-hands {
    width: 40% !important; }
  .u-3\/5-two-hands {
    width: 60% !important; }
  .u-4\/5-two-hands {
    width: 80% !important; } }

@media screen and (min-width: 760px) {
  .u-1\/1-full-nav {
    width: 100% !important; }
  .u-1\/2-full-nav {
    width: 50% !important; }
  .u-1\/3-full-nav {
    width: 33.3333333333% !important; }
  .u-2\/3-full-nav {
    width: 66.6666666667% !important; }
  .u-1\/4-full-nav {
    width: 25% !important; }
  .u-2\/4-full-nav {
    width: 50% !important; }
  .u-3\/4-full-nav {
    width: 75% !important; }
  .u-1\/5-full-nav {
    width: 20% !important; }
  .u-2\/5-full-nav {
    width: 40% !important; }
  .u-3\/5-full-nav {
    width: 60% !important; }
  .u-4\/5-full-nav {
    width: 80% !important; } }

@media screen and (min-width: 900px) {
  .u-1\/1-small-desk {
    width: 100% !important; }
  .u-1\/2-small-desk {
    width: 50% !important; }
  .u-1\/3-small-desk {
    width: 33.3333333333% !important; }
  .u-2\/3-small-desk {
    width: 66.6666666667% !important; }
  .u-1\/4-small-desk {
    width: 25% !important; }
  .u-2\/4-small-desk {
    width: 50% !important; }
  .u-3\/4-small-desk {
    width: 75% !important; }
  .u-1\/5-small-desk {
    width: 20% !important; }
  .u-2\/5-small-desk {
    width: 40% !important; }
  .u-3\/5-small-desk {
    width: 60% !important; }
  .u-4\/5-small-desk {
    width: 80% !important; } }

@media screen and (min-width: 1180px) {
  .u-1\/1-desk {
    width: 100% !important; }
  .u-1\/2-desk {
    width: 50% !important; }
  .u-1\/3-desk {
    width: 33.3333333333% !important; }
  .u-2\/3-desk {
    width: 66.6666666667% !important; }
  .u-1\/4-desk {
    width: 25% !important; }
  .u-2\/4-desk {
    width: 50% !important; }
  .u-3\/4-desk {
    width: 75% !important; }
  .u-1\/5-desk {
    width: 20% !important; }
  .u-2\/5-desk {
    width: 40% !important; }
  .u-3\/5-desk {
    width: 60% !important; }
  .u-4\/5-desk {
    width: 80% !important; } }

.clearfix:after {
  content: "";
  display: table;
  clear: both; }

.alignnone {
  margin-top: 0;
  margin-right: 0;
  margin-left: 0; }

.aligncenter {
  display: block;
  margin-top: 0;
  margin-right: auto !important;
  margin-left: auto !important; }

.alignright {
  float: right;
  margin-top: 0;
  margin-right: 0;
  margin-left: 29px; }

.alignleft {
  float: left;
  margin-top: 0;
  margin-right: 29px;
  margin-left: 0; }

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

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

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

@media screen and (min-width: 760px) {
  .full-nav-text-center {
    text-align: center; }
  .full-nav-text-right {
    text-align: right; }
  .full-nav-text-left {
    text-align: left; } }

@media screen and (min-width: 1180px) {
  .desk-text-center {
    text-align: center; }
  .desk-text-right {
    text-align: right; }
  .desk-text-left {
    text-align: left; } }

.fw {
  width: 100%;
  float: left; }

.circle {
  border-radius: 999em; }

/*
        margin-right: $spacing-unit;
        display: inline-block;
        width: auto;
    }
}

*/
@media screen and (max-width: 500px) {
  .mobile-center {
    text-align: center !important;
    margin: 0 auto !important;
    float: none !important; } }

/*------------------------------------*    #SHOW-HIDE
\*------------------------------------*/
.hide {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px);
  /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

@media screen and (max-width: 500px) {
  .hide-mobile {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px 1px 1px 1px);
    /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px); } }

/*------------------------------------*    #SPACING
\*------------------------------------*/
/**
 * Margin and padding helper classes. Use these to tweak layout on a micro
 * level.
 *
 * `.(m|p)(t|r|b|l|h|v)(-|+|0) {}` = margin/padding top/right/bottom/left/horizontal/vertical less/more/none
 */
/**
     * Margin helper classes.
     *
     * Add margins.
     */
.u-m {
  margin: 29px !important; }

.u-mt {
  margin-top: 29px !important; }

.u-mr {
  margin-right: 29px !important; }

.u-mb {
  margin-bottom: 29px !important; }

.u-ml {
  margin-left: 29px !important; }

.u-mh {
  margin-right: 29px !important;
  margin-left: 29px !important; }

.u-mv {
  margin-top: 29px !important;
  margin-bottom: 29px !important; }

/**
     * Add tiny margins.
     */
.u-m-- {
  margin: 7px !important; }

.u-mt-- {
  margin-top: 7px !important; }

.u-mr-- {
  margin-right: 7px !important; }

.u-mb-- {
  margin-bottom: 7px !important; }

.u-ml-- {
  margin-left: 7px !important; }

.u-mh-- {
  margin-right: 7px !important;
  margin-left: 7px !important; }

.u-mv-- {
  margin-top: 7px !important;
  margin-bottom: 7px !important; }

/**
     * Add large margins.
     */
.u-m\+ {
  margin: 58px !important; }

.u-mt\+ {
  margin-top: 58px !important; }

.u-mr\+ {
  margin-right: 58px !important; }

.u-mb\+ {
  margin-bottom: 58px !important; }

.u-ml\+ {
  margin-left: 58px !important; }

.u-mh\+ {
  margin-right: 58px !important;
  margin-left: 58px !important; }

.u-mv\+ {
  margin-top: 58px !important;
  margin-bottom: 58px !important; }

/**
     * Add huge margins.
     */
.u-m\+\+ {
  margin: 116px !important; }

.u-mt\+\+ {
  margin-top: 116px !important; }

.u-mr\+\+ {
  margin-right: 116px !important; }

.u-mb\+\+ {
  margin-bottom: 116px !important; }

.u-ml\+\+ {
  margin-left: 116px !important; }

.u-mh\+\+ {
  margin-right: 116px !important;
  margin-left: 116px !important; }

.u-mv\+\+ {
  margin-top: 116px !important;
  margin-bottom: 116px !important; }

/**
     * Remove margins.
     */
.u-m0 {
  margin: 0 !important; }

.u-mt0 {
  margin-top: 0 !important; }

.u-mr0 {
  margin-right: 0 !important; }

.u-mb0 {
  margin-bottom: 0 !important; }

.u-ml0 {
  margin-left: 0 !important; }

.u-mh0 {
  margin-right: 0 !important;
  margin-left: 0 !important; }

.u-mv0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important; }

/**
     * Padding helper classes.
     *
     * Add paddings.
     */
.u-p {
  padding: 29px !important; }

.u-pt {
  padding-top: 29px !important; }

.u-pr {
  padding-right: 29px !important; }

.u-pb {
  padding-bottom: 29px !important; }

.u-pl {
  padding-left: 29px !important; }

.u-ph {
  padding-right: 29px !important;
  padding-left: 29px !important; }

.u-pv {
  padding-top: 29px !important;
  padding-bottom: 29px !important; }

/**
     * Add large paddings.
     */
.u-p\+ {
  padding: 58px !important; }

.u-pt\+ {
  padding-top: 58px !important; }

.u-pr\+ {
  padding-right: 58px !important; }

.u-pb\+ {
  padding-bottom: 58px !important; }

.u-pl\+ {
  padding-left: 58px !important; }

.u-ph\+ {
  padding-right: 58px !important;
  padding-left: 58px !important; }

.u-pv\+ {
  padding-top: 58px !important;
  padding-bottom: 58px !important; }

/**
     * Add huge paddings.
     */
.u-p\+\+ {
  padding: 116px !important; }

.u-pt\+\+ {
  padding-top: 116px !important; }

.u-pr\+\+ {
  padding-right: 116px !important; }

.u-pb\+\+ {
  padding-bottom: 116px !important; }

.u-pl\+\+ {
  padding-left: 116px !important; }

.u-ph\+\+ {
  padding-right: 116px !important;
  padding-left: 116px !important; }

.u-pv\+\+ {
  padding-top: 116px !important;
  padding-bottom: 116px !important; }

/**
     * Remove paddings.
     */
.u-p0 {
  padding: 0 !important; }

.u-pt0 {
  padding-top: 0 !important; }

.u-pr0 {
  padding-right: 0 !important; }

.u-pb0 {
  padding-bottom: 0 !important; }

.u-pl0 {
  padding-left: 0 !important; }

.u-ph0 {
  padding-right: 0 !important;
  padding-left: 0 !important; }

.u-pv0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }

/*------------------------------------*    #SPACING-RESPONSIVE
\*------------------------------------*/
/**
 * Margin and padding helper classes. Use these to tweak layout on a micro
 * level.
 *
 * `.(m|p)(t|r|b|l|h|v)(-|+|0) {}` = margin/padding top/right/bottom/left/horizontal/vertical less/more/none
 */
/**
     * Margin helper classes.
     *
     * Add margins.
     */
@media screen and (max-width: 500px) {
  .max-mobile-m {
    margin: 29px !important; }
  .max-mobile-mt {
    margin-top: 29px !important; }
  .max-mobile-mr {
    margin-right: 29px !important; }
  .max-mobile-mb {
    margin-bottom: 29px !important; }
  .max-mobile-ml {
    margin-left: 29px !important; }
  .max-mobile-mh {
    margin-right: 29px !important;
    margin-left: 29px !important; }
  .max-mobile-mv {
    margin-top: 29px !important;
    margin-bottom: 29px !important; } }

@media screen and (min-width: 500px) {
  .two-hands-m {
    margin: 29px !important; }
  .two-hands-mt {
    margin-top: 29px !important; }
  .two-hands-mr {
    margin-right: 29px !important; }
  .two-hands-mb {
    margin-bottom: 29px !important; }
  .two-hands-ml {
    margin-left: 29px !important; }
  .two-hands-mh {
    margin-right: 29px !important;
    margin-left: 29px !important; }
  .two-hands-mv {
    margin-top: 29px !important;
    margin-bottom: 29px !important; } }

@media screen and (min-width: 760px) {
  .full-nav-m {
    margin: 29px !important; }
  .full-nav-mt {
    margin-top: 29px !important; }
  .full-nav-mr {
    margin-right: 29px !important; }
  .full-nav-mb {
    margin-bottom: 29px !important; }
  .full-nav-ml {
    margin-left: 29px !important; }
  .full-nav-mh {
    margin-right: 29px !important;
    margin-left: 29px !important; }
  .full-nav-mv {
    margin-top: 29px !important;
    margin-bottom: 29px !important; } }

@media screen and (min-width: 900px) {
  .small-desk-m {
    margin: 29px !important; }
  .small-desk-mt {
    margin-top: 29px !important; }
  .small-desk-mr {
    margin-right: 29px !important; }
  .small-desk-mb {
    margin-bottom: 29px !important; }
  .small-desk-ml {
    margin-left: 29px !important; }
  .small-desk-mh {
    margin-right: 29px !important;
    margin-left: 29px !important; }
  .small-desk-mv {
    margin-top: 29px !important;
    margin-bottom: 29px !important; } }

@media screen and (min-width: 1180px) {
  .desk-m {
    margin: 29px !important; }
  .desk-mt {
    margin-top: 29px !important; }
  .desk-mr {
    margin-right: 29px !important; }
  .desk-mb {
    margin-bottom: 29px !important; }
  .desk-ml {
    margin-left: 29px !important; }
  .desk-mh {
    margin-right: 29px !important;
    margin-left: 29px !important; }
  .desk-mv {
    margin-top: 29px !important;
    margin-bottom: 29px !important; } }

/**
     * Add small margins.
     */
@media screen and (max-width: 500px) {
  .max-mobile-m- {
    margin: 15px !important; }
  .max-mobile-mt- {
    margin-top: 15px !important; }
  .max-mobile-mr- {
    margin-right: 15px !important; }
  .max-mobile-mb- {
    margin-bottom: 15px !important; }
  .max-mobile-ml- {
    margin-left: 15px !important; }
  .max-mobile-mh- {
    margin-right: 15px !important;
    margin-left: 15px !important; }
  .max-mobile-mv- {
    margin-top: 15px !important;
    margin-bottom: 15px !important; } }

@media screen and (min-width: 500px) {
  .two-hands-m- {
    margin: 15px !important; }
  .two-hands-mt- {
    margin-top: 15px !important; }
  .two-hands-mr- {
    margin-right: 15px !important; }
  .two-hands-mb- {
    margin-bottom: 15px !important; }
  .two-hands-ml- {
    margin-left: 15px !important; }
  .two-hands-mh- {
    margin-right: 15px !important;
    margin-left: 15px !important; }
  .two-hands-mv- {
    margin-top: 15px !important;
    margin-bottom: 15px !important; } }

@media screen and (min-width: 760px) {
  .full-nav-m- {
    margin: 15px !important; }
  .full-nav-mt- {
    margin-top: 15px !important; }
  .full-nav-mr- {
    margin-right: 15px !important; }
  .full-nav-mb- {
    margin-bottom: 15px !important; }
  .full-nav-ml- {
    margin-left: 15px !important; }
  .full-nav-mh- {
    margin-right: 15px !important;
    margin-left: 15px !important; }
  .full-nav-mv- {
    margin-top: 15px !important;
    margin-bottom: 15px !important; } }

@media screen and (min-width: 900px) {
  .small-desk-m- {
    margin: 15px !important; }
  .small-desk-mt- {
    margin-top: 15px !important; }
  .small-desk-mr- {
    margin-right: 15px !important; }
  .small-desk-mb- {
    margin-bottom: 15px !important; }
  .small-desk-ml- {
    margin-left: 15px !important; }
  .small-desk-mh- {
    margin-right: 15px !important;
    margin-left: 15px !important; }
  .small-desk-mv- {
    margin-top: 15px !important;
    margin-bottom: 15px !important; } }

@media screen and (min-width: 1180px) {
  .desk-m- {
    margin: 15px !important; }
  .desk-mt- {
    margin-top: 15px !important; }
  .desk-mr- {
    margin-right: 15px !important; }
  .desk-mb- {
    margin-bottom: 15px !important; }
  .desk-ml- {
    margin-left: 15px !important; }
  .desk-mh- {
    margin-right: 15px !important;
    margin-left: 15px !important; }
  .desk-mv- {
    margin-top: 15px !important;
    margin-bottom: 15px !important; } }

/**
     * Add huge margins.
     */
@media screen and (max-width: 500px) {
  .max-mobile-m\+\+ {
    margin: 116px !important; }
  .max-mobile-mt\+\+ {
    margin-top: 116px !important; }
  .max-mobile-mr\+\+ {
    margin-right: 116px !important; }
  .max-mobile-mb\+\+ {
    margin-bottom: 116px !important; }
  .max-mobile-ml\+\+ {
    margin-left: 116px !important; }
  .max-mobile-mh\+\+ {
    margin-right: 116px !important;
    margin-left: 116px !important; }
  .max-mobile-mv\+\+ {
    margin-top: 116px !important;
    margin-bottom: 116px !important; } }

@media screen and (min-width: 500px) {
  .two-hands-m\+\+ {
    margin: 116px !important; }
  .two-hands-mt\+\+ {
    margin-top: 116px !important; }
  .two-hands-mr\+\+ {
    margin-right: 116px !important; }
  .two-hands-mb\+\+ {
    margin-bottom: 116px !important; }
  .two-hands-ml\+\+ {
    margin-left: 116px !important; }
  .two-hands-mh\+\+ {
    margin-right: 116px !important;
    margin-left: 116px !important; }
  .two-hands-mv\+\+ {
    margin-top: 116px !important;
    margin-bottom: 116px !important; } }

@media screen and (min-width: 760px) {
  .full-nav-m\+\+ {
    margin: 116px !important; }
  .full-nav-mt\+\+ {
    margin-top: 116px !important; }
  .full-nav-mr\+\+ {
    margin-right: 116px !important; }
  .full-nav-mb\+\+ {
    margin-bottom: 116px !important; }
  .full-nav-ml\+\+ {
    margin-left: 116px !important; }
  .full-nav-mh\+\+ {
    margin-right: 116px !important;
    margin-left: 116px !important; }
  .full-nav-mv\+\+ {
    margin-top: 116px !important;
    margin-bottom: 116px !important; } }

@media screen and (min-width: 900px) {
  .small-desk-m\+\+ {
    margin: 116px !important; }
  .small-desk-mt\+\+ {
    margin-top: 116px !important; }
  .small-desk-mr\+\+ {
    margin-right: 116px !important; }
  .small-desk-mb\+\+ {
    margin-bottom: 116px !important; }
  .small-desk-ml\+\+ {
    margin-left: 116px !important; }
  .small-desk-mh\+\+ {
    margin-right: 116px !important;
    margin-left: 116px !important; }
  .small-desk-mv\+\+ {
    margin-top: 116px !important;
    margin-bottom: 116px !important; } }

@media screen and (min-width: 1180px) {
  .desk-m\+\+ {
    margin: 116px !important; }
  .desk-mt\+\+ {
    margin-top: 116px !important; }
  .desk-mr\+\+ {
    margin-right: 116px !important; }
  .desk-mb\+\+ {
    margin-bottom: 116px !important; }
  .desk-ml\+\+ {
    margin-left: 116px !important; }
  .desk-mh\+\+ {
    margin-right: 116px !important;
    margin-left: 116px !important; }
  .desk-mv\+\+ {
    margin-top: 116px !important;
    margin-bottom: 116px !important; } }

/**
     * Remove margins.
     */
@media screen and (max-width: 500px) {
  .max-mobile-m0 {
    margin: 0 !important; }
  .max-mobile-mt0 {
    margin-top: 0 !important; }
  .max-mobile-mr0 {
    margin-right: 0 !important; }
  .max-mobile-mb0 {
    margin-bottom: 0 !important; }
  .max-mobile-ml0 {
    margin-left: 0 !important; }
  .max-mobile-mh0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .max-mobile-mv0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; } }

@media screen and (min-width: 500px) {
  .two-hands-m0 {
    margin: 0 !important; }
  .two-hands-mt0 {
    margin-top: 0 !important; }
  .two-hands-mr0 {
    margin-right: 0 !important; }
  .two-hands-mb0 {
    margin-bottom: 0 !important; }
  .two-hands-ml0 {
    margin-left: 0 !important; }
  .two-hands-mh0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .two-hands-mv0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; } }

@media screen and (min-width: 760px) {
  .full-nav-m0 {
    margin: 0 !important; }
  .full-nav-mt0 {
    margin-top: 0 !important; }
  .full-nav-mr0 {
    margin-right: 0 !important; }
  .full-nav-mb0 {
    margin-bottom: 0 !important; }
  .full-nav-ml0 {
    margin-left: 0 !important; }
  .full-nav-mh0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .full-nav-mv0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; } }

@media screen and (min-width: 900px) {
  .small-desk-m0 {
    margin: 0 !important; }
  .small-desk-mt0 {
    margin-top: 0 !important; }
  .small-desk-mr0 {
    margin-right: 0 !important; }
  .small-desk-mb0 {
    margin-bottom: 0 !important; }
  .small-desk-ml0 {
    margin-left: 0 !important; }
  .small-desk-mh0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .small-desk-mv0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; } }

@media screen and (min-width: 1180px) {
  .desk-m0 {
    margin: 0 !important; }
  .desk-mt0 {
    margin-top: 0 !important; }
  .desk-mr0 {
    margin-right: 0 !important; }
  .desk-mb0 {
    margin-bottom: 0 !important; }
  .desk-ml0 {
    margin-left: 0 !important; }
  .desk-mh0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .desk-mv0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; } }

/**
     * Add large paddings.
     */
@media screen and (max-width: 500px) {
  .max-mobile-p\+ {
    padding: 58px !important; }
  .max-mobile-pt\+ {
    padding-top: 58px !important; }
  .max-mobile-pr\+ {
    padding-right: 58px !important; }
  .max-mobile-pb\+ {
    padding-bottom: 58px !important; }
  .max-mobile-pl\+ {
    padding-left: 58px !important; }
  .max-mobile-ph\+ {
    padding-right: 58px !important;
    padding-left: 58px !important; }
  .max-mobile-pv\+ {
    padding-top: 58px !important;
    padding-bottom: 58px !important; } }

@media screen and (min-width: 500px) {
  .two-hands-p\+ {
    padding: 58px !important; }
  .two-hands-pt\+ {
    padding-top: 58px !important; }
  .two-hands-pr\+ {
    padding-right: 58px !important; }
  .two-hands-pb\+ {
    padding-bottom: 58px !important; }
  .two-hands-pl\+ {
    padding-left: 58px !important; }
  .two-hands-ph\+ {
    padding-right: 58px !important;
    padding-left: 58px !important; }
  .two-hands-pv\+ {
    padding-top: 58px !important;
    padding-bottom: 58px !important; } }

@media screen and (min-width: 760px) {
  .full-nav-p\+ {
    padding: 58px !important; }
  .full-nav-pt\+ {
    padding-top: 58px !important; }
  .full-nav-pr\+ {
    padding-right: 58px !important; }
  .full-nav-pb\+ {
    padding-bottom: 58px !important; }
  .full-nav-pl\+ {
    padding-left: 58px !important; }
  .full-nav-ph\+ {
    padding-right: 58px !important;
    padding-left: 58px !important; }
  .full-nav-pv\+ {
    padding-top: 58px !important;
    padding-bottom: 58px !important; } }

@media screen and (min-width: 900px) {
  .small-desk-p\+ {
    padding: 58px !important; }
  .small-desk-pt\+ {
    padding-top: 58px !important; }
  .small-desk-pr\+ {
    padding-right: 58px !important; }
  .small-desk-pb\+ {
    padding-bottom: 58px !important; }
  .small-desk-pl\+ {
    padding-left: 58px !important; }
  .small-desk-ph\+ {
    padding-right: 58px !important;
    padding-left: 58px !important; }
  .small-desk-pv\+ {
    padding-top: 58px !important;
    padding-bottom: 58px !important; } }

@media screen and (min-width: 1180px) {
  .desk-p\+ {
    padding: 58px !important; }
  .desk-pt\+ {
    padding-top: 58px !important; }
  .desk-pr\+ {
    padding-right: 58px !important; }
  .desk-pb\+ {
    padding-bottom: 58px !important; }
  .desk-pl\+ {
    padding-left: 58px !important; }
  .desk-ph\+ {
    padding-right: 58px !important;
    padding-left: 58px !important; }
  .desk-pv\+ {
    padding-top: 58px !important;
    padding-bottom: 58px !important; } }

/**
     * Add huge paddings.
     */
@media screen and (max-width: 500px) {
  .max-mobile-p\+\+ {
    padding: 116px !important; }
  .max-mobile-pt\+\+ {
    padding-top: 116px !important; }
  .max-mobile-pr\+\+ {
    padding-right: 116px !important; }
  .max-mobile-pb\+\+ {
    padding-bottom: 116px !important; }
  .max-mobile-pl\+\+ {
    padding-left: 116px !important; }
  .max-mobile-ph\+\+ {
    padding-right: 116px !important;
    padding-left: 116px !important; }
  .max-mobile-pv\+\+ {
    padding-top: 116px !important;
    padding-bottom: 116px !important; } }

@media screen and (min-width: 500px) {
  .two-hands-p\+\+ {
    padding: 116px !important; }
  .two-hands-pt\+\+ {
    padding-top: 116px !important; }
  .two-hands-pr\+\+ {
    padding-right: 116px !important; }
  .two-hands-pb\+\+ {
    padding-bottom: 116px !important; }
  .two-hands-pl\+\+ {
    padding-left: 116px !important; }
  .two-hands-ph\+\+ {
    padding-right: 116px !important;
    padding-left: 116px !important; }
  .two-hands-pv\+\+ {
    padding-top: 116px !important;
    padding-bottom: 116px !important; } }

@media screen and (min-width: 760px) {
  .full-nav-p\+\+ {
    padding: 116px !important; }
  .full-nav-pt\+\+ {
    padding-top: 116px !important; }
  .full-nav-pr\+\+ {
    padding-right: 116px !important; }
  .full-nav-pb\+\+ {
    padding-bottom: 116px !important; }
  .full-nav-pl\+\+ {
    padding-left: 116px !important; }
  .full-nav-ph\+\+ {
    padding-right: 116px !important;
    padding-left: 116px !important; }
  .full-nav-pv\+\+ {
    padding-top: 116px !important;
    padding-bottom: 116px !important; } }

@media screen and (min-width: 900px) {
  .small-desk-p\+\+ {
    padding: 116px !important; }
  .small-desk-pt\+\+ {
    padding-top: 116px !important; }
  .small-desk-pr\+\+ {
    padding-right: 116px !important; }
  .small-desk-pb\+\+ {
    padding-bottom: 116px !important; }
  .small-desk-pl\+\+ {
    padding-left: 116px !important; }
  .small-desk-ph\+\+ {
    padding-right: 116px !important;
    padding-left: 116px !important; }
  .small-desk-pv\+\+ {
    padding-top: 116px !important;
    padding-bottom: 116px !important; } }

@media screen and (min-width: 1180px) {
  .desk-p\+\+ {
    padding: 116px !important; }
  .desk-pt\+\+ {
    padding-top: 116px !important; }
  .desk-pr\+\+ {
    padding-right: 116px !important; }
  .desk-pb\+\+ {
    padding-bottom: 116px !important; }
  .desk-pl\+\+ {
    padding-left: 116px !important; }
  .desk-ph\+\+ {
    padding-right: 116px !important;
    padding-left: 116px !important; }
  .desk-pv\+\+ {
    padding-top: 116px !important;
    padding-bottom: 116px !important; } }

/**
     * Remove paddings.
     */
@media screen and (max-width: 500px) {
  .max-mobile-p0 {
    padding: 0 !important; }
  .max-mobile-pt0 {
    padding-top: 0 !important; }
  .max-mobile-pr0 {
    padding-right: 0 !important; }
  .max-mobile-pb0 {
    padding-bottom: 0 !important; }
  .max-mobile-pl0 {
    padding-left: 0 !important; }
  .max-mobile-ph0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .max-mobile-pv0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; } }

@media screen and (min-width: 500px) {
  .two-hands-p0 {
    padding: 0 !important; }
  .two-hands-pt0 {
    padding-top: 0 !important; }
  .two-hands-pr0 {
    padding-right: 0 !important; }
  .two-hands-pb0 {
    padding-bottom: 0 !important; }
  .two-hands-pl0 {
    padding-left: 0 !important; }
  .two-hands-ph0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .two-hands-pv0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; } }

@media screen and (min-width: 760px) {
  .full-nav-p0 {
    padding: 0 !important; }
  .full-nav-pt0 {
    padding-top: 0 !important; }
  .full-nav-pr0 {
    padding-right: 0 !important; }
  .full-nav-pb0 {
    padding-bottom: 0 !important; }
  .full-nav-pl0 {
    padding-left: 0 !important; }
  .full-nav-ph0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .full-nav-pv0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; } }

@media screen and (min-width: 900px) {
  .small-desk-p0 {
    padding: 0 !important; }
  .small-desk-pt0 {
    padding-top: 0 !important; }
  .small-desk-pr0 {
    padding-right: 0 !important; }
  .small-desk-pb0 {
    padding-bottom: 0 !important; }
  .small-desk-pl0 {
    padding-left: 0 !important; }
  .small-desk-ph0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .small-desk-pv0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; } }

@media screen and (min-width: 1180px) {
  .desk-p0 {
    padding: 0 !important; }
  .desk-pt0 {
    padding-top: 0 !important; }
  .desk-pr0 {
    padding-right: 0 !important; }
  .desk-pb0 {
    padding-bottom: 0 !important; }
  .desk-pl0 {
    padding-left: 0 !important; }
  .desk-ph0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .desk-pv0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; } }

/**
* ### Borders
* <span class="epsilon">ui/trumps/borders.scss</span> <br>
* Some borders for fast dev
*
*     @example
*     <p class="u-br">This has .u-br</p>
*/
.u-br {
  border-right: solid 5px #414243;
  padding-right: 29px; }

.u-vm {
  vertical-align: middle; }

.u-vb {
  vertical-align: bottom; }

.u-vbase {
  vertical-align: baseline; }

.u-tt {
  vertical-align: text-top; }

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