/*================ 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 ================*/
/*================ Typography Variables ================*/
/*============================================================================
  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 350ms ease-out 0s, -webkit-transform 350ms ease-out 0s;
   -moz-transition: opacity 350ms ease-out 0s,    -moz-transform 350ms ease-out 0s;
        transition: opacity 350ms ease-out 0s, 		   transform 350ms ease-out 0s;
}

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

.effect--slidein{
    @include prefix(transform, translate(0, 2em), webkit moz spec);
 }
.effect--slidein.effect--ready,
.no-cssanimations .effect--slidein{
    @include prefix(transform, translate(0, 0px), webkit moz spec);
}

.effect--slidedown{
    @include prefix(transform, translate(0, -2em), webkit moz spec);
}
.effect--slidedown.effect--ready,
.no-cssanimations .effect--slidedown{
    @include prefix(transform, translate(0, 0px), webkit moz spec);
}

.effect--slideright{
    @include prefix(transform, translate(-2em, -0), webkit moz spec);
}
.effect--slideright.effect--ready,
.no-cssanimations .effect--slideright{
    @include prefix(transform, translate(0, 0px), webkit moz spec);
}

.effect--slideleft{
    @include prefix(transform, translate(2em, 0px), webkit moz spec);
}
.effect--slideleft.effect--ready,
.no-cssanimations .effect--slideleft{
    @include prefix(transform, translate(0, 0px), webkit moz spec);
}

.effect--delay-1{
    @include prefix(transition-delay, 150ms, webkit moz spec);
}

.effect--delay-2{
    @include prefix(transition-delay, 300ms, webkit moz spec);
}

.effect--delay-3{
    @include prefix(transition-delay, 450ms, webkit moz spec);
}

.effect--delay-4{
    @include prefix(transition-delay, 600ms, webkit moz spec);
}

.effect--delay-5{
    @include prefix(transition-delay, 750ms, webkit moz spec);
}

.effect--delay-6{
    @include prefix(transition-delay, 900ms, webkit moz spec);
}

.effect--delay-7{
    @include prefix(transition-delay, 1050ms, webkit moz spec);
}

.effect--delay-0{
    @include prefix(transition-delay, 0ms, webkit moz spec);
}

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

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

@media only screen and (min-width:700px){

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

    .effect.gd-u-gt700-1-3:nth-child(3n+1){
        @include prefix(transition-delay, 0ms, webkit moz spec);
    }
    .effect.gd-u-gt700-1-3:nth-child(3n+3){
        @include prefix(transition-delay, 150ms, webkit moz spec);
    }
    .effect.gd-u-gt700-1-3:nth-child(3n+3){
        @include prefix(transition-delay, 300ms, webkit moz spec);
    }


    .effect.gd-u-gt700-1-4:nth-child(4n+1){
        @include prefix(transition-delay, 0ms, webkit moz spec);
    }
    .effect.gd-u-gt700-1-4:nth-child(4n+3){
        @include prefix(transition-delay, 150ms, webkit moz spec);
    }
    .effect.gd-u-gt700-1-4:nth-child(4n+3){
        @include prefix(transition-delay, 300ms, webkit moz spec);
    }
    .effect.gd-u-gt700-1-4:nth-child(4n+4){
        @include prefix(transition-delay, 450ms, webkit moz spec);
    }
}

@media only screen and (min-width:1000px){
    .effect.gd-u-gt1000-1-2:nth-child(2n+1){
        @include prefix(transition-delay, 0ms, webkit moz spec);
    }
    .effect.gd-u-gt1000-1-2:nth-child(2n+2){
        @include prefix(transition-delay, 150ms, webkit moz spec);
    }

    .effect.gd-u-gt1000-1-3:nth-child(3n+1){
        @include prefix(transition-delay, 0ms, webkit moz spec);
    }
    .effect.gd-u-gt1000-1-3:nth-child(3n+3){
        @include prefix(transition-delay, 150ms, webkit moz spec);
    }
    .effect.gd-u-gt1000-1-3:nth-child(3n+3){
        @include prefix(transition-delay, 300ms, webkit moz spec);
    }


    .effect.gd-u-gt1000-1-4:nth-child(4n+1){
        @include prefix(transition-delay, 0ms, webkit moz spec);
    }
    .effect.gd-u-gt1000-1-4:nth-child(4n+3){
        @include prefix(transition-delay, 150ms, webkit moz spec);
    }
    .effect.gd-u-gt1000-1-4:nth-child(4n+3){
        @include prefix(transition-delay, 300ms, webkit moz spec);
    }
    .effect.gd-u-gt1000-1-4:nth-child(4n+4){
        @include prefix(transition-delay, 450ms, webkit moz spec);
    }
}

 */
/*  ==========================================================================
	Base typography -- typography.scss
	========================================================================== */
body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  /* font-synthesis: none; */
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 1.5em 0 0.25em;
  line-height: 1.2;
}

h1,
h2,
h3,
.font--header {
  font-weight: 800;
  font-family: orator-std, monospace;
  text-transform: uppercase;
}

h4,
h5,
h6,
.font--subheader {
  font-family: courier, sans-serif;
  font-weight: 700;
}

.h1,
h1 {
  margin: 0;
  font-weight: normal;
}

.h2,
h2 {
  font-weight: normal;
}

.fontsize--huge,
h1 {
  font-size: 28px;
  line-height: 1.4;
}
@media only screen and (min-width: 550px) {
  .fontsize--huge,
  h1 {
    font-size: 30px;
  }
}
@media only screen and (min-width: 700px) {
  .fontsize--huge,
  h1 {
    font-size: 32px;
  }
}
@media only screen and (min-width: 1200px) {
  .fontsize--huge,
  h1 {
    font-size: 36px;
  }
}
@media only screen and (min-width: 1400px) {
  .fontsize--huge,
  h1 {
    font-size: 38px;
  }
}
@media only screen and (min-width: 1600px) {
  .fontsize--huge,
  h1 {
    font-size: 42px;
  }
}

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

.fontsize--med,
h3 {
  font-size: 22px;
  font-weight: normal;
  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: 1200px) {
  .fontsize--med,
  h3 {
    font-size: 30px;
  }
}
@media only screen and (min-width: 1400px) {
  .fontsize--med,
  h3 {
    font-size: 32px;
  }
}
@media only screen and (min-width: 1600px) {
  .fontsize--med,
  h3 {
    font-size: 34px;
  }
}

h4 {
  font-size: 15px;
}
@media only screen and (min-width: 550px) {
  h4 {
    font-size: 16px;
  }
}
@media only screen and (min-width: 700px) {
  h4 {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1200px) {
  h4 {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1400px) {
  h4 {
    font-size: 22px;
  }
}
@media only screen and (min-width: 1600px) {
  h4 {
    font-size: 24px;
  }
}

.fontsize--reg,
body {
  font-size: 15px;
}
@media only screen and (min-width: 550px) {
  .fontsize--reg,
  body {
    font-size: 15px;
  }
}
@media only screen and (min-width: 700px) {
  .fontsize--reg,
  body {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1200px) {
  .fontsize--reg,
  body {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1400px) {
  .fontsize--reg,
  body {
    font-size: 17px;
  }
}
@media only screen and (min-width: 1600px) {
  .fontsize--reg,
  body {
    font-size: 18px;
  }
}

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

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

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

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

.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: #888;
}

.color--blue {
  color: #002244;
}

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

p {
  margin: 0 0 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 {
  border-bottom: solid 1px rgba(208, 16, 58, 0.33);
}
a:hover .linkline {
  border-color: #d0103a;
}

.link--linebefore {
  padding-left: 40px;
  position: relative;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
}
.link--linebefore:before {
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  width: 30px;
  height: 0;
  border-top: 1px solid #000;
}
.link--linebefore:hover {
  margin-left: 0.5em;
}

.btn {
  background-color: #efefed;
  color: #d0103a;
  font-family: courier, sans-serif;
  font-weight: 700;
  display: inline-block;
  margin: 0 0.5em 0.5em 0;
  padding: 1em 1.75em;
  border: none;
  cursor: pointer;
}
.btn .linkline {
  border: none;
}
.btn:hover {
  background-color: #d0103a;
  color: #fff;
}
.btn.btn--block {
  display: block;
  padding: 1em 0.5em;
  margin-right: 0;
}
.btn--white {
  background: #fff;
  color: #d0103a;
}
.btn--white:hover {
  background: #d0103a;
  color: #fff;
}
.btn--grey {
  background: #eee;
  color: #333;
}
.btn--grey:hover {
  background: #00d4ff;
  color: #fff;
}

/*  ==========================================================================
    share icons -- links-buttons.scss
    ========================================================================== */
.shareicons {
  color: #fff;
}
.shareicons .shareiconslist li {
  margin: 0;
  display: inline-block;
}
.shareicons .sharelink {
  display: inline-block;
  height: 2em;
  background: #f1f1f1;
  line-height: 2em;
  margin: 0;
  color: #fff;
  border-radius: 1em;
}
.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;
  }
}
.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 .fa {
  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: -0.75em;
  margin-right: -0.75em;
}

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

.gd-g--vertcenter .gd-u {
  vertical-align: middle;
}

.gd-g--align-bottom .gd-u {
  vertical-align: bottom;
}

.gd-g--center .gd-u {
  text-align: left;
}

.gd-g,
.opera-only :-o-prefocus {
  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: 0.75em;
  padding-right: 0.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;
  }
}
.gd-g,
.opera-only :-o-prefocus {
  word-spacing: -0.43em;
}

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

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

input[type="submit"],
button[type="submit"] {
  padding: 1em;
  border-radius: 0;
  outline: none;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  font-family: inherit;
  -webkit-appearance: none;
  border: none;
  background-color: #efefed;
  color: #d0103a;
}

input[type="submit"]:hover,
button[type="submit"]:hover {
  background-color: #d0103a;
  color: #efefed;
}

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

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

input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
textarea:focus {
  border-color: #1d2e3c;
}

[type="text"].error,
input[type="email"].error,
input[type="password"].error,
input[type="number"].error,
textarea.error {
  background-image: url("input.invalid.png");
  background-size: auto 1em;
  background-position: right center;
  background-repeat: no-repeat;
}

textarea.error {
  background-position: right 1em;
}

.form-error {
  position: relative;
  display: block;
  background: #ff5533;
  padding: 0.5em 1em;
  z-index: 2;
  font-size: 12px;
}
.form-error:before {
  content: " ";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  top: -5px;
  left: 1em;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #ff5533;
}

.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: -0.5em;
  left: 1em;
  border-left: 0.5em solid transparent;
  border-right: 0.5em solid transparent;
  border-bottom: 0.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: proxima-nova, sans-serif;
  margin: 0;
  padding: 0;
  color: #002244;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

.bd {
  margin: 0 2em;
  position: relative;
  min-height: 1px;
}
@media only screen and (min-width: 550px) {
  .bd {
    margin: 0 3em;
  }
}
@media only screen and (min-width: 1000px) {
  .bd {
    margin: 0;
  }
}
.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;
}

/*  ==========================================================================
	Page
	========================================================================== */
.pageheader {
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
.pageheader--nointro {
  border-bottom: 1px solid #f2f2f2;
}
.pageheader .pageheaderbody .leader,
.pageheader .pageheaderbody h1 {
  /* max-width: 27em; */
}
.pageheader .leader {
  margin-top: 1em;
}

.pageheaderimg,
.postheaderimg {
  width: 100%;
  padding: 40% 0 0;
  position: relative;
}
@media only screen and (min-width: 550px) {
  .pageheaderimg,
  .postheaderimg {
    width: 87.5%;
  }
  .pageheaderimg--right,
  .postheaderimg--right {
    left: 12.5%;
  }
}

.pageheader__img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.pageheader__video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

.pageintroduction {
  padding: 0 2em;
  margin-bottom: 10%;
  background: #fff;
  z-index: 7;
  position: relative;
  box-sizing: border-box;
}
@media only screen and (min-width: 550px) {
  .pageintroduction {
    width: 75%;
    padding: 0 3em;
    margin-top: 0;
    margin-bottom: 7%;
  }
  .pageintroduction--left {
    padding-right: 0;
  }
}
@media only screen and (min-width: 700px) {
  .pageintroduction {
    width: 50%;
    margin-top: -12%;
    padding: 3em;
    margin-bottom: 0;
  }
  .pageintroduction--left {
    left: 50%;
  }
}
@media only screen and (min-width: 1000px) {
  .pageintroduction {
    padding: 2em 2em 2em 0;
  }
  .pageintroduction .pageintroduction__content {
    max-width: 30em;
  }
  .pageintroduction--left {
    padding-left: 2em;
    padding-right: 0;
  }
}
.pageintroduction h2 {
  margin-top: 0;
  margin-bottom: 0.5em;
}

/* Homepage Header */
.home .pageheader--home {
  width: 100%;
  margin: 0;
}
.home .pageheader--home .pageheaderbody {
  margin: 0;
  padding: 2em 2em 0;
  position: relative;
  background: #fff;
  box-sizing: border-box;
  max-width: none;
}
@media only screen and (min-width: 550px) {
  .home .pageheader--home .pageheaderbody {
    padding: 2em 3em 0;
  }
}
@media only screen and (min-width: 800px) {
  .home .pageheader--home .pageheaderbody {
    width: 50%;
    margin-top: -8%;
  }
}
@media only screen and (min-width: 1000px) {
  .home .pageheader--home .pageheaderbody {
    padding: 2em 3em 2em 0;
    /* Stop image peeking through on tablet */
    left: -1px;
  }
}
.home .pageheader--home .pageheaderbody h1 {
  max-width: 12em;
}

/*  ==========================================================================
	main
	========================================================================== */
@media only screen and (min-width: 1000px) {
  .main {
    width: 80%;
    float: left;
    margin-left: 20%;
    box-sizing: border-box;
    padding: 1em;
  }
}

/*  ==========================================================================
	content -- layout/layout.scss
	========================================================================== */
.content,
.pageheaderbody {
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
@media only screen and (min-width: 550px) {
  .content,
  .pageheaderbody {
    width: 75%;
  }
}
@media only screen and (min-width: 1000px) {
  .content,
  .pageheaderbody {
    width: 50%;
  }
}

/*  ==========================================================================
	posts -- layout/layout.scss
	========================================================================== */
.posts {
  margin-bottom: -3em;
}

.post {
  margin-bottom: 3em;
  position: relative;
}
.post .post__link {
  position: relative;
  z-index: 1;
}
.post .post__link .postimg {
  padding: 100% 0 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 1em;
  -webkit-transition: box-shadow 150ms ease-out 0s;
  -moz-transition: box-shadow 150ms ease-out 0s;
  transition: box-shadow 150ms ease-out 0s;
}
.post .post__link .postimg .postimg__img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #eee;
}
.post .post__link:hover .postimg {
  -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);
}

.post__categories,
.post__heading {
  max-width: 320px;
}

.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: #f4f4f4;
  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);
}

/*  ==========================================================================
	paging -- layout/layout.scss
	========================================================================== */
.paging {
  position: relative;
  padding: 1em 0;
  margin-bottom: 0;
  border-top: solid 1px #ddd;
  font-family: courier, sans-serif;
  font-weight: 700;
}
@media only screen and (min-width: 700px) {
  .paging {
    border-bottom: solid 1px #ddd;
  }
  .paging .paging__bd {
    border-bottom: solid 1px #d4d4cb;
    border-top: solid 1px #d4d4cb;
  }
}
.paging .paging__numbers {
  display: none;
}
.paging .paging__numbers a,
.paging .paging__numbers span {
  padding: 1.5em;
  border: none;
  border-right: solid 1px #ddd;
  display: block;
  float: left;
  min-width: 1.4em;
  text-align: center;
}
.paging .paging__numbers .current {
  color: #aaa;
}
@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: 0;
}
@media only screen and (min-width: 700px) {
  .paging .paging__nextprev {
    position: absolute;
    padding: 0;
    right: 0;
    top: 50%;
    margin-top: -1.75em;
  }
}

.paging__pager--older a:hover {
  background: #afb472;
}

.paging__nextprev--bothpresent .paging__pager--older {
  border-left: solid 1px #e0e0d9;
}

@media only screen and (min-width: 700px) {
  .paging__pager {
    display: inline-block;
    padding: 0.5em;
  }
}
/*  ==========================================================================
    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: 700;
  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: #002244;
  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.9;
  -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: #333;
}
.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: #eee;
}

/*  ==========================================================================
	Slider
	========================================================================== */
.slideshow {
  position: relative;
  width: 100%;
  padding: 50% 0 0;
}

.slideshow > .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/*  ==========================================================================
	Single Treatment
	========================================================================== */
@media only screen and (min-width: 550px) {
  .treatment__list .treatment__list__wrap {
    width: 75%;
    max-width: 850px;
    margin: 0 auto;
  }
}
.treatment__list .treatment__list__wrap .treatment__list__item {
  margin: 1em 0;
}
.treatment__list .treatment__list__wrap .treatment__list__item__title {
  margin-top: 0;
}
.treatment__list .treatment__list__posts {
  margin: 1em 0;
  padding-top: 2em;
  padding-bottom: 1.5em;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.treatment__list .treatment__list__posts .post {
  margin-bottom: 0;
}

/* Related Treatments */
@media only screen and (min-width: 550px) {
  .relatedtreatments .treatments .gd-u {
    max-width: 23em;
  }
}
@media only screen and (min-width: 550px) {
  .relatedtreatments .relatedtreatments__title {
    text-align: center;
  }
}

/*  ==========================================================================
	Single Team
	========================================================================== */
.single.single-team {
  overflow: scroll;
  height: 100%;
}

.teammember .gd-g--vertcenter {
  height: 100%;
}
.teammember .teammember__content {
  padding: 2em;
}
.teammember .teammember__image {
  padding: 70% 0 0;
  position: relative;
  overflow: hidden;
}
.teammember .teammember__image .teammember__image__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 101%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.teammember .teammember__job {
  margin-top: 0.25em;
  margin-bottom: 1em;
}
.teammember .teammember__details__title {
  margin-bottom: 0;
}
@media only screen and (min-width: 550px) {
  .teammember .teammember__content {
    padding: 3em;
  }
}
@media only screen and (min-width: 700px) {
  .teammember .teammember__content {
    width: 75%;
    margin: 3em auto;
    padding: 0;
  }
}
@media only screen and (min-width: 1000px) {
  .teammember {
    width: 100%;
    height: 80vh;
    overflow: hidden;
  }
  .teammember .teammember__info {
    max-height: 80vh;
    overflow: scroll;
  }
  .teammember .teammember__image {
    height: 80vh;
    padding: 0;
  }
  .teammember .teammember__content {
    width: auto;
    margin: 0 auto;
    padding: 4em;
  }
}

/*  ==========================================================================
  Blog
	========================================================================== */
.blogslides {
  max-width: 100%;
  overflow: hidden;
}
.blogslides .blogslide {
  position: relative;
  text-align: center;
  width: 100%;
  padding: 75% 0 0;
  height: 0;
  left: -1px;
}
@media only screen and (min-width: 700px) {
  .blogslides .blogslide {
    padding: 50% 0 0;
  }
}
.blogslides .blogslide .blogslide__bd {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  margin: 0 2em;
}
@media only screen and (min-width: 550px) {
  .blogslides .blogslide .blogslide__bd {
    margin: 0 3em;
    width: 100%;
  }
}
@media only screen and (min-width: 1000px) {
  .blogslides .blogslide .blogslide__bd {
    margin: 0;
  }
}
.blogslides .blogslide .blogslideimg {
  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%;
}
.blogslides .blogslide .blogslide__content {
  background: #fff;
  padding: 1.5em 1.5em 0;
  box-sizing: border-box;
  text-align: left;
}
@media only screen and (min-width: 550px) {
  .blogslides .blogslide .blogslide__content {
    width: 75%;
    padding: 2em 2em 0;
  }
}
@media only screen and (min-width: 700px) {
  .blogslides .blogslide .blogslide__content {
    padding: 2em;
    width: 50%;
  }
}
@media only screen and (min-width: 1000px) {
  .blogslides .blogslide .blogslide__content {
    padding: 3em 3em 0 0;
  }
}
.blogslides .blogslide .blogslide__content .blogslide__heading {
  margin-top: 0;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 549px) {
  .blogslides .blogslide .blogslide__content .blogslide__heading {
    font-size: 1em;
    font-weight: bold;
  }
}
.blogslides.owl-carousel .owl-nav {
  top: 0;
  z-index: 20;
  position: absolute;
  right: 0;
  margin-right: 5px;
}
@media only screen and (min-width: 700px) {
  .blogslides.owl-carousel .owl-nav {
    top: auto;
    bottom: 5px;
    margin-top: -50px;
  }
}
.blogslides.owl-carousel .owl-nav button.owl-next,
.blogslides.owl-carousel .owl-nav button.owl-prev,
.blogslides.owl-carousel button.owl-dot {
  width: 35px;
  height: 35px;
  background: #fff;
  color: #002244 !important;
  border-radius: 0;
}
.blogslides.owl-carousel .owl-nav button.owl-next:focus,
.blogslides.owl-carousel .owl-nav button.owl-prev:focus,
.blogslides.owl-carousel button.owl-dot:focus {
  outline: none;
}
.blogslides.owl-carousel .owl-item .blogslide__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;
}
.blogslides.owl-carousel .owl-item.active .blogslide__content {
  opacity: 1;
  -webkit-transform: translate(0px, 0px);
  -moz-transform: translate(0px, 0px);
  transform: translate(0px, 0px);
}

/*  ==========================================================================
  Blog - Category
	========================================================================== */
.category .pageheaderbody {
  float: left;
}
.category .pageheaderbody h1 {
  text-transform: none;
}
.category .pageheaderbody h1 .font--subheader {
  font-weight: normal;
}

/*  ==========================================================================
  Contact
	========================================================================== */
.contact__info {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 550px) {
  .contact__info {
    width: 75%;
  }
}
@media only screen and (min-width: 1200px) {
  .contact__info {
    width: 50%;
  }
}

.contact__info__detail {
  padding-left: 23px;
  position: relative;
  margin: 1em 0;
}
.contact__info__detail .fa,
.contact__info__detail .fas {
  position: absolute;
  left: 0;
  top: 3px;
}
.contact__info__detail--number .fa,
.contact__info__detail--number .fas {
  top: 4px;
}
.contact__info__detail--email .fa,
.contact__info__detail--email .fas {
  top: 4px;
}

.contact__map {
  width: 100%;
  padding: 80% 0 0;
}
@media only screen and (min-width: 550px) {
  .contact__map {
    padding: 50% 0 0;
  }
}

/*  ==========================================================================
  Booking
	========================================================================== */
.ob-widget-btn {
  background: #002244 !important;
  font-family: proxima-nova, sans-serif !important;
}

.ob-widget-btn__wide_text {
  font-size: 15px !important;
}

.bookinglinks__row {
  margin: 1em 0 1em 0;
}
@media only screen and (min-width: 550px) {
  .bookinglinks__row {
    margin: 0.5em 0 0.5em 0;
  }
}
.bookinglinks__row .bookinglinks__text,
.bookinglinks__row .bookinglinks__price {
  display: inline-block;
  width: 6em;
  font-weight: bold;
}
.bookinglinks__row .bookinglinks__price {
  width: 4em;
}
.bookinglinks__row a {
  text-align: center;
  display: inline-block;
}

.bookinglinksrow {
  margin-bottom: 2em;
  border-bottom: solid 1px #e5e5e5;
  padding-bottom: 1em;
}

.bookinglinks__therapy {
  margin-top: 1em;
  display: inline-block;
}

.fancybox--booking .fancybox-content {
  max-width: 80vw;
  max-height: 75vh;
}
@media only screen and (min-width: 550px) {
  .fancybox--booking .fancybox-content {
    max-height: 80vh;
  }
}

/*  ==========================================================================
	CookieYes -- layout/layout.scss
	========================================================================== */
.cky-consent-container,
.cky-consent-container .cky-consent-bar,
.cky-prefrence-btn-wrapper .cky-btn,
.cky-notice-btn-wrapper .cky-btn {
  border-radius: 0 !important;
}

.cky-revisit-bottom-right {
  bottom: 100px !important;
  right: 25px !important;
}

/*  ==========================================================================
	flex -- layout/flex.scss
	========================================================================== */
.flex__heading {
  margin: 0 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: 1000px) {
  .flex--fullwidth + .flex--fullwidth {
    margin-top: -5%;
  }
}

/*  ==========================================================================
	flexline
	========================================================================== */
.flexline__line {
  border-top: solid 1px #ddd;
  height: 0;
  opacity: 0.5;
}

/*  ==========================================================================
	flexcols
	========================================================================== */
.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 Tile Grid
	========================================================================== */
.flex--tilecols .gd-g {
  margin-right: -0.3em;
  margin-left: -0.3em;
}
.flex--tilecols .gd-u {
  padding: 0.3em;
}
.flex--tilecols .tilecol {
  position: relative;
  display: block;
  background-color: #000;
}
.flex--tilecols .tilecol h3 {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
  margin: 0;
  padding: 0;
  z-index: 10;
}
.flex--tilecols .tilecol__img {
  width: 100%;
  padding: 55% 0 0;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.66;
}
.flex--tilecols .gd-u-gt550-1-4 .tilecol__img {
  padding: 70% 0 0;
}

/*  ==========================================================================
	flex--faqs
	========================================================================== */
.faqs {
  border-top: 1px solid #ddd;
  position: relative;
}
.faqs .faq {
  display: block;
  position: relative;
  border-bottom: 1px solid #ddd;
}
.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 0 linear 260ms, opacity 250ms ease-out 0ms, -webkit-transform 150ms ease-out 0;
  -moz-transition: height 0 linear 260ms, opacity 250ms ease-out 0ms, -moz-transform 150ms ease-out 0;
  transition: height 0 linear 260ms, opacity 250ms ease-out 0ms, transform 150ms ease-out 0;
}
.faqs .faq .faq__answer .inner {
  margin: 0;
  padding: 0 0 1em 3em;
}
.faqs .faq.faq--open .faq__answer {
  -webkit-transition: height 0 linear 0ms, opacity 250ms ease-out 10ms, -webkit-transform 150ms ease-out 10ms;
  -moz-transition: height 0 linear 0ms, opacity 250ms ease-out 10ms, -moz-transform 150ms ease-out 10ms;
  transition: height 0 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: #6e6f71;
}
.faqs .faq.faq--open .faq__question .fa {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

/*  ==========================================================================
	Flex slides
	========================================================================== */
.flexslides {
  max-width: 100%;
  overflow: hidden;
}
.flexslides .flexslide {
  position: relative;
  text-align: center;
  left: -1px;
}
@media only screen and (min-width: 700px) {
  .flexslides .flexslide .flexslide__bd {
    padding-top: 12%;
    padding-bottom: 12%;
    position: relative;
    z-index: 2;
  }
}
@media only screen and (min-width: 1400px) {
  .flexslides .flexslide .flexslide__bd {
    padding-top: 10%;
    padding-bottom: 10%;
  }
}
.flexslides .flexslide .flexslideimg {
  padding: 50% 0 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 700px) {
  .flexslides .flexslide .flexslideimg {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    padding: 0;
    height: 100%;
    width: 100%;
  }
}
.flexslides .flexslide .flexslide__content {
  background: #fff;
  padding: 2em 2em 0;
  margin: -3em 0 0;
  box-sizing: border-box;
  text-align: left;
}
@media only screen and (min-width: 550px) {
  .flexslides .flexslide .flexslide__content {
    width: 90.6%;
    display: inline-block;
  }
}
@media only screen and (min-width: 700px) {
  .flexslides .flexslide .flexslide__content {
    margin: 0;
    padding: 2.5em;
    width: 50%;
  }
}
@media only screen and (min-width: 1000px) {
  .flexslides .flexslide .flexslide__content {
    margin: 0;
    padding: 3em;
    width: 35%;
  }
}
@media only screen and (min-width: 1400px) {
  .flexslides .flexslide .flexslide__content {
    width: 30%;
  }
}
.flexslides .flexslide .flexslide__content .flexslide__heading {
  margin-top: 0;
}
@media only screen and (min-width: 550px) {
  .flexslides .flexslide--left .flexslide__content {
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (min-width: 700px) {
  .flexslides .flexslide--left {
    text-align: left;
  }
  .flexslides .flexslide--left .flexslide__content {
    margin-left: 0;
  }
}
@media only screen and (min-width: 700px) {
  .flexslides .flexslide--right {
    text-align: right;
  }
  .flexslides .flexslide--right .flexslide__content {
    margin-right: 0;
  }
}
@media only screen and (min-width: 700px) {
  .flexslides .flexslide--center {
    text-align: center;
  }
}
.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;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 !important;
}
.flexslides.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
  margin: 0;
  color: #888;
  outline: none;
}
.flexslides.owl-carousel .owl-dots .owl-dot span {
  display: block;
  margin: 0;
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5em;
  background: #fff;
  border: none;
  border-left: solid 1px #eee;
  line-height: 1em;
  position: relative;
  border-radius: 0;
  opacity: 1;
}
.flexslides.owl-carousel .owl-dots .owl-dot span:before {
  font-size: 11px;
  line-height: 1em;
  display: block;
  position: absolute;
  top: 50%;
  margin-top: -0.5em;
  left: 0;
  right: 0;
  text-align: center;
}
.flexslides.owl-carousel .owl-dots .owl-dot:first-child span {
  border-left: none;
}
.flexslides.owl-carousel .owl-dots .owl-dot:hover {
  color: #111;
}
.flexslides.owl-carousel .owl-dots .owl-dot.active {
  color: #111;
  font-weight: 700;
}
.flexslides.owl-carousel .owl-dots .owl-dot:nth-child(1) span:before {
  content: "1";
}
.flexslides.owl-carousel .owl-dots .owl-dot:nth-child(2) span:before {
  content: "2";
}
.flexslides.owl-carousel .owl-dots .owl-dot:nth-child(3) span:before {
  content: "3";
}
.flexslides.owl-carousel .owl-dots .owl-dot:nth-child(4) span:before {
  content: "4";
}
.flexslides.owl-carousel .owl-dots .owl-dot:nth-child(5) span:before {
  content: "5";
}
.flexslides.owl-carousel .owl-dots .owl-dot:nth-child(6) span:before {
  content: "6";
}

/*  ==========================================================================
	flex--imgfeature
	========================================================================== */
.fleximgfeature .gd-g {
  margin: 0;
}
.fleximgfeature .fleximgfeature__imgcontainer--last {
  display: none;
}
.fleximgfeature .fleximgfeature__imgcontainer .fleximgfeature__img {
  background-color: #000;
  width: 100%;
  height: auto;
}
@media only screen and (min-width: 800px) {
  .fleximgfeature .fleximgfeature__imgcontainer {
    margin-bottom: 0;
  }
}
.fleximgfeature .fleximgfeaturecontent {
  position: relative;
  padding: 0 2em;
}
.fleximgfeature .fleximgfeaturecontent .fleximgfeaturecontent__heading {
  margin: 0 0 0.5em;
  max-width: 400px;
}
.fleximgfeature .fleximgfeaturecontent .fleximgfeaturecontent__subheading {
  max-width: 400px;
}
.fleximgfeature .fleximgfeaturecontent .fleximgfeaturecontent__text {
  max-width: 400px;
}
@media only screen and (min-width: 550px) {
  .fleximgfeature .fleximgfeaturecontent {
    width: 70%;
  }
}
@media only screen and (min-width: 800px) {
  .fleximgfeature .fleximgfeaturecontent {
    width: auto;
  }
}
.fleximgfeature .fleximgfeature__post {
  margin-top: 2em;
  position: relative;
  width: 50%;
}
@media only screen and (min-width: 550px) {
  .fleximgfeature .fleximgfeature__post {
    margin-right: -66.5%;
    margin-top: -5em;
    right: 0;
    top: 0;
    position: absolute;
  }
}
@media only screen and (min-width: 800px) {
  .fleximgfeature .fleximgfeature__post {
    position: relative;
    margin-top: 3em;
    width: 50%;
    margin-right: 0;
  }
}
@media only screen and (min-width: 1400px) {
  .fleximgfeature .fleximgfeature__post {
    width: 220px;
  }
}
.fleximgfeature .fleximgfeature__post .fleximgfeature__postimg {
  width: 100%;
  padding: 100% 0 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 800px) {
  .fleximgfeature .fleximgfeature__post .fleximgfeature__postimg {
    margin-left: -5em;
  }
}
@media only screen and (min-width: 1000px) {
  .fleximgfeature .fleximgfeature__post .fleximgfeature__postimg {
    margin-left: -7em;
  }
}
@media (max-width: 799px) {
  .fleximgfeature .fleximgfeature__contentcontainer {
    padding: 0;
  }
  .fleximgfeature .fleximgfeature__contentcontainer .fleximgfeature__content {
    padding: 0;
  }
}
@media only screen and (min-width: 800px) {
  .fleximgfeature--right .fleximgfeature__post {
    float: right;
  }
}
@media only screen and (min-width: 800px) {
  .fleximgfeature--right .fleximgfeature__post .fleximgfeature__postimg {
    margin-left: auto;
    margin-right: -5em;
  }
}
@media only screen and (min-width: 1000px) {
  .fleximgfeature--right .fleximgfeature__post .fleximgfeature__postimg {
    margin-right: -7em;
  }
}
@media only screen and (min-width: 800px) {
  .fleximgfeature--right .fleximgfeature__post .fleximgfeature__posttitle {
    text-align: right;
  }
}
@media only screen and (min-width: 800px) {
  .fleximgfeature + .fleximgfeature {
    /* margin-top: -5%; */
  }
  .fleximgfeature--right .fleximgfeature__imgcontainer--first {
    display: none;
  }
  .fleximgfeature--right .fleximgfeature__imgcontainer--last {
    display: inline-block;
  }
}

/*  ==========================================================================
	flex--editorial
	========================================================================== */
.flexeditorial {
  /* Image position Styling */
  /* Image orientation styling */
}
.flexeditorial .flexeditorial__img {
  width: 100%;
  padding: 50% 0 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (min-width: 800px) {
  .flexeditorial .flexeditorial__img {
    width: 87.5%;
  }
}
.flexeditorial .flexeditorial__content {
  background: #fff;
  padding: 2em 0;
  box-sizing: border-box;
}
@media only screen and (min-width: 550px) {
  .flexeditorial .flexeditorial__content {
    width: 60%;
    box-sizing: border-box;
    display: inline-block;
    padding: 2em 0 2em 2em;
  }
}
@media only screen and (min-width: 800px) {
  .flexeditorial .flexeditorial__content {
    padding: 2em;
    width: 56%;
    margin-top: -5%;
    display: block;
  }
}
@media only screen and (min-width: 1000px) {
  .flexeditorial .flexeditorial__content {
    padding: 3em;
  }
}
.flexeditorial .flexeditorial__content .flexeditorialcontent__heading,
.flexeditorial .flexeditorial__content .flexeditorialcontent__subheading,
.flexeditorial .flexeditorial__content .flexeditorialcontent__text {
  max-width: 400px;
}
.flexeditorial .flexeditorial__content .flexeditorialcontent__heading {
  margin-top: 0;
  margin-bottom: 0.75em;
}
.flexeditorial .flexeditorial__content .flexeditorialcontent__subheading {
  margin-top: 0;
}
.flexeditorial .flexeditorial__post {
  position: relative;
  width: 50%;
}
@media only screen and (min-width: 550px) {
  .flexeditorial .flexeditorial__post {
    width: 30%;
    display: inline-block;
    vertical-align: top;
    margin-top: -7%;
    float: right;
  }
}
@media only screen and (min-width: 800px) {
  .flexeditorial .flexeditorial__post {
    width: 20%;
    left: 10%;
    display: block;
    float: none;
  }
}
@media only screen and (min-width: 1400px) {
  .flexeditorial .flexeditorial__post {
    max-width: 220px;
  }
}
.flexeditorial .flexeditorial__post .flexeditorial__postimg {
  width: 100%;
  padding: 100% 0 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: box-shadow 150ms ease-out 0s;
  -moz-transition: box-shadow 150ms ease-out 0s;
  transition: box-shadow 150ms ease-out 0s;
}
.flexeditorial .flexeditorial__post:hover .flexeditorial__postimg {
  -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);
}
@media only screen and (min-width: 550px) {
  .flexeditorial--left .flexeditorial__content {
    float: right;
  }
}
@media only screen and (min-width: 800px) {
  .flexeditorial--right .flexeditorial__img {
    margin-left: 12.5%;
  }
}
@media only screen and (min-width: 550px) {
  .flexeditorial--right .flexeditorial__post {
    float: left;
  }
}
@media only screen and (min-width: 550px) {
  .flexeditorial--right .flexeditorial__content {
    float: left;
    padding-left: 0;
    padding-right: 2em;
  }
}
@media only screen and (min-width: 800px) {
  .flexeditorial--right .flexeditorial__content {
    margin-top: -12%;
  }
}
@media only screen and (min-width: 1000px) {
  .flexeditorial--right .flexeditorial__content {
    padding-right: 3em;
  }
}
@media only screen and (min-width: 550px) {
  .flexeditorial--vertical .flexeditorial__img {
    padding: 90% 0 0;
    width: 75%;
    margin: 0 auto;
  }
}
@media only screen and (min-width: 800px) {
  .flexeditorial--vertical .flexeditorial__img {
    width: 62.5%;
    padding: 75% 0 0;
    margin-left: 12.5%;
  }
}
@media only screen and (min-width: 800px) {
  .flexeditorial--vertical .flexeditorial__post {
    left: 5%;
  }
}

@media only screen and (min-width: 550px) {
  .flexeditorial--left.flexeditorial--vertical .flexeditorial__post {
    float: none;
  }
}

@media only screen and (min-width: 800px) {
  .flexeditorial--right.flexeditorial--vertical .flexeditorial__img {
    margin-left: 25%;
  }
}
@media only screen and (min-width: 550px) {
  .flexeditorial--right.flexeditorial--vertical .flexeditorial__post {
    float: right;
  }
}
@media only screen and (min-width: 800px) {
  .flexeditorial--right.flexeditorial--vertical .flexeditorial__post {
    left: 18%;
    float: left;
  }
}

/*  ==========================================================================
	flex--treatment - uses base styles from flex--editorial
	========================================================================== */
.flextreatment__nav {
  list-style: none;
  margin: 1em 0;
  max-width: 400px;
}
.flextreatment__nav li {
  margin: 0.5em 0;
  width: 50%;
  display: inline-block;
  vertical-align: top;
  transition-duration: 0.2s;
  -webkit-transition-duration: 0.2s;
  box-sizing: border-box;
}
@media only screen and (min-width: 550px) {
  .flextreatment__nav li {
    width: calc(100% - 3em);
  }
  .flextreatment__nav li:hover {
    padding-left: 0.5em;
  }
}
@media only screen and (min-width: 700px) {
  .flextreatment__nav li {
    width: calc(50% - 3em);
  }
}

/*  ==========================================================================
	flex--iconlist
	========================================================================== */
.iconlist {
  margin-bottom: -2em;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 700px) {
  .iconlist {
    margin-bottom: -2.5em;
  }
  .iconlist.iconlist--rows-4 {
    margin-left: -14%;
    margin-right: -14%;
  }
}
@media only screen and (min-width: 1000px) {
  .iconlist {
    margin-bottom: -3em;
  }
}
.iconlist .iconlistitem {
  text-align: center;
  margin-bottom: 2em;
}
@media only screen and (min-width: 700px) {
  .iconlist .iconlistitem {
    margin-bottom: 2.5em;
  }
}
@media only screen and (min-width: 1000px) {
  .iconlist .iconlistitem {
    margin-bottom: 3em;
  }
}
.gd-g .iconlist .iconlistitem {
  text-align: center;
}
.iconlist .iconlistitem .iconlistitem__heading {
  margin: 0 0 0.5em;
}
.iconlist .iconlistitem .iconlistitem__img {
  width: 3.5em;
  display: block;
  margin: 0 auto 1em;
}

/*  ==========================================================================
	flex--images
	========================================================================== */
.galleryitem {
  margin-bottom: 2em;
}
.galleryitem .galleryitem__img {
  width: 100%;
  padding: 100% 0 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}
.galleryitem .galleryitem__caption {
  margin-top: 1em;
  color: #888;
}
.galleryitem .galleryitem__caption:after {
  content: " ";
  display: block;
  width: 1.5em;
  border-bottom: solid 1px #ddd;
  margin: 1em 0 0;
}

/*  ==========================================================================
	flex featuredposts
	========================================================================== */
.flex--featuredposts .fpleader {
  text-align: center;
}

.flex--featuredposts .fpleader {
  max-width: 30em;
  margin: 0 auto 2em;
}

.flex--featuredposts .fpleader p {
  margin: 0 0 0.5em;
}

@media only screen and (min-width: 700px) {
  .flexpostcount--1 .fpleader {
    text-align: left;
  }

  .flexpostcount--1 .fpleader .leader {
    margin-right: 10%;
  }
}
@media only screen and (min-width: 800px) {
  .flexpostcount--1 .fpleader {
    text-align: left;
  }

  .flexpostcount--1 .fpleader .leader {
    margin-right: 15%;
  }
}
/*  ==========================================================================
	flex--quote
	========================================================================== */
.flexquote {
  position: relative;
  /* flexquote--img */
}
.flexquote .flexquote__bd {
  position: relative;
  z-index: 2;
}
.flexquote .flexquote__bd .flexquote__authimg {
  position: absolute;
  bottom: 0;
  left: 0.7em;
  z-index: 10;
  width: 2em;
  padding: 2em 0 0;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.flexquote .flexquote__bd .flexquote__quote {
  margin: 0;
  padding: 0 0 0 3em;
  position: relative;
  overflow: hidden;
}
.flexquote .flexquote__bd .flexquote__quote:after {
  content: "";
  position: absolute;
  left: 1.6em;
  top: 2em;
  width: 4px;
  height: 100%;
  background: #ccd3da;
}
.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: 0.75em;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0.75em;
}
@media only screen and (min-width: 550px) {
  .flexquote .flexquote__bd .flexquote__quote .flexquote__quotemark {
    left: 0.6em;
  }
}
.flexquote .flexquote__bd .flexquote__cite {
  font-style: normal;
  display: block;
  font-family: orator-std, monospace;
  text-transform: uppercase;
}
.flexquote.flexquote--authimg .flexquote__quote {
  padding: 0 0 0.5em 3em;
}
.flexquote.flexquote--withimg {
  color: #fff;
  background: #000;
  overflow: hidden;
}
.flexquote.flexquote--withimg .flexquote__quote:after {
  background: rbga(255, 255, 255, 0.4);
}
.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 0;
  -moz-transition: -moz-transform 2000ms ease-out 0ms, opacity 2000ms ease-out 0;
  transition: transform 2000ms ease-out 0ms, opacity 2000ms ease-out 0;
  -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: 0.5;
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  transform: scale(1, 1);
}

/*  ==========================================================================
	flex--video
	========================================================================== */
@media only screen and (min-width: 1000px) {
  .flexvideo .content {
    width: 75%;
  }
}
.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 #ddd;
  margin: 1em 0 0;
}

/*  ==========================================================================
	flex cta
	========================================================================== */
.flexcta {
  text-align: center;
  position: relative;
  /* flexcta--logo */
  /* flexquote--img */
}
.flexcta .flexcta__bd {
  position: relative;
  z-index: 2;
}
.flexcta .flexcta__bd .flexcta__leader {
  /* max-width: 30em; */
  margin-left: auto;
  margin-right: auto;
}
.flexcta .flexcta__bd .flexcta__leader .flexcta__leader__content {
  text-align: left;
  max-width: 30em;
}
.flexcta .flexcta__bd .flexcta__leader h3 {
  margin-top: 0;
}
.flexcta .flexcta__bd .flexcta__cta a {
  display: inline-block;
}
.flexcta .flexcta__bd .flexcta__cta a:nth-child(2) {
  padding-left: 1em;
}
.flexcta.flexcta--logo .flexcta__leader .gd-u.flexcta__leader__content {
  text-align: center;
}
@media only screen and (min-width: 550px) {
  .flexcta.flexcta--logo .flexcta__leader .gd-u.flexcta__leader__content {
    text-align: left;
  }
}
.flexcta.flexcta--logo .flexcta__logo {
  margin-bottom: 2em;
}
@media only screen and (min-width: 550px) {
  .flexcta.flexcta--logo .flexcta__logo {
    margin-bottom: 0;
  }
}
.flexcta.flexcta--logo .flexcta__logo--right {
  display: none;
}
.flexcta.flexcta--logo .flexcta__logo__img {
  width: 100%;
  padding: 165% 0 0 0;
  background-image: url("img/koia.pos.svg");
  background-position: top;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
@media only screen and (min-width: 550px) {
  .flexcta.flexcta--logo--right .flexcta__logo--left {
    display: none;
  }
  .flexcta.flexcta--logo--right .flexcta__logo--right {
    display: inline-block;
  }
}
.flexcta.flexcta--withimg {
  color: #fff;
  background: #002244;
  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.6;
}
.flexcta.flexcta--withimg .flexcta__logo__img {
  background-image: url("img/koia.neg.svg");
}

/*  ==========================================================================
	flex special
	========================================================================== */
.flexspecial {
  text-align: center;
  position: relative;
  background: #efefed;
}
.flexspecial .flexspecial__bd {
  position: relative;
  z-index: 2;
}
.flexspecial .flexspecial__bd .flexspecial__leader {
  max-width: 30em;
  text-align: left;
  width: 100%;
  margin-top: 85px;
}
@media only screen and (min-width: 550px) {
  .flexspecial .flexspecial__bd .flexspecial__leader {
    width: 75%;
    margin-top: 0;
  }
}
@media only screen and (min-width: 700px) {
  .flexspecial .flexspecial__bd .flexspecial__leader {
    margin-left: 12.5%;
    width: 50%;
  }
}
.flexspecial .flexspecial__bd .flexspecial__leader h3 {
  margin-top: 0;
}
.flexspecial .flexspecial__bd .flexspecial__ribbon {
  width: 50px;
  max-width: 150px;
  height: 100%;
  left: 0;
  top: 0;
  background-image: url("img/ribbon.png");
  background-position: top center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  position: absolute;
}
@media only screen and (min-width: 550px) {
  .flexspecial .flexspecial__bd .flexspecial__ribbon {
    width: 12.5%;
    right: 0;
    left: auto;
  }
}
@media only screen and (min-width: 700px) {
  .flexspecial .flexspecial__bd .flexspecial__ribbon {
    right: 12.5%;
  }
}

/*  ==========================================================================
	flex Team
	========================================================================== */
.fancybox-bg {
  background: #002244;
}

.fancybox-container .fancybox-content {
  opacity: 0;
}

.fancybox-container.fancybox-is-open .fancybox-content {
  opacity: 1;
}

.fancybox-container.fancybox--team .fancybox-content {
  width: 90%;
  max-width: 1200px;
  padding: 0;
  height: auto;
  max-height: 70vh;
  opacity: 1;
}
@media only screen and (min-width: 550px) {
  .fancybox-container.fancybox--team .fancybox-content {
    max-height: 90vh;
  }
}
.fancybox-container.fancybox--team .fancybox-close-small {
  color: #d0103a;
}

.flexteam {
  text-align: center;
}
.flexteam .flexteam__header {
  max-width: 20em;
  margin-left: auto;
  margin-right: auto;
}
.flexteam .flexteam__members {
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
.flexteam .flexteam__members .gd-u {
  text-align: center;
  margin: 2em 0;
  cursor: pointer;
}
.flexteam .flexteam__members .gd-u:hover .flexteam__img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  transform: scale(1.1);
}
.flexteam .flexteam__members .flexteam__title {
  margin-top: 1em;
}
.flexteam .flexteam__members .flexteam__job {
  margin-top: 0.5em;
}
.flexteam .flexteam__members .flexteam__img {
  margin: 0 auto;
  width: 80%;
  padding: 80% 0 0;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-transition: transform 150ms ease-out 0s;
  -moz-transition: transform 150ms ease-out 0s;
  transition: transform 150ms ease-out 0s;
}

/*  ==========================================================================
	featured logo
	========================================================================== */
.flex--featuredlogo .gd-u {
  text-align: center;
}
@media only screen and (min-width: 550px) {
  .flex--featuredlogo .gd-u {
    text-align: left;
  }
}
.flex--featuredlogo .featuredlogo__title {
  margin-top: 0;
}
.flex--featuredlogo .featuredlogo__logo {
  margin-bottom: 2em;
}
@media only screen and (min-width: 550px) {
  .flex--featuredlogo .featuredlogo__logo {
    margin-bottom: 0;
  }
}
.flex--featuredlogo .featuredlogo__logo .featuredlogo__logo__img {
  width: 100%;
  height: auto;
  max-width: 150px;
  display: block;
  margin: 0 auto;
}
.flex--featuredlogo .featuredlogo__logo--right {
  display: none;
}
@media only screen and (min-width: 550px) {
  .flex--featuredlogo.featuredlogo--right .featuredlogo__logo--left {
    display: none;
  }
  .flex--featuredlogo.featuredlogo--right .featuredlogo__logo--right {
    display: inline-block;
  }
}

/*  ==========================================================================
	featured booking therapies
	========================================================================== */
.flextherapies__content {
  margin-right: auto;
  margin-left: auto;
}
@media only screen and (min-width: 1200px) {
  .flextherapies__content {
    max-width: 75%;
  }
}
@media only screen and (min-width: 1400px) {
  .flextherapies__content {
    max-width: 50%;
  }
}

/*  ==========================================================================
	siteheader
	========================================================================== */
.siteheader {
  background: #fff;
  z-index: 50;
  box-sizing: border-box;
  top: 0;
  left: 0;
  position: fixed;
  width: 100%;
  float: left;
  min-height: 100vh;
  display: none;
  opacity: 0;
}
@media only screen and (min-width: 550px) {
  .siteheader {
    width: 33.33%;
  }
}
@media only screen and (min-width: 1000px) {
  .siteheader {
    display: block !important;
    left: 0 !important;
    opacity: 1 !important;
    width: 20%;
  }
}
.siteheader .siteheader--mobile--navigation {
  position: fixed;
  background: #fff;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  display: none;
  -webkit-box-shadow: 0 0 15px 15px white;
  -moz-box-shadow: 0 0 15px 15px white;
  box-shadow: 0 0 15px 15px white;
}
@media only screen and (min-width: 550px) {
  .siteheader .siteheader--mobile--navigation {
    -webkit-box-shadow: 0 0 25px 25px white;
    -moz-box-shadow: 0 0 25px 25px white;
    box-shadow: 0 0 25px 25px white;
  }
}
@media only screen and (min-width: 1000px) {
  .siteheader .siteheader--mobile--navigation {
    display: none !important;
  }
}
.siteheader .siteheader__footer {
  padding-top: 0;
}
@media only screen and (min-width: 550px) {
  .siteheader .siteheader__footer {
    position: absolute;
    bottom: 0;
  }
}
.siteheader .siteheader__footer ul {
  margin: 0;
}
.siteheader .siteheader__footer ul li:last-child {
  margin-bottom: 0;
}
.siteheader .siteheader__footer .siteheader__footer__number {
  white-space: nowrap;
}
@media screen and (max-height: 700px) {
  .siteheader .siteheader__footer .siteheader__footer__address,
  .siteheader .siteheader__footer .siteheader__footer__directions,
  .siteheader .siteheader__footer .siteheader__footer__number {
    display: none;
  }
}

.nav-active .siteheader {
  display: block;
}
@media only screen and (min-width: 700px) {
  .nav-active .siteheader {
    left: 0;
  }
}

.siteheader__bd {
  margin: 0;
  padding: 40px 2em 2em;
}
@media only screen and (min-width: 550px) {
  .siteheader__bd {
    padding: 40px 3em 3em;
  }
}
@media only screen and (min-width: 1000px) {
  .siteheader__bd {
    padding: 80px 2em 2em;
  }
}

.siteheader--mobile {
  padding: 1.5em 0;
  margin: 0;
  border-bottom: 1px solid #f2f2f2;
}
@media only screen and (min-width: 550px) {
  .siteheader--mobile {
    padding: 2em 0;
  }
}
.siteheader--mobile .sitelogo-wrap {
  width: 50%;
  display: inline-block;
}
.siteheader--mobile .sitelogo-wrap .sitelogo__img {
  width: 35%;
  padding: 12% 0 0;
  margin-bottom: 0;
  transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
}
@media only screen and (min-width: 550px) {
  .siteheader--mobile .sitelogo-wrap .sitelogo__img {
    width: 30%;
    padding: 10% 0 0;
  }
}
@media only screen and (min-width: 700px) {
  .siteheader--mobile .sitelogo-wrap .sitelogo__img {
    width: 25%;
    padding: 7% 0 0;
  }
}
@media only screen and (min-width: 800px) {
  .siteheader--mobile .sitelogo-wrap .sitelogo__img {
    width: 20%;
    padding: 6% 0 0;
  }
}
.siteheader--mobile .menu-back,
.siteheader--mobile .menu-close,
.siteheader--mobile .menu-open {
  vertical-align: top;
  display: inline-block;
  position: absolute;
  right: 0;
  cursor: pointer;
  font-size: 1.5em;
}
.siteheader--mobile .menu-back .fal,
.siteheader--mobile .menu-close .fal,
.siteheader--mobile .menu-open .fal {
  display: block;
}
.siteheader--mobile .menu-back {
  margin-right: 1.5em;
  display: none;
}
@media only screen and (min-width: 550px) {
  .siteheader--mobile .menu-back {
    display: none !important;
  }
}
@media only screen and (min-width: 1000px) {
  .siteheader--mobile {
    display: none;
  }
}

/*  ==========================================================================
	sitelogo
	========================================================================== */
.sitelogo-wrap {
  display: none;
}
@media only screen and (min-width: 1000px) {
  .sitelogo-wrap {
    display: block;
    position: fixed;
    padding: 2em;
    box-sizing: border-box;
    width: 20%;
    top: 0;
    left: 0;
    z-index: 1000;
  }
}

.sitelogo__img {
  width: 40%;
  padding: 12% 0 0;
  background-image: url("img/koia-text.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
@media only screen and (min-width: 1000px) {
  .sitelogo__img {
    width: 70%;
    padding: 19% 0 0;
  }
}
@media only screen and (min-width: 1200px) {
  .sitelogo__img {
    width: 50%;
    padding: 15% 0 0;
  }
}
@media only screen and (min-width: 1400px) {
  .sitelogo__img {
    width: 40%;
    padding: 11% 0 0;
  }
}
@media only screen and (min-width: 1600px) {
  .sitelogo__img {
    width: 30%;
    padding: 8% 0 0;
  }
}

.sitelogo--padder .sitelogo__img {
  background-image: none;
  visibility: hidden;
}

/*  ==========================================================================
	sitefooter
	========================================================================== */
@media only screen and (min-width: 1000px) {
  .sitefooter {
    padding: 0 1em 2em;
    box-sizing: border-box;
  }
}
#navpage__content .sitefooter {
  width: 100%;
  float: none;
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
  margin-top: 1em;
}
.sitefooter h3 {
  margin-top: 0;
}
.sitefooter .sitefooter__logo {
  width: 50px;
  padding: 83px 0 0;
  background-image: url("img/koia-solid.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  display: block;
  margin: 0 auto 2em;
}
@media only screen and (min-width: 700px) {
  .sitefooter .sitefooter__logo {
    position: absolute;
    right: 0;
    top: 0;
    width: 7%;
    padding: 11% 0 0 0;
  }
}
.sitefooter .sitefooter__alchemy {
  margin-top: 1em;
}
.sitefooter .sitefooter__nav {
  margin-top: 0.5em;
}
@media only screen and (min-width: 700px) {
  .sitefooter .sitefooter__nav {
    display: inline-block;
    margin-top: 0;
  }
}
.sitefooter .sitefooter__nav ul {
  list-style: none;
  margin: 0;
}
.sitefooter .sitefooter__nav ul li {
  margin: 0;
}
@media only screen and (min-width: 550px) {
  .sitefooter .sitefooter__nav ul li {
    display: inline-block;
    padding: 0 1em;
    position: relative;
  }
  .sitefooter .sitefooter__nav ul li:after {
    content: "";
    height: 70%;
    width: 0;
    border-right: 1px solid #092145;
    position: absolute;
    right: 0;
    top: 15%;
  }
  .sitefooter .sitefooter__nav ul li:first-child {
    padding-left: 0;
  }
}
@media only screen and (min-width: 550px) and (min-width: 700px) {
  .sitefooter .sitefooter__nav ul li:first-child {
    padding-left: 1em;
  }
}
@media only screen and (min-width: 550px) {
  .sitefooter .sitefooter__nav ul li:last-child:after {
    display: none;
  }
}
@media only screen and (min-width: 700px) {
  .sitefooter .sitefooter__copyright {
    display: inline-block;
  }
}
.sitefooter .signup__details {
  margin-bottom: 0;
}
.sitefooter .sitefooter__details {
  text-align: center;
}
@media only screen and (min-width: 700px) {
  .sitefooter .sitefooter__details {
    margin-top: 1em;
    text-align: left;
  }
}
.sitefooter .consultation_cta {
  margin-top: 2em;
  padding-bottom: 2em;
}
@media only screen and (min-width: 700px) {
  .sitefooter .consultation_cta {
    margin-top: 0;
  }
}
@media only screen and (min-width: 1000px) {
  .sitefooter {
    width: 80%;
    float: left;
    margin-left: 20%;
  }
}
.sitefooter form {
  position: relative;
}
.sitefooter form input[type="email"] {
  padding-right: 4em;
}
.sitefooter form input[type="submit"],
.sitefooter form button[type="submit"] {
  position: absolute;
  right: 1px;
  top: 1px;
}

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

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

/*  ==========================================================================
	sitenav
	========================================================================== */
body.nav-active {
  position: fixed;
  height: 100vh;
  overflow: hidden;
}

/* Sub nav overlay */
.subnav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background-color: #002244;
  opacity: 0;
  z-index: 12;
  transition: opacity 0.5s ease-in-out;
  -webkit-transition: opacity 0.5s ease-in-out;
  pointer-events: none;
  display: none;
}
@media only screen and (min-width: 1000px) {
  .subnav-overlay {
    display: block;
  }
}
.subnav-overlay .subnav-overlay__logo {
  position: absolute;
  top: 2em;
  right: 2em;
  width: 58px;
  height: 95px;
  background-image: url("img/koia.neg.svg");
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 10;
}
.subnav-overlay .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: opacity 0.5s ease-in-out;
  -webkit-transition: opacity 0.5s ease-in-out;
}

.nav-active .subnav-overlay {
  opacity: 1;
  pointer-events: auto;
  cursor: url("img/close_btn.png"), pointer;
}

.ie .subnav-overlay {
  display: none;
}

.ie .nav-active .subnav-overlay {
  display: block;
}

/* Site nav background */
.sitenav-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: -2;
  background: #fff;
}
@media screen and (max-width: 999px) {
  .sitenav-bg {
    width: 300vw !important;
  }
}

/* Main Site Nav */
.sitenav {
  font-family: orator-std, monospace;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 4em;
}
@media only screen and (min-width: 550px) {
  .sitenav {
    margin-top: 6em;
  }
}
@media only screen and (min-width: 1000px) {
  .sitenav {
    margin-top: 0;
  }
}
.sitenav ul {
  list-style: none;
}
.sitenav li {
  margin: 1em 0;
  position: relative;
}
.sitenav li a {
  cursor: pointer;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.sitenav .subnav__parent h3 {
  margin-top: 0;
  font-weight: 400;
}
.sitenav .subnav__parent__desc {
  margin-bottom: 0.5em;
}
.sitenav .subnav__link--parent,
.sitenav .subnav__parent__desc {
  font-family: proxima-nova, sans-serif;
  font-weight: 400;
  text-transform: none;
}

.subnav--main {
  height: 100vh;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  box-sizing: border-box;
}

.subnav-wrap {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
  z-index: 60;
}
.subnav-wrap ul {
  width: 100%;
  box-sizing: border-box;
  padding: 40px 2em 150px;
}
@media only screen and (min-width: 550px) {
  .subnav-wrap ul {
    padding: 40px 3em 150px;
  }
}
@media only screen and (min-width: 1000px) {
  .subnav-wrap ul {
    padding: 80px 2em;
  }
}

.subnav-wrap.active {
  display: block;
}

.subnav {
  position: absolute;
  width: 100%;
  pointer-events: none;
}
.subnav li {
  position: relative;
  box-sizing: border-box;
  opacity: 0;
}

.subnav.active {
  pointer-events: auto;
}

/* Sub Sub Nav */
.subsubnav-wrap {
  display: none;
  position: absolute;
  width: 100%;
  left: 100%;
  top: 0;
  height: 100vh;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}
.subsubnav-wrap .subsubnav__desc,
.subsubnav-wrap .subsubnav__price {
  font-family: proxima-nova, sans-serif;
  text-transform: none;
  margin-bottom: 0;
}
.subsubnav-wrap .subsubnav__title {
  margin-top: 0;
  text-transform: none;
}

.subsubnav-wrap.active {
  display: block;
}

.subnav .subsubnav {
  position: absolute;
  display: none;
  padding: 40px 2em 150px;
  pointer-events: none;
}
@media only screen and (min-width: 550px) {
  .subnav .subsubnav {
    padding: 40px 3em 150px;
  }
}
@media only screen and (min-width: 1000px) {
  .subnav .subsubnav {
    padding: 80px 2em;
  }
}
.subnav .subsubnav li {
  opacity: 0;
}
.subnav .subsubnav li a:after {
  display: none !important;
}

.subnav .subsubnav.active {
  pointer-events: auto;
  display: block;
}

/* Nav Page */
.navpage-wrap {
  display: none;
  position: absolute;
  width: 400%;
  left: 100%;
  top: 0;
  height: 100vh;
  z-index: 100;
}
.navpage-wrap .navpage__back {
  position: absolute;
  opacity: 0;
  z-index: 10;
  padding: 1em;
  font-size: 2em;
  right: 0;
  color: #d0103a;
  cursor: pointer;
}
.navpage-wrap .navpage__back i {
  padding: 0;
}
.navpage-wrap .navpage {
  position: absolute;
  width: 100%;
  top: 0;
  pointer-events: none;
}
.navpage-wrap .navpage.active {
  pointer-events: auto;
}
.navpage-wrap .navpage__content {
  opacity: 0;
  padding: 7% 2em 0 2em;
  height: 100vh;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  box-sizing: border-box;
}

.navpage-wrap.active {
  display: block;
}

/*  ==========================================================================
	Page Transitions
	========================================================================== */
body.page-transitioning {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

.transition-overlay {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  color: #fff;
  z-index: 300;
  pointer-events: none;
  text-align: center;
  box-sizing: border-box;
}

.ie .transition-overlay {
  display: none !important;
}

.transition-overlay .transition-overlay__content {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: url("img/koia.pos.svg");
  background-repeat: no-repeat;
  background-size: 15% auto;
  background-position: center;
}
@media only screen and (min-width: 550px) {
  .transition-overlay .transition-overlay__content {
    background-size: 5% auto;
  }
}

.transition-overlay .transition-overlay__content.out {
  -webkit-filter: blur(8px);
  -webkit-transform: scale(1.4, 1.4);
  opacity: 0;
  -webkit-transition: all 500ms ease-out;
  transition: all 500ms ease-out;
  visibility: hidden;
}

.transition-overlay .transition-overlay__content.in {
  -webkit-filter: blur(0px);
  -webkit-transform: scale(1.4, 1.4);
  -webkit-transition: all 500ms ease-in;
  transition: all 500ms ease-in;
  visibility: visible;
}

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