/*================ UTILS ================*/
/*================ Mixins ================*/
/*
	Responsive ratio
	Used for creating scalable elements that maintain the same ratio
	example:
	.element {
		@include responsive-ratio(400, 300);
	}
*/
/*============================================================================
  Prefix mixin for generating vendor prefixes.
  Based on https://github.com/thoughtbot/bourbon/blob/v4-stable/app/assets/stylesheets/addons/_prefixer.scss

  Usage:
    // Input:
    .element {
      @include prefix(transform, scale(1), ms webkit spec);
    }

    // Output:
    .element {
      -ms-transform: scale(1);
      -webkit-transform: scale(1);
      transform: scale(1);
    }
==============================================================================*/
/*================ Media Query Mixin ================*/
/*============= Keyframe animation Mixin ============*/
/*============================================================================
  Color Variables
==============================================================================*/
/* ---- Main colors ---- */
/* ---- Other colors ---- */
/* ---- Social colors ---- */
/*============================================================================
  Typography Variables
==============================================================================*/
/* ---- Font line heights ---- */
/* ---- Font sizes ---- */
/* ---- Font weights ---- */
/* ---- Font families ---- */
/*============================================================================
  Grid Breakpoints and Class Names
==============================================================================*/
/*================ VENDOR ================*/
@import url(css/vendor/owl/owl.carousel.min.css);
@import url(css/vendor/owl/owl.theme.default.min.css);
/*================= BASE =================*/
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

/**
 * Correct `inline-block` display not defined in IE 6/7/8/9 and Firefox 3.
 */
audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1; }

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

/**
 * Address styling not present in IE 7/8/9, Firefox 3, and Safari 4.
 * Known issue: no IE 6 support.
 */
[hidden] {
  display: none; }

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Correct text resizing oddly in IE 6/7 when body `font-size` is set using
 *    `em` units.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-size: 100%;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Address `font-family` inconsistency between `textarea` and other form
 * elements.
 */
html,
button,
input,
select,
textarea {
  font-family: sans-serif; }

/**
 * Address margins handled incorrectly in IE 6/7.
 */
body {
  margin: 0; }

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: 0; }

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

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address font sizes and margins set differently in IE 6/7.
 * Address font sizes within `section` and `article` in Firefox 4+, Safari 5,
 * and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

h2 {
  font-size: 1.5em;
  margin: 0.83em 0; }

h3 {
  font-size: 1.17em;
  margin: 1em 0; }

h4 {
  font-size: 1em;
  margin: 1.33em 0; }

h5 {
  font-size: 0.83em;
  margin: 1.67em 0; }

h6 {
  font-size: 0.67em;
  margin: 2.33em 0; }

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

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

blockquote {
  margin: 1em 40px; }

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

/**
 * Address differences between Firefox and other browsers.
 * Known issue: no IE 6/7 normalization.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

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

/**
 * Address margins set differently in IE 6/7.
 */
p,
pre {
  margin: 1em 0; }

/**
 * Correct font family set oddly in IE 6, Safari 4/5, and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  _font-family: 'courier new', monospace;
  font-size: 1em; }

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

/**
 * Address CSS quotes not supported in IE 6/7.
 */
q {
  quotes: none; }

/**
 * Address `quotes` property not supported in Safari 4.
 */
q:before,
q:after {
  content: '';
  content: none; }

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

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* ==========================================================================
   Lists
   ========================================================================== */
/**
 * Address margins set differently in IE 6/7.
 */
dl,
menu,
ol,
ul {
  margin: 1em 0; }

dd {
  margin: 0 0 0 40px; }

/**
 * Address paddings set differently in IE 6/7.
 */
menu,
ol,
ul {
  padding: 0 0 0 40px; }

/**
 * Correct list images handled incorrectly in IE 7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none; }

/* ==========================================================================
   Embedded content
   ========================================================================== */
/**
 * 1. Remove border when inside `a` element in IE 6/7/8/9 and Firefox 3.
 * 2. Improve image quality when scaled in IE 7.
 */
img {
  border: 0;
  /* 1 */
  -ms-interpolation-mode: bicubic;
  /* 2 */ }

img {
  max-width: 100%;
  height: auto; }

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

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 6/7/8/9, Safari 5, and Opera 11.
 */
figure {
  margin: 0; }

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Correct margin displayed oddly in IE 6/7.
 */
form {
  margin: 0; }

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

/**
 * 1. Correct color not being inherited in IE 6/7/8/9.
 * 2. Correct text not wrapping in Firefox 3.
 * 3. Correct alignment displayed oddly in IE 6/7.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  white-space: normal;
  /* 2 */
  *margin-left: -7px;
  /* 3 */ }

/**
 * 1. Correct font size not being inherited in all browsers.
 * 2. Address margins set differently in IE 6/7, Firefox 3+, Safari 5,
 *    and Chrome.
 * 3. Improve appearance and consistency in all browsers.
 */
button,
input,
select,
textarea {
  font-size: 100%;
  /* 1 */
  margin: 0;
  /* 2 */
  vertical-align: baseline;
  /* 3 */
  *vertical-align: middle;
  /* 3 */ }

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

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 6+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 * 4. Remove inner spacing in IE 7 without affecting normal text inputs.
 *    Known issue: inner spacing remains in IE 6.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */
  *overflow: visible;
  /* 4 */ }

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

/**
 * 1. Address box sizing set to content-box in IE 8/9.
 * 2. Remove excess padding in IE 8/9.
 * 3. Remove excess padding in IE 7.
 *    Known issue: excess padding remains in IE 6.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
  *height: 13px;
  /* 3 */
  *width: 13px;
  /* 3 */ }

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

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

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

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

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

/*==========================================================================
animations -- animations.scss
========================================================================== */
.effect--fade,
.effect--slidein {
  -webkit-transition: opacity 250ms ease-out 0s, -webkit-transform 250ms ease-out 0s;
  -moz-transition: opacity 250ms ease-out 0s,    -moz-transform 250ms ease-out 0s;
  transition: opacity 250ms ease-out 0s, 		   transform 250ms ease-out 0s; }

.effect--fade {
  opacity: 0; }

.effect--fade.effect--ready,
.no-cssanimations .effect--fade {
  opacity: 1; }

.effect--slidein {
  -webkit-transform: translate(0, 2em);
  -moz-transform: translate(0, 2em);
  transform: translate(0, 2em); }

.effect--slidein.effect--ready,
.no-cssanimations .effect--slidein {
  -webkit-transform: translate(0, 0px);
  -moz-transform: translate(0, 0px);
  transform: translate(0, 0px); }

.effect--slidedown {
  -webkit-transform: translate(0, -2em);
  -moz-transform: translate(0, -2em);
  transform: translate(0, -2em); }

.effect--slidedown.effect--ready,
.no-cssanimations .effect--slidedown {
  -webkit-transform: translate(0, 0px);
  -moz-transform: translate(0, 0px);
  transform: translate(0, 0px); }

.effect--slideright {
  -webkit-transform: translate(-2em, 0);
  -moz-transform: translate(-2em, 0);
  transform: translate(-2em, 0); }

.effect--slideright.effect--ready,
.no-cssanimations .effect--slideright {
  -webkit-transform: translate(0, 0px);
  -moz-transform: translate(0, 0px);
  transform: translate(0, 0px); }

.effect--slideleft {
  -webkit-transform: translate(2em, 0px);
  -moz-transform: translate(2em, 0px);
  transform: translate(2em, 0px); }

.effect--slideleft.effect--ready,
.no-cssanimations .effect--slideleft {
  -webkit-transform: translate(0, 0px);
  -moz-transform: translate(0, 0px);
  transform: translate(0, 0px); }

.effect--delay-1 {
  -webkit-transition-delay: 150ms;
  -moz-transition-delay: 150ms;
  transition-delay: 150ms; }

.effect--delay-2 {
  -webkit-transition-delay: 300ms;
  -moz-transition-delay: 300ms;
  transition-delay: 300ms; }

.effect--delay-3 {
  -webkit-transition-delay: 450ms;
  -moz-transition-delay: 450ms;
  transition-delay: 450ms; }

.effect--delay-4 {
  -webkit-transition-delay: 600ms;
  -moz-transition-delay: 600ms;
  transition-delay: 600ms; }

.effect--delay-5 {
  -webkit-transition-delay: 750ms;
  -moz-transition-delay: 750ms;
  transition-delay: 750ms; }

.effect--delay-6 {
  -webkit-transition-delay: 900ms;
  -moz-transition-delay: 900ms;
  transition-delay: 900ms; }

.effect--delay-7 {
  -webkit-transition-delay: 1050ms;
  -moz-transition-delay: 1050ms;
  transition-delay: 1050ms; }

.effect--delay-0 {
  -webkit-transition-delay: 0ms;
  -moz-transition-delay: 0ms;
  transition-delay: 0ms; }

.effect.gd-u-1-2:nth-child(2n+2) {
  -webkit-transition-delay: 150ms;
  -moz-transition-delay: 150ms;
  transition-delay: 150ms; }

@media only screen and (min-width: 550px) {
  .effect.gd-u-gt550-1-3:nth-child(3n+1) {
    -webkit-transition-delay: 0ms;
    -moz-transition-delay: 0ms;
    transition-delay: 0ms; }

  .effect.gd-u-gt550-1-3:nth-child(3n+2) {
    -webkit-transition-delay: 150ms;
    -moz-transition-delay: 150ms;
    transition-delay: 150ms; }

  .effect.gd-u-gt550-1-3:nth-child(3n+3) {
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    transition-delay: 300ms; } }
@media only screen and (min-width: 700px) {
  .effect.gd-u-gt700-1-2:nth-child(2n+1) {
    -webkit-transition-delay: 0ms;
    -moz-transition-delay: 0ms;
    transition-delay: 0ms; }

  .effect.gd-u-gt700-1-2:nth-child(2n+2) {
    -webkit-transition-delay: 150ms;
    -moz-transition-delay: 150ms;
    transition-delay: 150ms; }

  .effect.gd-u-gt700-1-3:nth-child(3n+1) {
    -webkit-transition-delay: 0ms;
    -moz-transition-delay: 0ms;
    transition-delay: 0ms; }

  .effect.gd-u-gt700-1-3:nth-child(3n+3) {
    -webkit-transition-delay: 150ms;
    -moz-transition-delay: 150ms;
    transition-delay: 150ms; }

  .effect.gd-u-gt700-1-3:nth-child(3n+3) {
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    transition-delay: 300ms; }

  .effect.gd-u-gt700-1-4:nth-child(4n+1) {
    -webkit-transition-delay: 0ms;
    -moz-transition-delay: 0ms;
    transition-delay: 0ms; }

  .effect.gd-u-gt700-1-4:nth-child(4n+3) {
    -webkit-transition-delay: 150ms;
    -moz-transition-delay: 150ms;
    transition-delay: 150ms; }

  .effect.gd-u-gt700-1-4:nth-child(4n+3) {
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    transition-delay: 300ms; }

  .effect.gd-u-gt700-1-4:nth-child(4n+4) {
    -webkit-transition-delay: 450ms;
    -moz-transition-delay: 450ms;
    transition-delay: 450ms; } }
@media only screen and (min-width: 1200px) {
  .effect.gd-u-gt1000-1-2:nth-child(2n+1) {
    -webkit-transition-delay: 0ms;
    -moz-transition-delay: 0ms;
    transition-delay: 0ms; }

  .effect.gd-u-gt1000-1-2:nth-child(2n+2) {
    -webkit-transition-delay: 150ms;
    -moz-transition-delay: 150ms;
    transition-delay: 150ms; }

  .effect.gd-u-gt1000-1-3:nth-child(3n+1) {
    -webkit-transition-delay: 0ms;
    -moz-transition-delay: 0ms;
    transition-delay: 0ms; }

  .effect.gd-u-gt1000-1-3:nth-child(3n+3) {
    -webkit-transition-delay: 150ms;
    -moz-transition-delay: 150ms;
    transition-delay: 150ms; }

  .effect.gd-u-gt1000-1-3:nth-child(3n+3) {
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    transition-delay: 300ms; }

  .effect.gd-u-gt1000-1-4:nth-child(4n+1) {
    -webkit-transition-delay: 0ms;
    -moz-transition-delay: 0ms;
    transition-delay: 0ms; }

  .effect.gd-u-gt1000-1-4:nth-child(4n+3) {
    -webkit-transition-delay: 150ms;
    -moz-transition-delay: 150ms;
    transition-delay: 150ms; }

  .effect.gd-u-gt1000-1-4:nth-child(4n+3) {
    -webkit-transition-delay: 300ms;
    -moz-transition-delay: 300ms;
    transition-delay: 300ms; }

  .effect.gd-u-gt1000-1-4:nth-child(4n+4) {
    -webkit-transition-delay: 450ms;
    -moz-transition-delay: 450ms;
    transition-delay: 450ms; } }
/*  ==========================================================================
	Setup fonts
	========================================================================== */
@font-face {
  font-family: "PostGrotesk";
  src: url("webfonts/PostGrotesk-Book.eot");
  src: url("webfonts/PostGrotesk-Book.woff") format("woff");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: "PostGrotesk";
  src: url("webfonts/PostGrotesk-BookItalic.eot");
  src: url("webfonts/PostGrotesk-BookItalic.woff") format("woff");
  font-weight: normal;
  font-style: italic; }
@font-face {
  font-family: "PostGrotesk";
  src: url("webfonts/PostGrotesk-Bold.eot");
  src: url("webfonts/PostGrotesk-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal; }
@font-face {
  font-family: "PostGrotesk";
  src: url("webfonts/PostGrotesk-BoldItalic.eot");
  src: url("webfonts/PostGrotesk-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic; }
/*  ==========================================================================
	Base typography -- typography.scss
	========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 1.5em 0 0.25em;
  line-height: 1.2;
  font-weight: 400; }

.h1,
h1 {
  margin: 0; }

.fontsize--huge,
h1 {
  font-size: 38px;
  line-height: 1; }
  @media only screen and (min-width: 550px) {
    .fontsize--huge,
    h1 {
      font-size: 40px; } }
  @media only screen and (min-width: 700px) {
    .fontsize--huge,
    h1 {
      font-size: 50px; } }
  @media only screen and (min-width: 1000px) {
    .fontsize--huge,
    h1 {
      font-size: 52px; } }
  @media only screen and (min-width: 1200px) {
    .fontsize--huge,
    h1 {
      font-size: 55px; } }
  @media only screen and (min-width: 1400px) {
    .fontsize--huge,
    h1 {
      font-size: 58px; } }
  @media only screen and (min-width: 1600px) {
    .fontsize--huge,
    h1 {
      font-size: 61px; } }

.fontsize--large,
h2 {
  font-size: 26px;
  line-height: 1.1; }
  @media only screen and (min-width: 550px) {
    .fontsize--large,
    h2 {
      font-size: 32px; } }
  @media only screen and (min-width: 700px) {
    .fontsize--large,
    h2 {
      font-size: 36px; } }
  @media only screen and (min-width: 1000px) {
    .fontsize--large,
    h2 {
      font-size: 36px; } }
  @media only screen and (min-width: 1200px) {
    .fontsize--large,
    h2 {
      font-size: 40px; } }
  @media only screen and (min-width: 1400px) {
    .fontsize--large,
    h2 {
      font-size: 45px; } }
  @media only screen and (min-width: 1600px) {
    .fontsize--large,
    h2 {
      font-size: 48px; } }

.fontsize--med,
h3 {
  font-size: 22px;
  line-height: 1.3; }
  @media only screen and (min-width: 550px) {
    .fontsize--med,
    h3 {
      font-size: 25px; } }
  @media only screen and (min-width: 700px) {
    .fontsize--med,
    h3 {
      font-size: 28px; } }
  @media only screen and (min-width: 1000px) {
    .fontsize--med,
    h3 {
      font-size: 30px; } }
  @media only screen and (min-width: 1200px) {
    .fontsize--med,
    h3 {
      font-size: 33px; } }
  @media only screen and (min-width: 1400px) {
    .fontsize--med,
    h3 {
      font-size: 35px; } }
  @media only screen and (min-width: 1600px) {
    .fontsize--med,
    h3 {
      font-size: 38px; } }

.fontsize--reg,
body,
h4 {
  font-size: 17px; }
  @media only screen and (min-width: 550px) {
    .fontsize--reg,
    body,
    h4 {
      font-size: 18px; } }
  @media only screen and (min-width: 700px) {
    .fontsize--reg,
    body,
    h4 {
      font-size: 18px; } }
  @media only screen and (min-width: 1000px) {
    .fontsize--reg,
    body,
    h4 {
      font-size: 19px; } }
  @media only screen and (min-width: 1200px) {
    .fontsize--reg,
    body,
    h4 {
      font-size: 20px; } }
  @media only screen and (min-width: 1400px) {
    .fontsize--reg,
    body,
    h4 {
      font-size: 22px; } }
  @media only screen and (min-width: 1600px) {
    .fontsize--reg,
    body,
    h4 {
      font-size: 24px; } }

.fontsize--sml,
h5 {
  font-size: 14px; }
  @media only screen and (min-width: 550px) {
    .fontsize--sml,
    h5 {
      font-size: 14px; } }
  @media only screen and (min-width: 700px) {
    .fontsize--sml,
    h5 {
      font-size: 14px; } }
  @media only screen and (min-width: 1000px) {
    .fontsize--sml,
    h5 {
      font-size: 14px; } }
  @media only screen and (min-width: 1200px) {
    .fontsize--sml,
    h5 {
      font-size: 14px; } }
  @media only screen and (min-width: 1400px) {
    .fontsize--sml,
    h5 {
      font-size: 15px; } }
  @media only screen and (min-width: 1600px) {
    .fontsize--sml,
    h5 {
      font-size: 15px; } }

.fontsize--tiny,
h6 {
  font-size: 12px; }
  @media only screen and (min-width: 550px) {
    .fontsize--tiny,
    h6 {
      font-size: 12px; } }
  @media only screen and (min-width: 700px) {
    .fontsize--tiny,
    h6 {
      font-size: 12px; } }
  @media only screen and (min-width: 1000px) {
    .fontsize--tiny,
    h6 {
      font-size: 12px; } }
  @media only screen and (min-width: 1200px) {
    .fontsize--tiny,
    h6 {
      font-size: 12px; } }
  @media only screen and (min-width: 1400px) {
    .fontsize--tiny,
    h6 {
      font-size: 13px; } }
  @media only screen and (min-width: 1600px) {
    .fontsize--tiny,
    h6 {
      font-size: 13px; } }

.font--bold,
b,
strong {
  font-weight: bold; }

.font--semibold {
  font-weight: bold; }

.font--reg {
  font-weight: 400; }

.font--light {
  font-weight: 400; }

.case--lower {
  text-transform: lowercase; }

.case--upper {
  text-transform: uppercase; }

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

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

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

.color--white {
  color: #fff; }

.color--grey {
  color: #4a4a49; }
  .color--grey strong {
    color: #000;
    font-weight: 400; }

.color--lightgrey {
  color: #c7c5bf; }
  .color--lightgrey strong {
    color: #fff;
    font-weight: 400; }

.color--blue {
  color: #00d4ff; }

ol,
ul {
  margin: 0 0 1em;
  padding: 0; }

p {
  margin: 0 0 1em; }

.linethrough {
  position: relative;
  margin: 0; }
  .linethrough:after {
    content: "";
    width: 100%;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    position: absolute;
    left: 0;
    top: 50%; }
  .linethrough span {
    position: relative;
    z-index: 2;
    background: #fff;
    padding-right: 1em; }

/*  ==========================================================================
    links -- links-buttons.scss
    ========================================================================== */
a {
  color: inherit;
  text-decoration: none; }
  a:hover {
    color: inherit; }
  a .fa,
  a .fab,
  a .fal,
  a .far,
  a .fas {
    padding: 0 0 0 0.66em; }
    a .fa--left,
    a .fab--left,
    a .fal--left,
    a .far--left,
    a .fas--left {
      padding: 0 0.66em 0 0; }
    a .fa--nopad,
    a .fab--nopad,
    a .fal--nopad,
    a .far--nopad,
    a .fas--nopad {
      padding: 0; }

.linkline {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.25) 50%, black 50%, black 100%);
  background-size: 200% 2px;
  background-position: 0% bottom;
  background-repeat: repeat-x;
  -webkit-transition: background-position 199ms ease-out 0ms;
  -moz-transition: background-position 199ms ease-out 0ms;
  transition: background-position 199ms ease-out 0ms;
  	/* &--hover{
      background-position: 0% bottom;
      -webkit-transition: background-position 199ms ease-out 0ms;
         -moz-transition: background-position 199ms ease-out 0ms;
              transition: background-position 199ms ease-out 0ms;
    } */ }
  a:hover .linkline {
    background-position: -100% bottom; }

.btn {
  background-color: #4a4a49;
  color: #fff;
  border-radius: 30px;
  display: inline-block;
  margin: 0 0.5em 0.5em 0;
  padding: 1em 1.75em;
  border: none; }
  .btn .linkline {
    background-image: none; }
  .btn:hover {
    color: #fff;
    background-color: #000; }

/*  ==========================================================================
    share icons -- links-buttons.scss
    ========================================================================== */
.shareicons {
  color: #fff;
  margin-top: 1em; }
  .shareicons .shareiconslist li {
    margin: 0;
    display: inline-block; }
  .shareicons .sharelink {
    display: inline-block;
    height: 2em;
    background: #c7c5bf;
    line-height: 2em;
    margin: 0;
    color: #fff;
    border-radius: 1em;
    /* reverse sharelink when image or video is present */ }
    .shareicons .sharelink:after {
      content: "";
      height: 0;
      visibility: hidden;
      clear: both;
      display: block; }
    .shareicons .sharelink--facebook {
      background: #3b5998; }
    .shareicons .sharelink--twitter {
      background: #00aced; }
    .shareicons .sharelink--linkedin {
      background: #007bb6; }
    @media only screen and (min-width: 700px) {
      .shareicons .sharelink {
        line-height: 3em;
        height: 3em;
        border-radius: 1.5em; } }
    .pageheader.color--white .shareicons .sharelink {
      background: #fff; }
      .pageheader.color--white .shareicons .sharelink--facebook, .pageheader.color--white .shareicons .sharelink--facebook:hover {
        color: #3b5998; }
      .pageheader.color--white .shareicons .sharelink--twitter, .pageheader.color--white .shareicons .sharelink--twitter:hover {
        color: #00aced; }
      .pageheader.color--white .shareicons .sharelink--linkedin, .pageheader.color--white .shareicons .sharelink--linkedin:hover {
        color: #007bb6; }
    .shareicons .sharelink .sharetext {
      overflow: hidden;
      font-size: 12px;
      display: block;
      float: left;
      text-align: right;
      width: 0;
      -webkit-transition: all 0.15s ease-in-out 0s;
      -moz-transition: all 0.15s ease-in-out 0s;
      transition: all 0.15s ease-in-out 0s;
      text-align: left; }
    .shareicons .sharelink .shareicon {
      width: 2em;
      text-align: center;
      display: block;
      float: left;
      padding: 0;
      border: none; }
      @media only screen and (min-width: 700px) {
        .shareicons .sharelink .shareicon {
          width: 3em; } }
      .shareicons .sharelink .shareicon .fab {
        display: inline-block;
        padding: 0; }
    .shareicons .sharelink a:hover .shareicon .fab {
      display: inline-block;
      padding: 0; }
    .shareicons .sharelink:hover .sharetext {
      width: 45px; }

/*================= LAYOUT =================*/
/* ==========================================================================
   grid
   ========================================================================== */
.gd-g {
  letter-spacing: -0.31em;
  *letter-spacing: normal;
  *word-spacing: -0.43em;
  text-rendering: optimizespeed;
  margin-left: -.75em;
  margin-right: -.75em;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.gd-g--nowrap {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap; }

.gd-g--wrapreverse {
  -webkit-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse; }

.gd-g--column {
  -webkit-flex-direction: column;
  /* Safari 6.1+ */
  flex-direction: column; }

.gd-g--columnreverse {
  -webkit-flex-direction: column-reverse;
  /* Safari 6.1+ */
  flex-direction: column-reverse; }

.gd-g--row {
  -webkit-flex-direction: row;
  /* Safari 6.1+ */
  flex-direction: row; }

.gd-g--rowreverse {
  -webkit-flex-direction: row-reverse;
  /* Safari 6.1+ */
  flex-direction: row-reverse; }

@media only screen and (min-width: 550px) {
  .gd-g--rowreverse--sm {
    -webkit-flex-direction: row-reverse;
    /* Safari 6.1+ */
    flex-direction: row-reverse; } }

@media only screen and (min-width: 700px) {
  .gd-g--rowreverse--md {
    -webkit-flex-direction: row-reverse;
    /* Safari 6.1+ */
    flex-direction: row-reverse; } }

@media only screen and (min-width: 1000px) {
  .gd-g--rowreverse--lg {
    -webkit-flex-direction: row-reverse;
    /* Safari 6.1+ */
    flex-direction: row-reverse; } }

@media only screen and (min-width: 1200px) {
  .gd-g--rowreverse--xl {
    -webkit-flex-direction: row-reverse;
    /* Safari 6.1+ */
    flex-direction: row-reverse; } }

@media only screen and (min-width: 1400px) {
  .gd-g--rowreverse--wi {
    -webkit-flex-direction: row-reverse;
    /* Safari 6.1+ */
    flex-direction: row-reverse; } }

@media only screen and (min-width: 1600px) {
  .gd-g--rowreverse--xw {
    -webkit-flex-direction: row-reverse;
    /* Safari 6.1+ */
    flex-direction: row-reverse; } }

.gd-g--center {
  justify-content: center; }

.gd-g--left {
  justify-content: flex-start; }

.gd-g--right {
  justify-content: flex-end; }

.gd-g--spacebetween {
  justify-content: space-between; }

.gd-g--spacearound {
  justify-content: space-around; }

.gd-g--spaceevenly {
  justify-content: space-evenly; }

.gd-g--vertcenter {
  align-items: center; }

.gd-g--vertstart {
  align-items: flex-start; }

.gd-g--vertend {
  align-items: flex-end; }

.opera-only :-o-prefocus,
.gd-g {
  word-spacing: -0.43em; }

.gd-u {
  display: inline-block;
  *display: inline;
  zoom: 1;
  letter-spacing: normal;
  word-spacing: normal;
  vertical-align: top;
  text-rendering: auto;
  box-sizing: border-box;
  padding-left: .75em;
  padding-right: .75em; }

.gd-u.gd-u--nopadleft {
  padding-left: 0; }

.gd-u.gd-u--nopadright {
  padding-right: 0; }

.gd-u-1 {
  width: 100%; }

.gd-u-1-2 {
  width: 50%; }

.gd-u-1-3 {
  width: 33.3%; }

.gd-u-2-3 {
  width: 66.66666%; }

.gd-u-1-4 {
  width: 25%; }

.gd-u-3-4 {
  width: 75%; }

.gd-u-1-5 {
  width: 20%; }

.gd-u-2-5 {
  width: 40%; }

.gd-u-3-5 {
  width: 60%; }

.gd-u-4-5 {
  width: 80%; }

.gd-u-1-6 {
  width: 16.656%; }

.gd-u-5-6 {
  width: 83.33%; }

.gd-u-1-8 {
  width: 12.5%; }

.gd-u-3-8 {
  width: 37.5%; }

.gd-u-5-8 {
  width: 62.5%; }

.gd-u-7-8 {
  width: 87.5%; }

.gd-u-1-12 {
  width: 8.3333%; }

.gd-u-5-12 {
  width: 41.6666%; }

.gd-u-7-12 {
  width: 58.3333%; }

.gd-u-11-12 {
  width: 91.6666%; }

.gd-u-1-24 {
  width: 4.1666%; }

.gd-u-5-24 {
  width: 20.8333%; }

.gd-u-7-24 {
  width: 29.1666%; }

.gd-u-11-24 {
  width: 45.8333%; }

.gd-u-13-24 {
  width: 54.1666%; }

.gd-u-17-24 {
  width: 70.8333%; }

.gd-u-19-24 {
  width: 79.1666%; }

.gd-u-23-24 {
  width: 95.8333%; }

.gd-u-auto {
  width: auto; }

@media screen and (max-width: 549px) {
  .lt550-hide {
    display: none; } }
@media screen and (min-width: 550px) {
  .gd-u-gt550-1 {
    width: 100%; }

  .gd-u-gt550-1-2 {
    width: 50%; }

  .gd-u-gt550-1-3 {
    width: 33.33333%; }

  .gd-u-gt550-2-3 {
    width: 66.66666%; }

  .gd-u-gt550-1-4 {
    width: 25%; }

  .gd-u-gt550-3-4 {
    width: 75%; }

  .gd-u-gt550-1-5 {
    width: 20%; }

  .gd-u-gt550-2-5 {
    width: 40%; }

  .gd-u-gt550-3-5 {
    width: 60%; }

  .gd-u-gt550-4-5 {
    width: 80%; }

  .gd-u-gt550-1-6 {
    width: 16.656%; }

  .gd-u-gt550-5-6 {
    width: 83.33%; }

  .gd-u-gt550-1-8 {
    width: 12.5%; }

  .gd-u-gt550-3-8 {
    width: 37.5%; }

  .gd-u-gt550-5-8 {
    width: 62.5%; }

  .gd-u-gt550-7-8 {
    width: 87.5%; }

  .gd-u-gt550-1-12 {
    width: 8.3333%; }

  .gd-u-gt550-5-12 {
    width: 41.6666%; }

  .gd-u-gt550-7-12 {
    width: 58.3333%; }

  .gd-u-gt550-11-12 {
    width: 91.6666%; }

  .gd-u-gt550-1-24 {
    width: 4.1666%; }

  .gd-u-gt550-5-24 {
    width: 20.8333%; }

  .gd-u-gt550-7-24 {
    width: 29.1666%; }

  .gd-u-gt550-11-24 {
    width: 45.8333%; }

  .gd-u-gt550-13-24 {
    width: 54.1666%; }

  .gd-u-gt550-17-24 {
    width: 70.8333%; }

  .gd-u-gt550-19-24 {
    width: 79.1666%; }

  .gd-u-gt550-23-24 {
    width: 95.8333%; }

  .gd-u-gt550-auto {
    width: auto; }

  .gd-u-gt550--nopadleft {
    padding-left: 0; }

  .gd-u-gt550--nopadright {
    padding-right: 0; }

  .gd-g {
    margin-right: -1em;
    margin-left: -1em; }

  .gd-u {
    padding-right: 1em;
    padding-left: 1em; } }
@media screen and (max-width: 699px) {
  .lt700-hide {
    display: none; } }
@media screen and (min-width: 700px) {
  .gd-u-gt700-1 {
    width: 100%; }

  .gd-u-gt700-1-2 {
    width: 50%; }

  .gd-u-gt700-1-3 {
    width: 33.33333%; }

  .gd-u-gt700-2-3 {
    width: 66.66666%; }

  .gd-u-gt700-1-4 {
    width: 25%; }

  .gd-u-gt700-3-4 {
    width: 75%; }

  .gd-u-gt700-1-5 {
    width: 20%; }

  .gd-u-gt700-2-5 {
    width: 40%; }

  .gd-u-gt700-3-5 {
    width: 60%; }

  .gd-u-gt700-4-5 {
    width: 80%; }

  .gd-u-gt700-1-6 {
    width: 16.656%; }

  .gd-u-gt700-5-6 {
    width: 83.33%; }

  .gd-u-gt700-1-8 {
    width: 12.5%; }

  .gd-u-gt700-3-8 {
    width: 37.5%; }

  .gd-u-gt700-5-8 {
    width: 62.5%; }

  .gd-u-gt700-7-8 {
    width: 87.5%; }

  .gd-u-gt700-1-12 {
    width: 8.3333%; }

  .gd-u-gt700-5-12 {
    width: 41.6666%; }

  .gd-u-gt700-7-12 {
    width: 58.3333%; }

  .gd-u-gt700-11-12 {
    width: 91.6666%; }

  .gd-u-gt700-1-24 {
    width: 4.1666%; }

  .gd-u-gt700-5-24 {
    width: 20.8333%; }

  .gd-u-gt700-7-24 {
    width: 29.1666%; }

  .gd-u-gt700-11-24 {
    width: 45.8333%; }

  .gd-u-gt700-13-24 {
    width: 54.1666%; }

  .gd-u-gt700-17-24 {
    width: 70.8333%; }

  .gd-u-gt700-19-24 {
    width: 79.1666%; }

  .gd-u-gt700-23-24 {
    width: 95.8333%; }

  .gd-u-gt700-auto {
    width: auto; }

  .gd-u-gt700--nopadleft {
    padding-left: 0; }

  .gd-u-gt700--nopadright {
    padding-right: 0; }

  .gd-g {
    margin-right: -1.25em;
    margin-left: -1.25em; }

  .gd-u {
    padding-right: 1.25em;
    padding-left: 1.25em; } }
@media screen and (max-width: 799px) {
  .lt800-hide {
    display: none; } }
@media screen and (min-width: 800px) {
  .gd-u-gt800-1 {
    width: 100%; }

  .gd-u-gt800-1-2 {
    width: 50%; }

  .gd-u-gt800-1-3 {
    width: 33.33333%; }

  .gd-u-gt800-2-3 {
    width: 66.66666%; }

  .gd-u-gt800-1-4 {
    width: 25%; }

  .gd-u-gt800-3-4 {
    width: 75%; }

  .gd-u-gt800-1-5 {
    width: 20%; }

  .gd-u-gt800-2-5 {
    width: 40%; }

  .gd-u-gt800-3-5 {
    width: 60%; }

  .gd-u-gt800-4-5 {
    width: 80%; }

  .gd-u-gt800-1-6 {
    width: 16.656%; }

  .gd-u-gt800-5-6 {
    width: 83.33%; }

  .gd-u-gt800-1-8 {
    width: 12.5%; }

  .gd-u-gt800-3-8 {
    width: 37.5%; }

  .gd-u-gt800-5-8 {
    width: 62.5%; }

  .gd-u-gt800-7-8 {
    width: 87.5%; }

  .gd-u-gt800-1-12 {
    width: 8.3333%; }

  .gd-u-gt800-5-12 {
    width: 41.6666%; }

  .gd-u-gt800-7-12 {
    width: 58.3333%; }

  .gd-u-gt800-11-12 {
    width: 91.6666%; }

  .gd-u-gt800-1-24 {
    width: 4.1666%; }

  .gd-u-gt800-5-24 {
    width: 20.8333%; }

  .gd-u-gt800-7-24 {
    width: 29.1666%; }

  .gd-u-gt800-11-24 {
    width: 45.8333%; }

  .gd-u-gt800-13-24 {
    width: 54.1666%; }

  .gd-u-gt800-17-24 {
    width: 70.8333%; }

  .gd-u-gt800-19-24 {
    width: 79.1666%; }

  .gd-u-gt800-23-24 {
    width: 95.8333%; }

  .gd-u-gt800-auto {
    width: auto; }

  .gd-u-gt800--nopadleft {
    padding-left: 0; }

  .gd-u-gt800--nopadright {
    padding-right: 0; } }
@media screen and (max-width: 999px) {
  .lt1000-hide {
    display: none; } }
@media screen and (min-width: 1000px) {
  .gd-u-gt1000-1 {
    width: 100%; }

  .gd-u-gt1000-1-2 {
    width: 50%; }

  .gd-u-gt1000-1-3 {
    width: 33.33333%; }

  .gd-u-gt1000-2-3 {
    width: 66.66666%; }

  .gd-u-gt1000-1-4 {
    width: 25%; }

  .gd-u-gt1000-3-4 {
    width: 75%; }

  .gd-u-gt1000-1-5 {
    width: 20%; }

  .gd-u-gt1000-2-5 {
    width: 40%; }

  .gd-u-gt1000-3-5 {
    width: 60%; }

  .gd-u-gt1000-4-5 {
    width: 80%; }

  .gd-u-gt1000-1-6 {
    width: 16.656%; }

  .gd-u-gt1000-5-6 {
    width: 83.33%; }

  .gd-u-gt1000-1-8 {
    width: 12.5%; }

  .gd-u-gt1000-3-8 {
    width: 37.5%; }

  .gd-u-gt1000-5-8 {
    width: 62.5%; }

  .gd-u-gt1000-7-8 {
    width: 87.5%; }

  .gd-u-gt1000-1-12 {
    width: 8.3333%; }

  .gd-u-gt1000-5-12 {
    width: 41.6666%; }

  .gd-u-gt1000-7-12 {
    width: 58.3333%; }

  .gd-u-gt1000-11-12 {
    width: 91.6666%; }

  .gd-u-gt1000-1-24 {
    width: 4.1666%; }

  .gd-u-gt1000-5-24 {
    width: 20.8333%; }

  .gd-u-gt1000-7-24 {
    width: 29.1666%; }

  .gd-u-gt1000-11-24 {
    width: 45.8333%; }

  .gd-u-gt1000-13-24 {
    width: 54.1666%; }

  .gd-u-gt1000-17-24 {
    width: 70.8333%; }

  .gd-u-gt1000-19-24 {
    width: 79.1666%; }

  .gd-u-gt1000-23-24 {
    width: 95.8333%; }

  .gd-u-gt1000-auto {
    width: auto; }

  .gd-u-gt1000--nopadleft {
    padding-left: 0; }

  .gd-u-gt1000--nopadright {
    padding-right: 0; }

  .gd-g {
    margin-right: -1.5em;
    margin-left: -1.5em; }

  .gd-u {
    padding-right: 1.5em;
    padding-left: 1.5em; } }
@media screen and (max-width: 1200px) {
  .lt1200-hide {
    display: none; } }
@media screen and (min-width: 1200px) {
  .gd-u-gt1200-1 {
    width: 100%; }

  .gd-u-gt1200-1-2 {
    width: 50%; }

  .gd-u-gt1200-1-3 {
    width: 33.33333%; }

  .gd-u-gt1200-2-3 {
    width: 66.66666%; }

  .gd-u-gt1200-1-4 {
    width: 25%; }

  .gd-u-gt1200-3-4 {
    width: 75%; }

  .gd-u-gt1200-1-5 {
    width: 20%; }

  .gd-u-gt1200-2-5 {
    width: 40%; }

  .gd-u-gt1200-3-5 {
    width: 60%; }

  .gd-u-gt1200-4-5 {
    width: 80%; }

  .gd-u-gt1200-1-6 {
    width: 16.656%; }

  .gd-u-gt1200-5-6 {
    width: 83.33%; }

  .gd-u-gt1200-1-8 {
    width: 12.5%; }

  .gd-u-gt1200-3-8 {
    width: 37.5%; }

  .gd-u-gt1200-5-8 {
    width: 62.5%; }

  .gd-u-gt1200-7-8 {
    width: 87.5%; }

  .gd-u-gt1200-1-12 {
    width: 8.3333%; }

  .gd-u-gt1200-5-12 {
    width: 41.6666%; }

  .gd-u-gt1200-7-12 {
    width: 58.3333%; }

  .gd-u-gt1200-11-12 {
    width: 91.6666%; }

  .gd-u-gt1200-1-24 {
    width: 4.1666%; }

  .gd-u-gt1200-5-24 {
    width: 20.8333%; }

  .gd-u-gt1200-7-24 {
    width: 29.1666%; }

  .gd-u-gt1200-11-24 {
    width: 45.8333%; }

  .gd-u-gt1200-13-24 {
    width: 54.1666%; }

  .gd-u-gt1200-17-24 {
    width: 70.8333%; }

  .gd-u-gt1200-19-24 {
    width: 79.1666%; }

  .gd-u-gt1200-23-24 {
    width: 95.8333%; }

  .gd-u-gt1200-auto {
    width: auto; }

  .gd-u-gt1200--nopadleft {
    padding-left: 0; }

  .gd-u-gt1200--nopadright {
    padding-right: 0; } }
@media screen and (max-width: 1399px) {
  .lt1400-hide {
    display: none; } }
@media screen and (min-width: 1400px) {
  .gd-u-gt1400-1 {
    width: 100%; }

  .gd-u-gt1400-1-2 {
    width: 50%; }

  .gd-u-gt1400-1-3 {
    width: 33.33333%; }

  .gd-u-gt1400-2-3 {
    width: 66.66666%; }

  .gd-u-gt1400-1-4 {
    width: 25%; }

  .gd-u-gt1400-3-4 {
    width: 75%; }

  .gd-u-gt1400-1-5 {
    width: 20%; }

  .gd-u-gt1400-2-5 {
    width: 40%; }

  .gd-u-gt1400-3-5 {
    width: 60%; }

  .gd-u-gt1400-4-5 {
    width: 80%; }

  .gd-u-gt1400-1-6 {
    width: 16.656%; }

  .gd-u-gt1400-5-6 {
    width: 83.33%; }

  .gd-u-gt1400-1-8 {
    width: 12.5%; }

  .gd-u-gt1400-3-8 {
    width: 37.5%; }

  .gd-u-gt1400-5-8 {
    width: 62.5%; }

  .gd-u-gt1400-7-8 {
    width: 87.5%; }

  .gd-u-gt1400-1-12 {
    width: 8.3333%; }

  .gd-u-gt1400-5-12 {
    width: 41.6666%; }

  .gd-u-gt1400-7-12 {
    width: 58.3333%; }

  .gd-u-gt1400-11-12 {
    width: 91.6666%; }

  .gd-u-gt1400-1-24 {
    width: 4.1666%; }

  .gd-u-gt1400-5-24 {
    width: 20.8333%; }

  .gd-u-gt1400-7-24 {
    width: 29.1666%; }

  .gd-u-gt1400-11-24 {
    width: 45.8333%; }

  .gd-u-gt1400-13-24 {
    width: 54.1666%; }

  .gd-u-gt1400-17-24 {
    width: 70.8333%; }

  .gd-u-gt1400-19-24 {
    width: 79.1666%; }

  .gd-u-gt1400-23-24 {
    width: 95.8333%; }

  .gd-u-gt1400-auto {
    width: auto; }

  .gd-u-gt1400--nopadleft {
    padding-left: 0; }

  .gd-u-gt1400--nopadright {
    padding-right: 0; } }
.opera-only :-o-prefocus,
.gd-g {
  word-spacing: -0.43em; }

/* ==========================================================================
   forms
   ========================================================================== */
.field {
  padding: 0 .5em .5em 0;
  position: relative; }

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="search"],
input[type="tel"],
select,
textarea {
  padding: 1em;
  background: transparent;
  border: solid 1px #eee;
  border-radius: 0;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  font-family: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }
  input[type="text"]:focus,
  input[type="email"]:focus,
  input[type="password"]:focus,
  input[type="number"]:focus,
  input[type="search"]:focus,
  input[type="tel"]:focus,
  select:focus,
  textarea:focus {
    outline: none; }

textarea {
  min-height: 5.2em; }

input.placeholder, textarea.placeholder {
  color: #888; }
input:-moz-placeholder, textarea:-moz-placeholder {
  color: #888; }
input::-moz-placeholder, textarea::-moz-placeholder {
  color: #888; }
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #888; }
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #888; }

select {
  background-image: url("img/framework/select-arrow.png");
  /* add custom arrow */
  background-size: 10px auto;
  background-repeat: no-repeat;
  background-position: right 1rem center; }

input[disabled],
input[disabled],
input[disabled],
input[disabled],
textarea[disabled],
input[readonly],
input[readonly],
input[readonly],
input[readonly],
textarea[readonly] {
  opacity: .5; }

/* Ninja Forms */
.nf-form-fields-required {
  display: none !important; }

.nf-form-title h3 {
  margin: 0 0 1em; }

.nf-form-cont .label-above .nf-field-label {
  margin-bottom: 5px; }

input[type="button"] {
  font-family: "PostGrotesk", Helvetica, Arial, sans-serif;
  background-color: #00d4ff;
  color: #fff;
  border-radius: 2px;
  display: inline-block;
  margin: 0 0.5em 0.5em 0;
  padding: 1em 1.75em;
  border: none; }
  input[type="button"]:focus {
    outline: none; }
  input[type="button"]:hover {
    color: #fff;
    background-color: #000; }

input[type=radio], input[type=checkbox] {
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  cursor: pointer;
  margin-right: 10px; }
  input[type=radio]:focus, input[type=checkbox]:focus {
    outline: none; }
  input[type=radio]:checked, input[type=checkbox]:checked {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent; }
  input[type=radio]:after, input[type=checkbox]:after {
    border: 2px solid #000;
    border-radius: 3px;
    content: "";
    position: absolute;
    top: -3px;
    left: 0px;
    width: 17px;
    height: 17px;
    transition: all 0.5s ease;
    box-sizing: border-box; }
  input[type=radio]:before, input[type=checkbox]:before {
    background: #fff;
    border-radius: 3px;
    content: "";
    position: absolute;
    top: 1px;
    left: 4px;
    width: 9px;
    height: 9px;
    z-index: 18;
    transition: all 0.5s ease; }
  input[type=radio]:checked::before, input[type=checkbox]:checked::before {
    background: #00d4ff;
    transition: all 0.5s ease; }
  input[type=radio]:checked::after, input[type=checkbox]:checked::after {
    border: 2px solid #00d4ff;
    transition: all 0.5s ease; }

input[type=checkbox]:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Pro";
  font-weight: bold;
  color: #fff;
  background: transparent;
  font-size: 10px;
  top: 0px;
  left: 3.5px; }
input[type=checkbox]:checked:before {
  background: transparent;
  color: #00d4ff; }

input[type=radio]:after {
  border-radius: 50%; }
input[type=radio]:before {
  border-radius: 50%; }

.checkbox-container.label-right .checkbox-wrap .nf-field-label {
  padding-left: 10px; }
.checkbox-container input[type=checkbox]::after {
  top: -14px; }
.checkbox-container input[type=checkbox]::before {
  top: -11px; }
@media only screen and (min-width: 1400px) {
  .checkbox-container input[type=checkbox]::after {
    top: -16px; }
  .checkbox-container input[type=checkbox]::before {
    top: -13px; } }

.list-checkbox-wrap .nf-field-element li label, .list-radio-wrap .nf-field-element li label, .nf-form-content .checkbox-container .nf-field-label label, .form-check-inline .form-check-label {
  color: #000;
  font-weight: bold;
  font-size: .85rem; }
  .list-checkbox-wrap .nf-field-element li label.nf-checked-label, .list-checkbox-wrap .nf-field-element li label.form-check-label--checked, .list-radio-wrap .nf-field-element li label.nf-checked-label, .list-radio-wrap .nf-field-element li label.form-check-label--checked, .nf-form-content .checkbox-container .nf-field-label label.nf-checked-label, .nf-form-content .checkbox-container .nf-field-label label.form-check-label--checked, .form-check-inline .form-check-label.nf-checked-label, .form-check-inline .form-check-label.form-check-label--checked {
    color: #00d4ff; }

.list-checkbox-wrap .nf-field-element li label, .list-radio-wrap .nf-field-element li label, .form-check-inline .form-check-label {
  margin-left: 30px !important; }

/* Contact Form 7 (OLD) */
.wpcf7 .wpcf7-not-valid-tip {
  background: #ff4738;
  color: #fff;
  padding: 1em;
  position: relative;
  font-size: 12px;
  z-index: 2; }

.wpcf7 .wpcf7-not-valid-tip:after {
  content: ' ';
  display: block;
  position: absolute;
  top: -.5em;
  left: 1em;
  border-left: .5em solid transparent;
  border-right: .5em solid transparent;
  border-bottom: .5em solid #ff4738; }

.wpcf7 .wpcf7-response-output {
  border: none;
  background: #888;
  color: #fff;
  padding: 1em;
  font-size: 13px; }

.wpcf7 .wpcf7-validation-errors {
  background: #ff4738; }

.wpcf7 .wpcf7-mail-sent-ok {
  background: #2cdc8c;
  color: #111; }

/*  ==========================================================================
	Basic layout classes -- layout/layout.scss
	========================================================================== */
body {
  font-family: "PostGrotesk", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #000;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%; }

.main {
  background: #fff; }

.hidden {
  visibility: hidden; }

.bd {
  margin: 0 10%;
  position: relative;
  min-height: 1px; }
  @media only screen and (min-width: 700px) {
    .bd {
      margin: 0 7%; } }
  @media only screen and (min-width: 1000px) {
    .bd {
      margin: 0 5%; } }
  .bd:after {
    content: "";
    visibility: hidden;
    display: block;
    height: 0;
    clear: both; }

.padding--top {
  padding-top: 10%; }
  @media only screen and (min-width: 550px) {
    .padding--top {
      padding-top: 7%; } }
  @media only screen and (min-width: 1000px) {
    .padding--top {
      padding-top: 5%; } }

.padding--bottom {
  padding-bottom: 10%; }
  @media only screen and (min-width: 550px) {
    .padding--bottom {
      padding-bottom: 7%; } }
  @media only screen and (min-width: 1000px) {
    .padding--bottom {
      padding-bottom: 5%; } }

.padding--top-half {
  padding-top: 7%; }
  @media only screen and (min-width: 550px) {
    .padding--top-half {
      padding-top: 3.5%; } }
  @media only screen and (min-width: 1000px) {
    .padding--top-half {
      padding-top: 3.5%; } }

.padding--bottom-half {
  padding-bottom: 7%; }
  @media only screen and (min-width: 550px) {
    .padding--bottom-half {
      padding-bottom: 3.5%; } }
  @media only screen and (min-width: 1000px) {
    .padding--bottom-half {
      padding-bottom: 3.5%; } }

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

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

.margin--top {
  margin-top: 10%; }
  @media only screen and (min-width: 550px) {
    .margin--top {
      margin-top: 7%; } }
  @media only screen and (min-width: 1000px) {
    .margin--top {
      margin-top: 5%; } }

.margin--bottom {
  margin-bottom: 10%; }
  @media only screen and (min-width: 550px) {
    .margin--bottom {
      margin-bottom: 7%; } }
  @media only screen and (min-width: 1000px) {
    .margin--bottom {
      margin-bottom: 5%; } }

.margin--top-half {
  margin-top: 7%; }
  @media only screen and (min-width: 550px) {
    .margin--top-half {
      margin-top: 3.5%; } }
  @media only screen and (min-width: 1000px) {
    .margin--top-half {
      margin-top: 3.5%; } }

.margin--bottom-half {
  margin-bottom: 7%; }
  @media only screen and (min-width: 550px) {
    .margin--bottom-half {
      margin-bottom: 3.5%; } }
  @media only screen and (min-width: 1000px) {
    .margin--bottom-half {
      margin-bottom: 3.5%; } }

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

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

.margin--none {
  margin: 0; }

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

.clearfix {
  *zoom: 1; }
  .clearfix::after {
    content: '';
    display: table;
    clear: both; }

/*  ==========================================================================
	base nav
	========================================================================== */
nav ul {
  margin: 0;
  padding: 0;
  list-style: none; }

.inlinenavlist {
  margin: 0 -.75em; }
  .inlinenavlist li {
    display: inline-block;
    margin: 0;
    padding: 0; }
    .inlinenavlist li a {
      display: block;
      padding: 0 0.75em; }

/*  ==========================================================================
	Page
	========================================================================== */
.pageheader {
  position: relative;
  overflow: hidden;
  /* pageheader--img */
  /* pageheader--video */
  /* pageheader--gallery */
  /* pageheader--post or postheader */
  /* pageheader--person or personheader */
  /* pageheader--project   */ }
  .pageheader .pageheader__bd {
    position: relative;
    z-index: 2; }
  .pageheader h1 {
    max-width: 12em; }
  .pageheader .leader {
    margin-top: .5em;
    max-width: 17em;
    margin-bottom: -1em; }
    @media only screen and (min-width: 700px) {
      .pageheader .leader {
        width: 50%; } }
  .pageheader .pageheader__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    overflow: hidden; }
  .pageheader--img .pageheader__img {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 1;
    opacity: 0;
    -webkit-transition: opacity 1000ms ease-out 0ms;
    -moz-transition: opacity 1000ms ease-out 0ms;
    transition: opacity 1000ms ease-out 0ms; }
    .pageheaderimg--loaded .pageheader--img .pageheader__img, .personheaderimg--loaded .pageheader--img .pageheader__img {
      -webkit-transition: opacity 2000ms ease-out 0;
      -moz-transition: opacity 2000ms ease-out 0;
      transition: opacity 2000ms ease-out 0;
      opacity: 1; }
  .pageheader--video .pageheader__video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    z-index: 1;
    opacity: 0;
    -webkit-transition: opacity 2000ms ease-out 0ms;
    -moz-transition: opacity 2000ms ease-out 0ms;
    transition: opacity 2000ms ease-out 0ms; }
    .pageheader--video .pageheader__video iframe {
      width: 100vw;
      height: 56.25vw;
      /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
      min-height: 100vh;
      min-width: 177.77vh;
      /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); }
    .has-videoheader--playing .pageheader--video .pageheader__video {
      opacity: 0.66; }
  .pageheader--gallery .pageheader__gallery {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    opacity: 0;
    -webkit-transition: opacity 1000ms ease-out 0ms;
    -moz-transition: opacity 1000ms ease-out 0ms;
    transition: opacity 1000ms ease-out 0ms; }
    .pageheader--gallery .pageheader__gallery.owl-loaded {
      opacity: 0.66; }
    .pageheader--gallery .pageheader__gallery .owl-item,
    .pageheader--gallery .pageheader__gallery .owl-stage,
    .pageheader--gallery .pageheader__gallery .owl-stage-outer {
      height: 100%; }
    .pageheader--gallery .pageheader__gallery .owl-item {
      overflow: hidden; }
    .pageheader--gallery .pageheader__gallery .pageheader__gallery__img {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center center;
      z-index: 1;
      -webkit-transition: opacity 1000ms ease-out 0ms;
      -moz-transition: opacity 1000ms ease-out 0ms;
      transition: opacity 1000ms ease-out 0ms; }
  .pageheader--post {
    margin-bottom: 2em; }
    .pageheader--post .postheader__video {
      height: 16em;
      position: relative; }
      .pageheader--post .postheader__video.postheader__video--withvideo {
        cursor: pointer; }
      .pageheader--post .postheader__video iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1; }
      @media only screen and (min-width: 700px) {
        .pageheader--post .postheader__video {
          height: 18em;
          padding-top: 0; } }
      @media only screen and (min-width: 1000px) {
        .pageheader--post .postheader__video {
          height: 18em;
          padding-top: 0; } }
      .pageheader--post .postheader__video .postheader__video__overlay {
        content: '';
        background-color: #000;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 10; }
      .pageheader--post .postheader__video .postheader__video__overlay {
        visibility: visible;
        opacity: 1;
        transition: opacity 0.33s linear; }
      .pageheader--post .postheader__video.playing .postheader__video__overlay {
        visibility: hidden;
        opacity: 0;
        transition: visibility 0s 0.33s, opacity 0.33s linear; }
      .pageheader--post .postheader__video iframe {
        width: 100%;
        position: absolute;
        top: 0;
        height: 100%;
        left: 0; }
      .pageheader--post .postheader__video h1 {
        position: absolute;
        bottom: 0;
        color: #fff;
        width: 100%;
        margin-bottom: 1.25em; }
        .pageheader--post .postheader__video h1 span {
          display: block; }
      .pageheader--post .postheader__video .pageheader__number {
        position: absolute;
        top: 0;
        right: 0;
        color: #fff;
        padding: 15px;
        z-index: 20; }
      .pageheader--post .postheader__video + p {
        border-bottom: solid 1px #000;
        padding: 0.5em 0 1em;
        margin: 0; }
    .pageheader--post .postheader__img {
      width: 100%;
      position: relative;
      margin-bottom: 1.5em; }
      .pageheader--post .postheader__img .postheader__img__img {
        width: 100%;
        height: auto;
        display: block; }
    .pageheader--post .pageheader__date {
      margin-bottom: .25em; }
    .pageheader--post h1 {
      max-width: none; }
    .pageheader--post .leader {
      width: 100%;
      max-width: none; }
  .pageheader--person .pageheader__personrole {
    margin-top: 1em;
    margin-bottom: 0; }
  .pageheader--project {
    height: 100vh;
    text-align: center; }
    .pageheader--project .pageheaderbody {
      position: absolute;
      top: 50%;
      z-index: 10;
      transform: translateY(-50%);
      width: 100%; }
      .pageheader--project .pageheaderbody .pageheader__title {
        margin: 0; }
      .pageheader--project .pageheaderbody .pageheader__partner {
        margin: 0; }
      .pageheader--project .pageheaderbody .pageheader__x {
        display: block;
        width: 1.5em;
        height: 1.5em;
        margin: 1em auto;
        background-image: url("img/project_x_black.png");
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain; }
        .pageheader--project .pageheaderbody .pageheader__x--white {
          background-image: url("img/project_x_white.png"); }

.no-touch .has-videoheader .pageheader__img {
  display: none; }

.icon-scroll,
.icon-scroll:before {
  position: absolute;
  left: 50%;
  z-index: 3; }

.icon-scroll {
  width: 30px;
  height: 50px;
  margin-left: -20px;
  bottom: 2em;
  margin-top: -35px;
  box-shadow: inset 0 0 0 1px #fff;
  border-radius: 25px; }

.icon-scroll:before {
  content: '';
  width: 6px;
  height: 6px;
  background: #fff;
  margin-left: -3px;
  top: 6px;
  border-radius: 3px;
  -webkit-animation: scrollmouse 1.5s infinite;
  -moz-animation: scrollmouse 1.5s infinite;
  animation: scrollmouse 1.5s infinite; }

@-webkit-keyframes scrollmouse {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    transform: translateY(35px); } }
@-moz-keyframes scrollmouse {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    transform: translateY(35px); } }
@keyframes scrollmouse {
  0% {
    opacity: 1; }
  100% {
    opacity: 0;
    transform: translateY(35px); } }
/*  ==========================================================================
	content -- layout/layout.scss
	========================================================================== */
.content {
  margin: 0 auto;
  box-sizing: border-box; }
  @media only screen and (min-width: 550px) {
    .content {
      width: 83.4%;
      padding: 0 0.5em; } }
  @media only screen and (min-width: 700px) {
    .content {
      padding: 0 0.625em;
      width: 66.8%; } }
  @media only screen and (min-width: 1000px) {
    .content {
      width: 60%;
      padding: 0 0.75em; } }
  @media only screen and (min-width: 1200px) {
    .content {
      width: 50%; } }

/*  ==========================================================================
	posts -- layout/layout.scss
	========================================================================== */
.posts {
  margin-top: 0.5em;
  margin-bottom: -1.5em; }

.post {
  overflow: hidden;
  margin-bottom: 1.5em;
  position: relative;
  border-top: 1px solid #000; }
  .post .post__link {
    position: relative;
    z-index: 1; }
    .post .post__link .linkline {
      background-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, black 50%, black 100%); }
    .post .post__link .post__date {
      margin-top: .5em;
      margin-bottom: .25em; }

.post__categories {
  margin-bottom: 0.5em; }

.post__heading {
  margin: 0 0 0.5em;
  line-height: 1.2; }

.post__tags {
  padding: 0 0.66em 0.66em 0;
  position: absolute;
  top: 0;
  left: 0;
  background: #888;
  z-index: 2;
  -webkit-transition: box-shadow 150ms ease-out 0s;
  -moz-transition: box-shadow 150ms ease-out 0s;
  transition: box-shadow 150ms ease-out 0s; }
  .post__tags:hover {
    -webkit-box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.25);
    box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.25); }

/*  ==========================================================================
	projects -- layout/layout.scss
	========================================================================== */
.projects {
  margin: 0; }
  .projects .gd-u {
    padding: 0; }

.project {
  position: relative; }
  .project .projectimg {
    width: 100%;
    padding-top: 100%;
    position: relative; }
    .project .projectimg .projectimg__img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center; }
  .project .project__hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff; }
  .project .project__content {
    position: absolute;
    padding: 2em;
    box-sizing: border-box;
    text-align: center;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%); }
    .project .project__content .project__heading {
      margin: 0; }
    .project .project__content .project__partner {
      margin: 0; }
  .project .project__hover,
  .project .project__content {
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    -webkit-transition: opacity 0.5s ease-in-out; }
  .project:hover .project__hover {
    opacity: 0.5; }
  .project:hover .project__content {
    opacity: 1; }

/*  ==========================================================================
	paging -- layout/layout.scss
	========================================================================== */
.paging {
  position: relative;
  padding: 0;
  margin-bottom: 0;
  border-top: solid 1px rgba(0, 0, 0, 0.15); }
  @media only screen and (min-width: 700px) {
    .paging {
      border-bottom: solid 1px rgba(0, 0, 0, 0.15); }
      .paging .paging__bd {
        border-bottom: solid 1px rgba(0, 0, 0, 0.15);
        border-top: solid 1px rgba(0, 0, 0, 0.15); } }
  .paging .paging__numbers {
    display: none; }
    .paging .paging__numbers a,
    .paging .paging__numbers span {
      padding: 1.5em;
      border: none;
      border-right: solid 1px rgba(0, 0, 0, 0.15);
      display: block;
      float: left;
      min-width: 1.4em;
      text-align: center; }
    .paging .paging__numbers .current {
      color: #888; }
    @media only screen and (min-width: 700px) {
      .paging .paging__numbers {
        display: block; } }
  .paging .paging__nextprev {
    text-align: center;
    padding: 0.5em; }
    .paging .paging__nextprev .btn {
      margin-bottom: 0; }
    @media only screen and (min-width: 700px) {
      .paging .paging__nextprev {
        position: absolute;
        padding: 0;
        right: 0;
        top: 50%;
        margin-top: -1.75em; } }

/*  ==========================================================================
    searchpopup -- layout/layout.scss
    ========================================================================== */
.searchpopup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 1em;
  left: 100%;
  right: 0;
  bottom: 0;
  color: #fff;
  text-align: center;
  z-index: 99;
  opacity: 0;
  -webkit-transition: opacity 250ms ease-out 0ms, top 250ms ease-out 0ms, left 0ms linear 250ms;
  -moz-transition: opacity 250ms ease-out 0ms, top 250ms ease-out 0ms, left 0ms linear 250ms;
  transition: opacity 250ms ease-out 0ms, top 250ms ease-out 0ms, left 0ms linear 250ms; }
  .popupsearch--open .searchpopup {
    top: 0;
    left: 0;
    opacity: 1;
    -webkit-transition: opacity 500ms ease-out 250ms, top 500ms ease-out 250ms, left 0ms linear 0ms;
    -moz-transition: opacity 500ms ease-out 250ms, top 500ms ease-out 250ms, left 0ms linear 0ms;
    transition: opacity 500ms ease-out 250ms, top 500ms ease-out 250ms, left 0ms linear 0ms; }
  .searchpopup:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-right: -0.25em;
    /* Adjusts for spacing */ }
  .searchpopup .searchpopupform {
    width: 85.72%;
    display: inline-block;
    vertical-align: middle; }
    @media only screen and (min-width: 700px) {
      .searchpopup .searchpopupform {
        width: 75%; } }
    .searchpopup .searchpopupform .field__label {
      display: block;
      font-weight: bold;
      margin: 0 0 0.75em; }
    .searchpopup .searchpopupform .field__note {
      margin: 0.75em 0 0; }
      .searchpopup .searchpopupform .field__note strong {
        cursor: pointer; }
    .searchpopup .searchpopupform .field__input {
      position: relative;
      padding: 0.66em 3.5em 0.66em 0.66em;
      border: solid 1px #fff;
      font-size: 1.5em;
      -webkit-border-radius: 2px;
      -moz-border-radius: 2px;
      border-radius: 2px; }
      @media only screen and (min-width: 550px) {
        .searchpopup .searchpopupform .field__input {
          font-size: 1.75em; } }
      @media only screen and (min-width: 700px) {
        .searchpopup .searchpopupform .field__input {
          font-size: 2em; } }
      .searchpopup .searchpopupform .field__input input {
        background: none;
        border: none;
        padding: 0;
        color: #fff;
        width: 100%;
        outline: none;
        text-align: left; }

.searchpopupoverlay {
  position: fixed;
  z-index: 98;
  top: 0;
  left: 100%;
  right: 0;
  bottom: 0;
  background: #000;
  opacity: 0;
  -webkit-transition: opacity 500ms ease-out 5ms, left 0ms linear 0ms;
  -moz-transition: opacity 500ms ease-out 5ms, left 0ms linear 0ms;
  transition: opacity 500ms ease-out 5ms, left 0ms linear 0ms; }
  .popupsearch--open .searchpopupoverlay {
    left: 0;
    opacity: 0.88;
    -webkit-transition: opacity 500ms ease-out 5ms, left 0ms linear 0ms;
    -moz-transition: opacity 500ms ease-out 5ms, left 0ms linear 0ms;
    transition: opacity 500ms ease-out 5ms, left 0ms linear 0ms; }

.searchpopupbtn {
  width: 1.75em;
  padding: 0.66em;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0; }
  .searchpopupbtn:hover {
    background: #fff;
    color: #888; }
  .searchpopupbtn .fa {
    padding: 0; }

/*  ==========================================================================
	Search results page -- layout/layout.scss
	========================================================================== */
.searchpagefield {
  position: relative; }
  .searchpagefield input {
    background: none;
    padding-right: 4em;
    position: relative;
    z-index: 1; }

.searchpagesubmit {
  padding: 1em 1.25em;
  border: none;
  position: absolute;
  z-index: 2;
  top: 1px;
  right: 1px;
  background: none;
  text-align: center; }
  .searchpagesubmit:hover {
    background: #888; }

/*  ==========================================================================
	people -- layout/layout.scss
	========================================================================== */
/* Person details / Contact details */
.persondetails {
  text-align: center; }

/* Person grid group */
.people {
  margin-bottom: -2em; }

/* Person grid item */
.person {
  text-align: center;
  position: relative;
  max-width: 300px;
  margin: 0 auto 2em auto; }
  .person .person__img {
    margin: 0 auto 1em auto;
    width: 75%;
    padding-top: 75%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
    -webkit-transition: box-shadow 150ms ease-out 0s;
    -moz-transition: box-shadow 150ms ease-out 0s;
    transition: box-shadow 150ms ease-out 0s; }
  .person .person__link {
    display: block;
    cursor: pointer; }
    .person .person__link:hover .person__img {
      -webkit-box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.15);
      -moz-box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.15);
      box-shadow: 10px 10px 25px rgba(0, 0, 0, 0.15); }
  .person .person__content {
    position: relative;
    z-index: 10;
    padding: 1em 0.5em; }
    .person .person__content h3 {
      margin: 0; }
    .person .person__content p {
      margin: 0; }

/*  ==========================================================================
	Homepage / Front Page
	========================================================================== */
.homeslideswrapper {
  position: relative;
  height: 92.5vh;
  background: #000; }

.homeslides {
  max-width: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }
  .homeslides .owl-controls {
    position: absolute;
    top: 0em;
    left: 0;
    right: 0;
    text-align: center; }
  .homeslides .homeslide {
    position: relative;
    width: 100%;
    height: 92.5vh; }
    .homeslides .homeslide .homeslideimg,
    .homeslides .homeslide .homeslidevid {
      position: absolute;
      z-index: 1;
      top: 0;
      left: 0;
      padding: 0;
      height: 100%;
      width: 100%;
      overflow: hidden; }
    .homeslides .homeslide .homeslideimg {
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat; }
    .homeslides .homeslide .homeslidevid iframe {
      width: 100vw;
      height: 56.25vw;
      /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
      min-height: 100vh;
      min-width: 177.77vh;
      /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none; }
    .homeslides .homeslide .homeslide__content {
      color: #FFF;
      width: 100%;
      position: absolute;
      top: 0;
      left: 0;
      z-index: 2; }
      @media only screen and (min-width: 550px) {
        .homeslides .homeslide .homeslide__content {
          display: inline-block; } }
      .homeslides .homeslide .homeslide__content--right .homeslide__heading {
        float: right; }
      .homeslides .homeslide .homeslide__content--top {
        top: 30%; }
        @media only screen and (min-width: 550px) {
          .homeslides .homeslide .homeslide__content--top {
            top: 25%; } }
        @media only screen and (min-width: 1000px) {
          .homeslides .homeslide .homeslide__content--top {
            top: 20%; } }
      .homeslides .homeslide .homeslide__content--bottom {
        top: auto;
        bottom: 20%; }
        @media only screen and (min-width: 550px) {
          .homeslides .homeslide .homeslide__content--bottom {
            bottom: 10%; } }
      .homeslides .homeslide .homeslide__content--center {
        top: 50%;
        -webkit-transform: translate(0, -50%);
        -moz-transform: translate(0, -50%);
        transform: translate(0, -50%); }
      .homeslides .homeslide .homeslide__content .homeslide__heading {
        margin: 0 auto; }
        @media only screen and (max-width: 549px) {
          .homeslides .homeslide .homeslide__content .homeslide__heading {
            font-size: 1.5em; } }
        .homeslides .homeslide .homeslide__content .homeslide__heading > span {
          display: block;
          opacity: 0;
          transform-origin: left top;
          -webkit-transform: translate(0, 0);
          -moz-transform: translate(0, 0);
          transform: translate(0, 0);
          -webkit-transition: opacity 1000ms cubic-bezier(0.645, 0.045, 0.355, 1), -webkit-transform 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
          -moz-transition: opacity 1000ms cubic-bezier(0.645, 0.045, 0.355, 1), -moz-transform 250ms cubic-bezier(0.645, 0.045, 0.355, 1);
          transition: opacity 1000ms cubic-bezier(0.645, 0.045, 0.355, 1), transform 250ms cubic-bezier(0.645, 0.045, 0.355, 1); }
          .homeslides .homeslide .homeslide__content .homeslide__heading > span:nth-child(1) {
            -webkit-transition-delay: 0ms;
            -moz-transition-delay: 0ms;
            transition-delay: 0ms; }
          .homeslides .homeslide .homeslide__content .homeslide__heading > span:nth-child(2) {
            -webkit-transition-delay: 50ms;
            -moz-transition-delay: 50ms;
            transition-delay: 50ms; }
          .homeslides .homeslide .homeslide__content .homeslide__heading > span:nth-child(3) {
            -webkit-transition-delay: 100ms;
            -moz-transition-delay: 100ms;
            transition-delay: 100ms; }
          .homeslides .homeslide .homeslide__content .homeslide__heading > span:nth-child(4) {
            -webkit-transition-delay: 150ms;
            -moz-transition-delay: 150ms;
            transition-delay: 150ms; }
          .homeslides .homeslide .homeslide__content .homeslide__heading > span:nth-child(5) {
            -webkit-transition-delay: 200ms;
            -moz-transition-delay: 200ms;
            transition-delay: 200ms; }
          .homeslides .homeslide .homeslide__content .homeslide__heading > span:nth-child(6) {
            -webkit-transition-delay: 250ms;
            -moz-transition-delay: 250ms;
            transition-delay: 250ms; }
          .homeslides .homeslide .homeslide__content .homeslide__heading > span:nth-child(7) {
            -webkit-transition-delay: 300ms;
            -moz-transition-delay: 300ms;
            transition-delay: 300ms; }
          .homeslides .homeslide .homeslide__content .homeslide__heading > span:nth-child(8) {
            -webkit-transition-delay: 350ms;
            -moz-transition-delay: 350ms;
            transition-delay: 350ms; }
          .homeslides .homeslide .homeslide__content .homeslide__heading > span:nth-child(9) {
            -webkit-transition-delay: 400ms;
            -moz-transition-delay: 400ms;
            transition-delay: 400ms; }
          .homeslides .homeslide .homeslide__content .homeslide__heading > span:nth-child(10) {
            -webkit-transition-delay: 450ms;
            -moz-transition-delay: 450ms;
            transition-delay: 450ms; }
          .homeslides .homeslide .homeslide__content .homeslide__heading > span:nth-child(11) {
            -webkit-transition-delay: 500ms;
            -moz-transition-delay: 500ms;
            transition-delay: 500ms; }
          .homeslides .homeslide .homeslide__content .homeslide__heading > span:nth-child(12) {
            -webkit-transition-delay: 550ms;
            -moz-transition-delay: 550ms;
            transition-delay: 550ms; }
          .homeslides .homeslide .homeslide__content .homeslide__heading > span:nth-child(13) {
            -webkit-transition-delay: 575ms;
            -moz-transition-delay: 575ms;
            transition-delay: 575ms; }
          .homeslides .homeslide .homeslide__content .homeslide__heading > span:nth-child(14) {
            -webkit-transition-delay: 600ms;
            -moz-transition-delay: 600ms;
            transition-delay: 600ms; }
          .homeslides .homeslide .homeslide__content .homeslide__heading > span:nth-child(15) {
            -webkit-transition-delay: 625ms;
            -moz-transition-delay: 625ms;
            transition-delay: 625ms; }
  .homeslides .owl-item.active .homeslide__heading > span {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    transform: translate(0, 0); }
  .homeslides .owl-dots {
    text-align: center;
    display: inline-block; }
  .homeslides.owl-carousel .homeslide__content {
    opacity: 1; }
  .homeslides.owl-carousel .owl-dots {
    position: absolute;
    bottom: 1em;
    left: 0;
    right: 0;
    text-align: center;
    margin: 0 !important; }
  .homeslides.owl-carousel .owl-dot {
    display: inline-block;
    margin: 0;
    color: #888; }
    .homeslides.owl-carousel .owl-dot:focus {
      outline: none; }
    .homeslides.owl-carousel .owl-dot span {
      display: block;
      width: 0.5em;
      height: 0.5em;
      margin: 0.25em;
      background: #FFF;
      border-radius: 50%;
      position: relative;
      opacity: 0.5; }
      .homeslides.owl-carousel .owl-dot span:before {
        font-size: 11px;
        line-height: 1em;
        display: block;
        position: absolute;
        top: 50%;
        margin-top: -.5em;
        left: 0;
        right: 0;
        text-align: center; }
    .homeslides.owl-carousel .owl-dot:first-child span {
      border-left: none; }
    .homeslides.owl-carousel .owl-dot:hover span {
      opacity: 0.75; }
    .homeslides.owl-carousel .owl-dot.active span {
      opacity: 1; }

/*  ==========================================================================
	blog & single -- layout/layout.scss
	========================================================================== */
.blog,
.archive,
.single {
  overflow-x: auto; }
  .blog .gd-g--rowreverse--lg,
  .archive .gd-g--rowreverse--lg,
  .single .gd-g--rowreverse--lg {
    /* IE only  */ }
@media only screen and (-ms-high-contrast: active) and (min-width: 1000px), only screen and (-ms-high-contrast: none) and (min-width: 1000px) {
  .blog .gd-g--rowreverse--lg,
  .archive .gd-g--rowreverse--lg,
  .single .gd-g--rowreverse--lg {
    flex-direction: row !important;
    -webkit-flex-direction: row !important; } }

  .blog .main__posts,
  .archive .main__posts,
  .single .main__posts {
    padding-top: 1.2em;
    padding-bottom: 7%; }
    @media only screen and (min-width: 700px) {
      .blog .main__posts,
      .archive .main__posts,
      .single .main__posts {
        padding-top: 1.7em;
        padding-bottom: 0; }
        .blog .main__posts:after,
        .archive .main__posts:after,
        .single .main__posts:after {
          content: "";
          width: 100%;
          height: 7%;
          position: relative;
          display: block; } }
    @media only screen and (min-width: 1000px) {
      .blog .main__posts,
      .archive .main__posts,
      .single .main__posts {
        position: sticky;
        position: -webkit-sticky;
        top: 0;
        height: 500px;
        height: 100vh;
        overflow: scroll;
        /* Hide scrollbar for IE and Edge */
        -ms-overflow-style: none;
        /* Hide scrollbar for firefox */
        scrollbar-width: none;
        /* Hide scrollbar for Chrome, Safari and Opera */
        /* IE only -- as position sticky doesnt work */ }
        .blog .main__posts::-webkit-scrollbar,
        .archive .main__posts::-webkit-scrollbar,
        .single .main__posts::-webkit-scrollbar {
          display: none; } }
  @media only screen and (min-width: 1000px) and (-ms-high-contrast: active), only screen and (min-width: 1000px) and (-ms-high-contrast: none) {
    .blog .main__posts,
    .archive .main__posts,
    .single .main__posts {
      position: fixed;
      left: 2.5%; } }

  .blog .main__single,
  .archive .main__single,
  .single .main__single {
    padding-top: 1.2em; }
    @media only screen and (min-width: 700px) {
      .blog .main__single,
      .archive .main__single,
      .single .main__single {
        padding-top: 1.7em; } }
    @media only screen and (min-width: 1000px) {
      .blog .main__single,
      .archive .main__single,
      .single .main__single {
        padding-bottom: 7%;
        /* IE 10 only */ } }
  @media only screen and (min-width: 1000px) and (-ms-high-contrast: active), only screen and (min-width: 1000px) and (-ms-high-contrast: none) {
    .blog .main__single,
    .archive .main__single,
    .single .main__single {
      position: relative;
      left: 50%; } }

  .blog .singlepost .singlepost__content ul,
  .archive .singlepost .singlepost__content ul,
  .single .singlepost .singlepost__content ul {
    margin-left: 1.5em; }
  .blog .singlepost .singlepost__content img,
  .archive .singlepost .singlepost__content img,
  .single .singlepost .singlepost__content img {
    width: 100%;
    height: auto; }
  .blog .singlepost .singlepost__content iframe,
  .archive .singlepost .singlepost__content iframe,
  .single .singlepost .singlepost__content iframe {
    max-width: 100%; }
  .blog .singlepost .singlepost__content .wp-caption,
  .archive .singlepost .singlepost__content .wp-caption,
  .single .singlepost .singlepost__content .wp-caption {
    width: 100% !important; }
  .blog .singlepost .singlepost__content .wp-caption-text,
  .archive .singlepost .singlepost__content .wp-caption-text,
  .single .singlepost .singlepost__content .wp-caption-text {
    color: #888;
    font-size: 12px; }
    @media only screen and (min-width: 550px) {
      .blog .singlepost .singlepost__content .wp-caption-text,
      .archive .singlepost .singlepost__content .wp-caption-text,
      .single .singlepost .singlepost__content .wp-caption-text {
        font-size: 12px; } }
    @media only screen and (min-width: 700px) {
      .blog .singlepost .singlepost__content .wp-caption-text,
      .archive .singlepost .singlepost__content .wp-caption-text,
      .single .singlepost .singlepost__content .wp-caption-text {
        font-size: 12px; } }
    @media only screen and (min-width: 1000px) {
      .blog .singlepost .singlepost__content .wp-caption-text,
      .archive .singlepost .singlepost__content .wp-caption-text,
      .single .singlepost .singlepost__content .wp-caption-text {
        font-size: 12px; } }
    @media only screen and (min-width: 1200px) {
      .blog .singlepost .singlepost__content .wp-caption-text,
      .archive .singlepost .singlepost__content .wp-caption-text,
      .single .singlepost .singlepost__content .wp-caption-text {
        font-size: 12px; } }
    @media only screen and (min-width: 1400px) {
      .blog .singlepost .singlepost__content .wp-caption-text,
      .archive .singlepost .singlepost__content .wp-caption-text,
      .single .singlepost .singlepost__content .wp-caption-text {
        font-size: 13px; } }
    @media only screen and (min-width: 1600px) {
      .blog .singlepost .singlepost__content .wp-caption-text,
      .archive .singlepost .singlepost__content .wp-caption-text,
      .single .singlepost .singlepost__content .wp-caption-text {
        font-size: 13px; } }

.blog .main__single {
  display: none; }
  @media only screen and (min-width: 1000px) {
    .blog .main__single {
      display: inline-block; } }

/*  ==========================================================================
    single weather report -- layout/layout.scss
	========================================================================== */
.single-weather-report .postheader__video.playing .isobars,
.post-type-archive-weather-report .postheader__video.playing .isobars {
  opacity: 0; }
.single-weather-report .posts-leader,
.single-weather-report .postheader__video,
.post-type-archive-weather-report .posts-leader,
.post-type-archive-weather-report .postheader__video {
  overflow: hidden; }
  .single-weather-report .posts-leader .isobars,
  .single-weather-report .postheader__video .isobars,
  .post-type-archive-weather-report .posts-leader .isobars,
  .post-type-archive-weather-report .postheader__video .isobars {
    background-position: center bottom;
    background-image: url("img/isobars.svg");
    background-size: cover;
    display: block;
    position: fixed;
    width: 75%;
    left: 10%;
    z-index: 10;
    top: 0%;
    pointer-events: none;
    padding: 28% 0 0;
    opacity: .45;
    -webkit-transition: opacity 330ms ease-out 0ms;
    -moz-transition: opacity 330ms ease-out 0ms;
    transition: opacity 330ms ease-out 0ms; }
.single-weather-report .main__single,
.post-type-archive-weather-report .main__single {
  padding-top: 0; }
  .single-weather-report .main__single .postheader,
  .post-type-archive-weather-report .main__single .postheader {
    padding-top: 1.2em; }
    @media only screen and (min-width: 700px) {
      .single-weather-report .main__single .postheader,
      .post-type-archive-weather-report .main__single .postheader {
        padding-top: 1.7em; } }
.single-weather-report .main__posts,
.post-type-archive-weather-report .main__posts {
  padding-top: 0; }
  .single-weather-report .main__posts .posts-leader,
  .post-type-archive-weather-report .main__posts .posts-leader {
    padding-top: 1.2em; }
    @media only screen and (min-width: 700px) {
      .single-weather-report .main__posts .posts-leader,
      .post-type-archive-weather-report .main__posts .posts-leader {
        padding-top: 1.7em; } }
.single-weather-report .pageheader--post .postheader__video h1,
.single-weather-report .icon--weather-play,
.single-weather-report .single-weather-report .icon--weather-report,
.single-weather-report .posts-leader h1,
.post-type-archive-weather-report .pageheader--post .postheader__video h1,
.post-type-archive-weather-report .icon--weather-play,
.post-type-archive-weather-report .single-weather-report .icon--weather-report,
.post-type-archive-weather-report .posts-leader h1 {
  z-index: 20; }
.single-weather-report .posts-leader p,
.post-type-archive-weather-report .posts-leader p {
  position: relative;
  z-index: 20; }
.single-weather-report .posts-leader,
.post-type-archive-weather-report .posts-leader {
  position: sticky;
  border-bottom: 1px solid #000; }
  @media only screen and (min-width: 1000px) {
    .single-weather-report .posts-leader,
    .post-type-archive-weather-report .posts-leader {
      height: 18em; } }
.single-weather-report .posts-leader,
.single-weather-report .postheader,
.post-type-archive-weather-report .posts-leader,
.post-type-archive-weather-report .postheader {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 35;
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.75); }
.single-weather-report .icon--weather-report,
.post-type-archive-weather-report .icon--weather-report {
  height: 7em;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
  z-index: 20; }
.single-weather-report .icon--weather-play,
.post-type-archive-weather-report .icon--weather-play {
  height: 7em;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer; }
.single-weather-report .post:first-of-type,
.post-type-archive-weather-report .post:first-of-type {
  border: none; }
.single-weather-report .post .post__link .linkline,
.post-type-archive-weather-report .post .post__link .linkline {
  background-image: linear-gradient(90deg, rgba(255, 221, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, #fd0 50%, #fd0 100%); }
.single-weather-report .reportquote,
.post-type-archive-weather-report .reportquote {
  margin-bottom: 2em; }
.single-weather-report q,
.post-type-archive-weather-report q {
  display: block; }
  .single-weather-report q::before, .single-weather-report q::after,
  .post-type-archive-weather-report q::before,
  .post-type-archive-weather-report q::after {
    display: block;
    font-size: 3em; }
  .single-weather-report q::before,
  .post-type-archive-weather-report q::before {
    content: '\201C';
    line-height: .5; }
  .single-weather-report q::after,
  .post-type-archive-weather-report q::after {
    content: '\201D';
    line-height: .5;
    margin-top: .5em; }

/*  ==========================================================================
	about page template -- layout/layout.scss
	========================================================================== */
.page-template-template--about {
  background: #16130e; }
  .page-template-template--about .pageheader {
    overflow: visible; }
    .page-template-template--about .pageheader .pageheader__title {
      display: none; }
    .page-template-template--about .pageheader .pageheader__leader {
      margin-top: 0; }
    .page-template-template--about .pageheader .pageheader__bg {
      background: transparent;
      overflow: visible; }
      .page-template-template--about .pageheader .pageheader__bg .pageheader__img {
        width: 100%;
        display: block; }
  .page-template-template--about .flex {
    position: relative;
    z-index: 2; }
  .page-template-template--about .main {
    background: #16130e;
    position: relative; }
    .page-template-template--about .main--footerimg {
      padding-bottom: 40%; }
    .page-template-template--about .main .flex--content,
    .page-template-template--about .main .flex--cols,
    .page-template-template--about .main .flex--grid,
    .page-template-template--about .main .flex--faqs,
    .page-template-template--about .main .flex--imgs,
    .page-template-template--about .main .flex--quote,
    .page-template-template--about .main .flex--cta {
      color: #c7c5bf; }
      .page-template-template--about .main .flex--content strong,
      .page-template-template--about .main .flex--cols strong,
      .page-template-template--about .main .flex--grid strong,
      .page-template-template--about .main .flex--faqs strong,
      .page-template-template--about .main .flex--imgs strong,
      .page-template-template--about .main .flex--quote strong,
      .page-template-template--about .main .flex--cta strong {
        color: #fff; }
    .page-template-template--about .main .flex--faqs .faqs {
      border-top-color: rgba(199, 197, 191, 0.5); }
      .page-template-template--about .main .flex--faqs .faqs .faq {
        border-bottom-color: rgba(199, 197, 191, 0.5); }
    .page-template-template--about .main .linethrough {
      color: #c7c5bf; }
      .page-template-template--about .main .linethrough:after {
        border-color: rgba(199, 197, 191, 0.5); }
      .page-template-template--about .main .linethrough span {
        background: #16130e; }
    .page-template-template--about .main .main__bg {
      position: absolute;
      width: 100%;
      bottom: 700px;
      height: auto;
      z-index: 1; }
      @media only screen and (min-width: 550px) {
        .page-template-template--about .main .main__bg {
          bottom: 0; } }
      .page-template-template--about .main .main__bg .main__bg__image {
        width: 100%;
        display: block; }

/*  ==========================================================================
	contact page template -- layout/layout.scss
	========================================================================== */
@media only screen and (min-width: 1000px) {
  .page-template-template--contact .pageheader--contact .pageheader__title {
    margin-bottom: 0; } }
@media only screen and (min-width: 1000px) and (min-height: 700px) {
  .page-template-template--contact .pageheader--contact {
    height: 100vh;
    box-sizing: border-box; }
    .page-template-template--contact .pageheader--contact .pageheaderbody {
      height: 100%;
      padding: 0; }
      .page-template-template--contact .pageheader--contact .pageheaderbody .pageheader__bd {
        height: 100%; }
        .page-template-template--contact .pageheader--contact .pageheaderbody .pageheader__bd .pageheader__gd-g,
        .page-template-template--contact .pageheader--contact .pageheaderbody .pageheader__bd .pageheader__title__wrap {
          height: 100%; }
        .page-template-template--contact .pageheader--contact .pageheaderbody .pageheader__bd .pageheader__title {
          position: relative;
          top: 50%;
          transform: translateY(-50%);
          -webkit-transform: translateY(-50%); }
        .page-template-template--contact .pageheader--contact .pageheaderbody .pageheader__bd .pageheader__contact__wrap {
          position: relative; }
          .page-template-template--contact .pageheader--contact .pageheaderbody .pageheader__bd .pageheader__contact__wrap .contact__social {
            position: absolute;
            bottom: 0;
            width: 100%; }
            .page-template-template--contact .pageheader--contact .pageheaderbody .pageheader__bd .pageheader__contact__wrap .contact__social .gd-u {
              margin-left: auto; } }
.page-template-template--contact .contact__locations .gd-u {
  margin-bottom: 2em; }
.page-template-template--contact .contact__locations .contact__location .contact__location__title {
  margin-top: 0;
  margin-bottom: 1em; }
.page-template-template--contact .contact__email .contact__email__title {
  margin-top: 0; }
.page-template-template--contact .contact__social .contact__social__heading {
  margin-top: 0; }

/*  ==========================================================================
	cookie notice -- layout/layout.scss
	========================================================================== */
#cookie-law-info-bar a {
  text-decoration: none; }

/*  ==========================================================================
	password protection -- layout/layout.scss
	========================================================================== */
.password-protected {
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 45;
  display: flex;
  align-items: center; }
  .password-protected .linkline {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.3) 100%); }
  .password-protected .form-field {
    position: relative;
    padding-bottom: 1em;
    max-width: 28em;
    margin: 0 auto; }
    .password-protected .form-field .fa-lock-alt {
      position: absolute;
      z-index: 99;
      top: 0.55em;
      left: 0.85em;
      font-size: 1.5em; }
    .password-protected .form-field br {
      display: none; }
  .password-protected h3 {
    margin-top: 0; }
  .password-protected input[type=password] {
    background-color: #fff;
    border: none;
    border-radius: 3em;
    position: relative;
    letter-spacing: 1em;
    padding-left: 4em;
    padding-right: 11em; }
  .password-protected .fal {
    color: #000; }
  .password-protected input[type=submit],
  .password-protected .btn.submit {
    position: absolute;
    top: 0.2em;
    right: -0.3em;
    z-index: 99;
    background-image: none;
    background-color: #000;
    color: #fff;
    padding: 0.8em 1.75em; }
  .password-protected .password-protected-error {
    color: #FB832C; }

.main__posts__scroll {
  margin-top: 0.5em; }

/*  ==========================================================================
	siteheader
	========================================================================== */
.siteheader {
  top: 0;
  left: 0;
  width: 100%; }
  .siteheader .siteheader__wrap {
    position: fixed;
    z-index: 50;
    width: 100%;
    mix-blend-mode: difference; }
  .siteheader .siteheader__logo {
    z-index: 101;
    height: 18px;
    width: 190px;
    position: absolute;
    top: 1em;
    left: 7%; }
    @media only screen and (min-width: 700px) {
      .siteheader .siteheader__logo {
        left: 7%;
        top: 1.5em; } }
    @media only screen and (min-width: 1000px) {
      .siteheader .siteheader__logo {
        left: 5%; } }
    .siteheader .siteheader__logo a {
      color: #000;
      text-decoration: none;
      display: block;
      position: relative; }
      .siteheader .siteheader__logo a .siteheader__logo__svg {
        position: absolute;
        height: 100%;
        width: 100%;
        display: block;
        -webkit-transition: opacity 250ms ease-out 0ms;
        -moz-transition: opacity 250ms ease-out 0ms;
        transition: opacity 250ms ease-out 0ms; }
  .siteheader .mobtools {
    color: #fff;
    -webkit-transition: color 250ms ease-out 0ms;
    -moz-transition: color 250ms ease-out 0ms;
    transition: color 250ms ease-out 0ms; }
    @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
      .siteheader .mobtools {
        text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); } }
  @media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .siteheader--pos .siteheader .mobtools {
      color: #000;
      text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5); } }

/*  ==========================================================================
	mobnav
	========================================================================== */
.mobnav {
  position: fixed;
  z-index: 100;
  right: 0;
  width: 100%;
  max-height: 100vh;
  overflow-x: hidden;
  overflow-y: scroll;
  height: 0;
  opacity: 0;
  background: #fff;
  transition: height 250ms ease-in-out, opacity 50ms ease-in-out 250ms;
  -webkit-transition: height 250ms ease-in-out, opacity 50ms ease-in-out 250ms;
  -webkit-box-shadow: 0px 0px 45px 5px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0px 0px 45px 5px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 0px 45px 5px rgba(0, 0, 0, 0.05); }
  @media only screen and (min-width: 1000px) {
    .mobnav {
      width: 50%; } }
  .mobnav .mobtools {
    z-index: 10;
    color: #000; }
    @media only screen and (min-width: 1000px) {
      .mobnav .mobtools {
        right: 5%; } }
  .mobnav .mobnav__locations {
    margin-top: 2em;
    margin-bottom: -2em; }
    @media only screen and (min-width: 550px) {
      .mobnav .mobnav__locations {
        margin-top: 0; } }
    .mobnav .mobnav__locations .mobnav__location {
      margin-bottom: 2em;
      opacity: 0;
      -webkit-transition: opacity 250ms ease-in-out 200ms;
      -moz-transition: opacity 250ms ease-in-out 200ms;
      transition: opacity 250ms ease-in-out 200ms; }
      .mobnav .mobnav__locations .mobnav__location:nth-child(2) {
        transition-delay: 300ms; }
      .mobnav .mobnav__locations .mobnav__location:nth-child(3) {
        transition-delay: 400ms; }
      .mobnav .mobnav__locations .mobnav__location:nth-child(4) {
        transition-delay: 500ms; }
      .mobnav .mobnav__locations .mobnav__location:nth-child(5) {
        transition-delay: 600ms; }
      .mobnav .mobnav__locations .mobnav__location:nth-child(6) {
        transition-delay: 700ms; }
      .mobnav .mobnav__locations .mobnav__location .mobnav__location__title {
        margin-top: 0; }
  .mobnav .mobnav__footer {
    margin-top: 2em; }
    @media only screen and (min-width: 550px) {
      .mobnav .mobnav__footer {
        margin-top: 4em; } }
  .mobnav .mobnav__social {
    width: 2em;
    height: 2em;
    text-align: center;
    border-radius: 50%;
    line-height: 2;
    display: inline-block;
    font-size: 1em;
    margin-right: 0.25em;
    background: #000;
    color: #fff;
    opacity: 0;
    position: relative;
    -webkit-transition: opacity 250ms ease-in-out 600ms;
    -moz-transition: opacity 250ms ease-in-out 600ms;
    transition: opacity 250ms ease-in-out 600ms; }
    @media only screen and (min-width: 700px) {
      .mobnav .mobnav__social {
        line-height: 2.2; } }
    .mobnav .mobnav__social .fab {
      padding: 0;
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      display: block; }
  .mobnav .mobnav__privacy {
    margin-top: 2em;
    opacity: 0;
    -webkit-transition: opacity 250ms ease-in-out 600ms;
    -moz-transition: opacity 250ms ease-in-out 600ms;
    transition: opacity 250ms ease-in-out 600ms; }
    @media only screen and (min-width: 550px) {
      .mobnav .mobnav__privacy {
        margin-top: 0; } }
  .mobnav .mobnav__bd {
    padding-top: 10%;
    padding-bottom: 10%; }
    @media only screen and (min-width: 700px) {
      .mobnav .mobnav__bd {
        padding-top: 12%;
        padding-bottom: 12%; } }
    @media only screen and (min-width: 1000px) {
      .mobnav .mobnav__bd {
        padding-top: 15%;
        padding-bottom: 15%;
        margin: 0 calc(7.14% * 2); } }
  .mobnav .mobnav__main {
    margin-bottom: -1em; }
    .mobnav .mobnav__main li {
      margin-bottom: 0.5em;
      opacity: 0;
      -webkit-transition: opacity 250ms ease-in-out 200ms;
      -moz-transition: opacity 250ms ease-in-out 200ms;
      transition: opacity 250ms ease-in-out 200ms; }
      .mobnav .mobnav__main li:nth-child(2) {
        transition-delay: 300ms; }
      .mobnav .mobnav__main li:nth-child(3) {
        transition-delay: 400ms; }
      .mobnav .mobnav__main li:nth-child(4) {
        transition-delay: 500ms; }
      .mobnav .mobnav__main li:nth-child(5) {
        transition-delay: 600ms; }
      .mobnav .mobnav__main li:nth-child(6) {
        transition-delay: 700ms; }
      .mobnav .mobnav__main li:nth-child(7) {
        transition-delay: 800ms; }
      .mobnav .mobnav__main li:nth-child(8) {
        transition-delay: 900ms; }
      .mobnav .mobnav__main li:nth-child(9) {
        transition-delay: 1000ms; }
      .mobnav .mobnav__main li a .linkline {
        background-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%, black 50%, black 100%); }
  .mobnavopen .mobnav {
    opacity: 1;
    -webkit-transition: height 250ms ease-in-out;
    -moz-transition: height 250ms ease-in-out;
    transition: height 250ms ease-in-out; }
    .mobnavopen .mobnav .mobnav__main li {
      opacity: 1; }
    .mobnavopen .mobnav .mobnav__social,
    .mobnavopen .mobnav .mobnav__privacy {
      opacity: 1; }
    .mobnavopen .mobnav .mobnav__locations .mobnav__location {
      opacity: 1; }

/*  ==========================================================================
	mobtools
	========================================================================== */
.mobtools {
  position: absolute;
  top: 1em;
  margin-right: -1em;
  right: 5.5%; }
  @media only screen and (min-width: 700px) {
    .mobtools {
      right: 3.5%;
      top: 1.5em; } }
  @media only screen and (min-width: 1000px) {
    .mobtools {
      right: 2.75%; } }
  .mobtools .fa {
    padding: 0; }
  .mobtools .mobnav-toggle {
    font-size: 1.5em;
    line-height: 1em; }

/*  ==========================================================================
	flex -- layout/flex.scss
	========================================================================== */
.flex__heading {
  margin: 0 0 .33em; }

.flex--fullwidth + .flex--fullwidth {
  margin-top: -10%; }
  @media only screen and (min-width: 550px) {
    .flex--fullwidth + .flex--fullwidth {
      margin-top: -7%; } }
  @media only screen and (min-width: 1200px) {
    .flex--fullwidth + .flex--fullwidth {
      margin-top: -5%; } }

/*  ==========================================================================
	flexline -- Line
	========================================================================== */
.flexline__line {
  border-top: solid 1px rgba(0, 0, 0, 0.15);
  height: 0; }

/*  ==========================================================================
	flexcontent -- textarea / content
	========================================================================== */
@media only screen and (min-width: 700px) {
  .flexcontent .flex__heading {
    max-width: 10em; }
  .flexcontent img {
    margin-bottom: 0; } }
.flexcontent--doublemargin {
  margin-bottom: 20%; }
  @media only screen and (min-width: 550px) {
    .flexcontent--doublemargin {
      margin-bottom: 14%; } }
  @media only screen and (min-width: 1000px) {
    .flexcontent--doublemargin {
      margin-bottom: 10%; } }

/*  ==========================================================================
	flex--slides -- Full width image / carousel
	========================================================================== */
.flexslides--1 {
  display: block !important; }

.flexslides {
  max-width: 100%;
  overflow: hidden; }
  .flexslides .flexslide {
    height: 100vh;
    position: relative;
    text-align: center; }
    .flexslides .flexslide .flexslideimg {
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      position: absolute;
      z-index: 1;
      top: 0;
      left: 0;
      padding: 0;
      height: 100%;
      width: 100%; }
    .flexslides .flexslide .flexslide__content {
      position: absolute;
      top: 0;
      left: 0;
      z-index: 2;
      width: 100%;
      text-align: left; }
      .flexslides .flexslide .flexslide__content .flexslide__heading {
        max-width: 8em;
        margin: 0; }
      .flexslides .flexslide .flexslide__content--right .flexslide__heading {
        float: right; }
      .flexslides .flexslide .flexslide__content--top {
        top: 10%; }
      .flexslides .flexslide .flexslide__content--bottom {
        top: auto;
        bottom: 10%; }
      .flexslides .flexslide .flexslide__content--center {
        top: 50%;
        -webkit-transform: translate(0, -50%);
        -moz-transform: translate(0, -50%);
        transform: translate(0, -50%); }
  .flexslides.owl-carousel .owl-item .flexslide__content {
    opacity: 0;
    -webkit-transform: translate(0px, 20px);
    -moz-transform: translate(0px, 20px);
    transform: translate(0px, 20px);
    -webkit-transition: opacity 500ms ease-out 250ms, -webkit-transform 500ms ease-out 250ms;
    -moz-transition: opacity 500ms ease-out 250ms,    -moz-transform 500ms ease-out 250ms;
    transition: opacity 500ms ease-out 250ms,         transform 500ms ease-out 250ms; }
  .flexslides.owl-carousel .owl-item.active .flexslide__content {
    opacity: 1;
    -webkit-transform: translate(0px, 0px);
    -moz-transform: translate(0px, 0px);
    transform: translate(0px, 0px); }
  .flexslides.owl-carousel .owl-dots {
    position: absolute;
    bottom: 1em;
    left: 0;
    right: 0;
    text-align: center;
    margin: 0 !important; }
    @media only screen and (min-width: 550px) {
      .flexslides.owl-carousel .owl-dots {
        bottom: 3em; } }
    .flexslides.owl-carousel .owl-dots .owl-dot {
      display: inline-block;
      margin: 0 .5em;
      outline: none; }
      .flexslides.owl-carousel .owl-dots .owl-dot span {
        display: block;
        margin: 0;
        width: .75em;
        height: .75em;
        line-height: 1em;
        border: none;
        border-radius: 50%;
        line-height: 1em;
        position: relative;
        opacity: 1;
        background: transparent;
        border: 1px solid #fff; }
      .flexslides.owl-carousel .owl-dots .owl-dot.active span {
        background: #fff; }

/*  ==========================================================================
	flexgrid -- Content Columns
	========================================================================== */
.flexgrid .gd-g {
  margin-bottom: -3em; }
.flexgrid .flexgrid__item {
  padding-bottom: 3em; }
  .flexgrid .flexgrid__item .flexgrid__item__img {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    padding-top: 70%; }
  .flexgrid .flexgrid__item .flexgrid__item__heading {
    margin: 0;
    max-width: 10em; }

/*  ==========================================================================
	flex--image -- Full width image
	========================================================================== */
.fleximg img {
  width: 100%;
  height: auto; }

/*  ==========================================================================
flex--doubleimage -- Double Image Feature
========================================================================== */
@media only screen and (max-width: 549px) {
  .flexdoubleimage.flex--fullwidth {
    margin-top: 10%; } }
@media only screen and (max-width: 699px) {
  .flexdoubleimage.flex--fullwidth {
    margin-top: 7%; } }
.flexdoubleimage .gd-g {
  margin: 0; }
  .flexdoubleimage .gd-g .gd-u {
    padding: 0; }
.flexdoubleimage .flexdoubleimage__image--small {
  width: 100%;
  height: auto; }
.flexdoubleimage .flexdoubleimage__image--large {
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }
@media only screen and (min-width: 700px) {
  .flexdoubleimage .flexdoubleimage__image--left {
    margin-bottom: 0; } }
@media only screen and (min-width: 700px) {
  .flexdoubleimage .flexdoubleimage__bd {
    margin-left: 14.28%;
    margin-right: 14.28%; } }

/*  ==========================================================================
	flex--images -- Images / Gallery
	========================================================================== */
.flex--imgs .gd-g {
  margin-bottom: -2em; }
.flex--imgs .galleryitem {
  margin-bottom: 2em; }
  .flex--imgs .galleryitem .galleryitem__img {
    width: 100%;
    display: block; }
  .flex--imgs .galleryitem .galleryitem__caption {
    margin-top: 1em; }

/*  ==========================================================================
	flexcols -- Content Columns
	========================================================================== */
.flex--contentcols .content--cols {
  margin-bottom: -2em;
  padding: 0; }
  .flex--contentcols .content--cols .contentcol {
    margin-bottom: 2em; }
  @media only screen and (min-width: 550px) {
    .flex--contentcols .content--cols--2, .flex--contentcols .content--cols--3, .flex--contentcols .content--cols--4 {
      width: 100%; } }
  @media only screen and (min-width: 700px) {
    .flex--contentcols .content--cols--2, .flex--contentcols .content--cols--3, .flex--contentcols .content--cols--4 {
      width: 100%; } }
  @media only screen and (min-width: 1000px) {
    .flex--contentcols .content--cols--2 {
      width: 0 83.4%; }
    .flex--contentcols .content--cols--3, .flex--contentcols .content--cols--4 {
      width: 100%; } }
  @media only screen and (min-width: 1200px) {
    .flex--contentcols .content--cols--2 {
      width: 0 83.4%; }
    .flex--contentcols .content--cols--3, .flex--contentcols .content--cols--4 {
      width: 100%; } }
  @media only screen and (min-width: 1400px) {
    .flex--contentcols .content--cols--2 {
      width: 0 83.4%; }
    .flex--contentcols .content--cols--3 {
      width: 100%; }
    .flex--contentcols .content--cols--4 {
      width: 100%; } }
.flex--contentcols .content:last-child {
  padding-bottom: 0; }

/*  ==========================================================================
	flex--faqs -- FAQs
	========================================================================== */
.faqs {
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  position: relative; }
  .faqs .faq {
    display: block;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.15); }
    .faqs .faq .faq__question {
      margin: 0;
      border-top: none;
      padding: 1em 0 1em 3em;
      position: relative;
      cursor: pointer; }
      .faqs .faq .faq__question:hover {
        color: #888; }
      .faqs .faq .faq__question .fa {
        position: absolute;
        top: 1em;
        left: 1em;
        display: block;
        line-height: 1.2;
        -webkit-transition: -webkit-transform 150ms ease-out 0s;
        -moz-transition: -moz-transform 150ms ease-out 0s;
        transition: transform 150ms ease-out 0s; }
    .faqs .faq .faq__answer {
      height: 0;
      overflow: hidden;
      opacity: 0;
      -webkit-transform: translate(0, -1em);
      -moz-transform: translate(0, -1em);
      transform: translate(0, -1em);
      -webkit-transition: height 0ms linear 260ms, opacity 250ms ease-out 0ms, -webkit-transform 150ms ease-out 0ms;
      -moz-transition: height 0ms linear 260ms, opacity 250ms ease-out 0ms,    -moz-transform 150ms ease-out 0ms;
      transition: height 0ms linear 260ms, opacity 250ms ease-out 0ms,         transform 150ms ease-out 0ms; }
      .faqs .faq .faq__answer .inner {
        margin: 0;
        padding: 0em 0em 1em 3em; }
    .faqs .faq.faq--open .faq__answer {
      -webkit-transition: height 0ms linear 0ms, opacity 250ms ease-out 10ms, -webkit-transform 150ms ease-out 10ms;
      -moz-transition: height 0ms linear 0ms, opacity 250ms ease-out 10ms,    -moz-transform 150ms ease-out 10ms;
      transition: height 0ms linear 0ms, opacity 250ms ease-out 10ms,         transform 150ms ease-out 10ms;
      height: auto;
      opacity: 1;
      -webkit-transform: translate(0, 0em);
      -moz-transform: translate(0, 0em);
      transform: translate(0, 0em); }
    .faqs .faq.faq--open .faq__question {
      color: #888; }
      .faqs .faq.faq--open .faq__question .fa {
        -webkit-transform: rotate(-180deg);
        -moz-transform: rotate(-180deg);
        transform: rotate(-180deg); }

/*  ==========================================================================
	flex--quote -- Quote
	========================================================================== */
.flexquote {
  position: relative;
  /* flexquote--img */ }
  .flexquote .flexquote__bd {
    position: relative;
    z-index: 2; }
    .flexquote .flexquote__bd .flexquote__quote {
      margin: 0;
      padding: 0; }
      .flexquote .flexquote__bd .flexquote__quote p {
        margin: 0 0 0.5em; }
      .flexquote .flexquote__bd .flexquote__quote .flexquote__quotemark {
        line-height: 1;
        font-family: Georgia, Times New Roman, serif;
        height: .75em;
        font-weight: bold; }
    .flexquote .flexquote__bd .flexquote__cite {
      margin-top: -.5em;
      text-align: right;
      font-style: normal;
      display: block; }
  .flexquote.flexquote--withimg {
    color: #fff;
    background: #000;
    overflow: hidden; }
    .flexquote.flexquote--withimg .flexquote__img {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center center;
      -webkit-transition: -webkit-transform 2000ms ease-out 0ms, opacity 2000ms ease-out 0ms;
      -moz-transition: -moz-transform 2000ms ease-out 0ms, opacity 2000ms ease-out 0ms;
      transition: transform 2000ms ease-out 0ms, opacity 2000ms ease-out 0ms;
      -webkit-transform: scale(1.1, 1.1);
      -moz-transform: scale(1.1, 1.1);
      transform: scale(1.1, 1.1); }
      .flexquote.flexquote--withimg .flexquote__img.effect--ready {
        opacity: .66;
        -webkit-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        transform: scale(1, 1); }

/*  ==========================================================================
	flex--video -- Video
	========================================================================== */
.flexvideo .flexvideo__videocode {
  padding: 56.6% 0 0;
  position: relative; }
  .flexvideo .flexvideo__videocode * {
    display: none; }
  .flexvideo .flexvideo__videocode iframe {
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0; }
.flexvideo .flexvideo__caption {
  margin-top: 1em;
  color: #888; }
  .flexvideo .flexvideo__caption:after {
    content: ' ';
    display: block;
    width: 1.5em;
    border-bottom: solid 1px rgba(0, 0, 0, 0.15);
    margin: 1em 0 0; }

/*  ==========================================================================
	flex--cta -- Call to action
	========================================================================== */
.flexcta {
  text-align: center;
  position: relative;
  /* flexquote--img */ }
  .flexcta .flexcta__bd {
    position: relative;
    z-index: 2; }
    .flexcta .flexcta__bd .flexcta__leader {
      max-width: 25em;
      margin-left: auto;
      margin-right: auto; }
    .flexcta .flexcta__bd .flexcta__cta a {
      margin: 0 .5em .75em;
      display: inline-block; }
  .flexcta.flexcta--withimg {
    color: #fff;
    background: #000;
    overflow: hidden; }
    .flexcta.flexcta--withimg .flexcta__img {
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center center;
      z-index: 1;
      opacity: 0;
      -webkit-transition: -webkit-transform 2000ms ease-out 0ms, opacity 2000ms ease-out 0ms;
      -moz-transition: -moz-transform 2000ms ease-out 0ms, opacity 2000ms ease-out 0ms;
      transition: transform 2000ms ease-out 0ms, opacity 2000ms ease-out 0ms;
      -webkit-transform: scale(1.1, 1.1);
      -moz-transform: scale(1.1, 1.1);
      transform: scale(1.1, 1.1); }
      .flexcta.flexcta--withimg .flexcta__img.effect--ready {
        opacity: .66;
        -webkit-transform: scale(1, 1);
        -moz-transform: scale(1, 1);
        transform: scale(1, 1); }

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