@charset "UTF-8";
/**
 * style.css
 *
Theme Name: Sustainable Execution
 * Theme URI:   http://www.machine-agency.com
 * Author:      Machine
 * Author URI:  http://www.machine-agency.com
Description: Custom Theme for Sustainable Execution
 * Version:     1.2
 * License:     GNU General Public License v2 or later
 * License URI: http://www.gnu.org/licenses/gpl-2.0.html
 * Tags:        light
 * Text Domain: machine
 */
/**
 * TABLE OF CONTENTS
 *
 * --- DEFAULTS ---
 * Webfont Loading
 * Typography
 * Icons
 * Section Defaults
 *
 * --- OBJECTS ---
 * Buttons
 * Alerts
 * Slider
 * Impact Areas
 * Forms
 * Tables
 *
 * --- PLUGINS ---
 * Slider
 * Parallax
 * Lazyload
 *
 *
 * --- GLOBALS ---
 * Site-header
 * Site-footer
 */
/**
 * STATES
 *
 * States are usually dynamically added to objects by plugins and scripts, but
 * can also be used in mark-up if needed. They should also be used for things
 * like navigational helpers on tablets, where there's no native hover state.
 *
 * Add additional states to the list when needed.
 *
 * .is-hovered       -> The item is hovered by a pointing device
 * .is-focused       -> The item is focused (e.g. after a click)
 * .is-active        -> The item is active
 * .is-inactive      -> The item is inactive
 *
 * .is-open          -> The item is open (e.g. a menu)
 * .is-closed        -> The item is closed
 *
 * .is-animating-in  -> The item is animating in (e.g. a slide)
 * .is-animating-out -> The item is animating out
 */

/* ==========================================================================
   Webfont loading (beat the FOUT)
   ========================================================================== */
/**
 * Since we use an asynchronous font loader, we hide the entire document until
 * the fonts have been loaded (or have failed to load).
 */
body {
  /*opacity: 0;*/
  -webkit-transition: all 1s cubic-bezier(.25,1,.25,1);
     -moz-transition: all 1s cubic-bezier(.25,1,.25,1);
       -o-transition: all 1s cubic-bezier(.25,1,.25,1);
          transition: all 1s cubic-bezier(.25,1,.25,1);
  -webkit-transition-property: opacity;
       -o-transition-property: opacity;
     -moz-transition-property: opacity;
          transition-property: opacity;
}
.wf-active body,
.wf-inactive body { opacity: 1; }

/* ==========================================================================
   Typography
   ========================================================================== */
body {
  color: #222;
  font-family: 'museo-sans', 'Helvetica', 'Arial', sans-serif;
  font-weight: 300;
  font-size: .95rem;
}
/* Headings */
h1, .alpha   { color: #66720b; font-family: 'museo-sans', 'Helvetica', 'Arial', sans-serif; font-size: 2.500em; line-height: 1.2; margin: 0; font-weight: 300; }
h2, .beta    { color: #66720b; font-family: 'museo-sans', 'Helvetica', 'Arial', sans-serif; font-size: 2.000em; line-height: 1.2; margin: 0; font-weight: 300; }
h3, .gamma   { color: #617c79; font-family: 'museo-sans', 'Helvetica', 'Arial', sans-serif; font-size: 1.8em;   line-height: 1.2; margin: 0; font-weight: 300; }
h4, .delta   { color: #66720b; font-family: 'museo-sans', 'Helvetica', 'Arial', sans-serif; font-size: 1.100em; line-height: 1.2; margin: 0; font-weight: 300; }
h5, .epsilon { color: #66720b; font-family: 'museo-sans', 'Helvetica', 'Arial', sans-serif; font-size: 0.950em; line-height: 1.2; margin: 0; font-weight: 300; }
h6, .zeta    { color: #66720b; font-family: 'museo-sans', 'Helvetica', 'Arial', sans-serif; font-size: 0.875em; line-height: 1.2; margin: 0; font-weight: 300; }

/* Paragraphs & related elements */
p {
  margin: 1.5rem 0;
  line-height: 1.4;
}
.lead {
  margin: 2rem 0;
  font-size: 1.2rem;
}
hr {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

/* Links */
a:link,
a:visited {
  color: #000;
  text-decoration: underline;
}
a:hover,
a:focus {
  color: #000;
  text-decoration: none;
  opacity: 0.7;
}
a:active {
  color: #000;
  opacity: 0.7;
}

/* Selection Highlight */
::selection {
  background-color: #7eb6f0;
}


/* ==========================================================================
   Icons
   ========================================================================== */

/* Copy icons from an icomoon project stylesheet here. Please ensure they prefixed
   with .icon-- */



/* ==========================================================================
   Section Defaults
   ========================================================================== */
.section {
  padding: 4rem 0;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
/**
 * Displays an element as if it was a button.
 *
 * Can be used on virtually any element, but recommended only for links, buttons
 * and input elements, or elements that have JavaScript interactions with
 * button-like behaviour.
 */
.btn {
  display: inline-block;
  padding: 0.5rem 2rem;
  border: 1px solid transparent;
  color: inherit;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  background-color: #eee;
}
/* States */
.btn:link,
.btn:visited {
  color: #333;
  text-decoration: none;
  background-color: #eee;
}
.btn:hover,
.btn:focus {
  text-decoration: none;
  background-color: #ccc;
  outline: none;
}
.btn:active,
.btn.is-active {
  background-color: #bbb;
}
/* Modifiers */
.btn--round {
  -webkit-border-radius: 99999px;
          border-radius: 99999px;
}
.btn--rounded {
  -webkit-border-radius: 3px;
          border-radius: 3px;
}
.btn--full {
  width: 100%;
}
/* Button variations
   ========================================================================== */
/* Buttons of primary importance */
.btn--primary,
.btn--primary:link,
.btn--primary:visited {
  color: #fff;
  background-color: #577491;
}
.btn--primary:hover,
.btn--primary:focus {
  background-color: #698caf;
}
.btn--primary:active {
  background-color: #698caf;
}
/* Buttons of secondary importance */
.btn--secondary,
.btn--secondary:link,
.btn--secondary:visited {
  color: #fff;
  background-color: #333;
}
.btn--secondary:hover,
.btn--secondary:focus {
  background-color: #3f3f3f;
}
.btn--secondary:active {
  background-color: #262626;
}
/* Menu button
   ========================================================================== */
/**
 * The menu button is exclusively used for toggling the navigation menu on
 * mobile devices, but could be used elsewhere when needed.
 */
.btn--menu {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-block;
  padding: 8px 5px;
  color: #3b617d;
  text-transform: uppercase;
  background-color: transparent;
  -webkit-transition: all 0.2s cubic-bezier(.6,.2,.6,.9);
     -moz-transition: all 0.2s cubic-bezier(.6,.2,.6,.9);
       -o-transition: all 0.2s cubic-bezier(.6,.2,.6,.9);
          transition: all 0.2s cubic-bezier(.6,.2,.6,.9);
}
@media only screen and (min-width: 40em) {
  .btn--menu {
    display: none;
  }
}
/* States */
.btn--menu:hover,
.btn--menu:focus,
.btn--menu.is-hovered,
.btn--menu.is-focused,
.btn--menu.is-active {
  outline: none;
  color: #436e8e;
  background-color: transparent;
}
.btn--menu:active {
  background-color: transparent;
}
/* Bar icon
   ========================================================================== */
/**
 * The `hamburger` icon is mainly used inside the `btn--menu` element.
 */
.btn--menu .bar,
.btn--menu .bar:before,
.btn--menu .bar:after {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 23px;
  height: 2px;
  background-color: #3b617d;
  -webkit-transition: all 0.2s cubic-bezier(.6,.2,.6,.9);
     -moz-transition: all 0.2s cubic-bezier(.6,.2,.6,.9);
       -o-transition: all 0.2s cubic-bezier(.6,.2,.6,.9);
          transition: all 0.2s cubic-bezier(.6,.2,.6,.9);
}
.btn--menu .bar {
  margin-top: -2px;
  margin-left: 4px;
}
.btn--menu .bar:before,
.btn--menu .bar:after {
  content: '';
  position: absolute;
  left: 0;
}
.btn--menu .bar:before {
  top: -6px;
}
.btn--menu .bar:after {
  bottom: -6px;
}
/* States */
.btn--menu:hover .bar,
.btn--menu:hover .bar:before,
.btn--menu:hover .bar:after,
.btn--menu:focus .bar,
.btn--menu:focus .bar:before,
.btn--menu:focus .bar:after,
.btn--menu.is-hovered .bar,
.btn--menu.is-hovered .bar:before,
.btn--menu.is-hovered .bar:after,
.btn--menu.is-focused .bar,
.btn--menu.is-focused .bar:before,
.btn--menu.is-focused .bar:after,
.btn--menu.is-active .bar,
.btn--menu.is-active .bar:before,
.btn--menu.is-active .bar:after {
  background-color: #436e8e;
}
.btn--menu.is-active .bar,
.btn--menu.is-active:hover .bar,
.btn--menu.is-active:focus .bar {
  background-color: transparent;
  -webkit-transition-delay: 0s;
     -moz-transition-delay: 0s;
       -o-transition-delay: 0s;
          transition-delay: 0s;
}
/**
 * The bars rotate into an `x` shape to indicate the user can close the menu.
 * This can be adjusted as required.
 */
.btn--menu.is-active .bar:before {
  top: 0;
  -webkit-transform: rotate(-45deg);
     -moz-transform: rotate(-45deg);
       -o-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.btn--menu.is-active .bar:after {
  bottom: 0;
  -webkit-transform: rotate(45deg);
     -moz-transform: rotate(45deg);
       -o-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* ==========================================================================
   Alerts
   ========================================================================== */
.alert {
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
}

.alert--warning {
  color: #8a6d3b;
  border-color: #faebcc;
  background-color: #fcf8e3;
}

.alert--error {
  color: #a94442;
  border-color: #ebccd1;
  background-color: #f2dede;
}

.alert--success {
  color: #3c763d;
  border-color: #d6e9c6;
  background-color: #dff0d8;
}

/* ==========================================================================
   Slider
   ========================================================================== */
/**
 * Sliders are dynamically sliding content areas (usually used as an impact
 * area) and contain slides to progressively show to the user.
 */

.section--slider {
  padding: 0;
}

.slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 10rem;
  background-color: #333;
}
/* Slider slides
   ========================================================================== */
.slider__slides {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
  .slider__overlay {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;

    background-color: #000;
    opacity: 0.4;
  }
  .slider__slide {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    z-index: 1;
    opacity: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    overflow: hidden;
    -webkit-transition: opacity 0.8s cubic-bezier(.6,.1,.4,.9);
       -moz-transition: opacity 0.8s cubic-bezier(.6,.1,.4,.9);
         -o-transition: opacity 0.8s cubic-bezier(.6,.1,.4,.9);
            transition: opacity 0.8s cubic-bezier(.6,.1,.4,.9);
  }
  .no-js .slider__slide:first-child {
    display: block;
  }
    .slide__wrapper {
      display: table;
      width: 100%;
      height: 100%;
    }

      .slide__content {
        display: table-cell;
        position: relative;
        z-index: 2;

        padding: 2rem 1rem 0;

        vertical-align: middle;
      }

        .slider__heading {
          margin: 0 0 0.5rem;
          color: #fff;
          font-size: 2rem;
          font-weight: 300;
          line-height: 1.2;
          -webkit-font-smoothing: antialiased;
          -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
          -webkit-transform: translate3d(0, 0, 0);
             -moz-transform: translate3d(0, 0, 0);
              -ms-transform: translate3d(0, 0, 0);
               -o-transform: translate3d(0, 0, 0);
                  transform: translate3d(0, 0, 0);
        }
        .slider__subheading {
          margin: 0;
          color: #fff;
          font-size: 1.4rem;
          font-weight: 300;
          -webkit-font-smoothing: antialiased;
          -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
          -webkit-transform: translate3d(0, 0, 0);
             -moz-transform: translate3d(0, 0, 0);
              -ms-transform: translate3d(0, 0, 0);
               -o-transform: translate3d(0, 0, 0);
                  transform: translate3d(0, 0, 0);
          }
/* States */
.slider__slide.is-inactive {
  z-index: 0;
  opacity: 0;
}
.slider__slide.is-animating-in {
  z-index: 1;
  opacity: 1;
}
.slider__slide.is-animating-out {
  z-index: 2;
  opacity: 0;
}
.slider__slide.is-active {
  opacity: 1;
}
/* Slider arrows
   ========================================================================== */
.slider__arrow {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 1000;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  border-radius: 999px;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
  background-color: transparent;
  cursor: pointer;
  -webkit-transform-origin: 50% 50%;
      -ms-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transition: all 0.2s cubic-bezier(.6,.1,.4,.9);
          transition: all 0.2s cubic-bezier(.6,.1,.4,.9);
}
  .slider__arrow:before,
  .slider__arrow:after {
    content: '';
    position: absolute;
    top: 50%;
    width: 3px;
    height: 40%;
    background-color: #fff;
    -webkit-transition: all 0.2s cubic-bezier(.6,.1,.4,.9);
            transition: all 0.2s cubic-bezier(.6,.1,.4,.9);
  }
  .slider__arrow:before {
    top: 10%;
  }
  /* Previous */
  .slider__arrow--prev:before,
  .slider__arrow--prev:after {
    left: 15px;
  }
  .slider__arrow--prev:before {
    -webkit-transform-origin: 0 100%;
        -ms-transform-origin: 0 100%;
            transform-origin: 0 100%;
    -webkit-transform: rotate(30deg) translateZ(0);
        -ms-transform: rotate(30deg) translateZ(0);
            transform: rotate(30deg) translateZ(0);
  }
  .slider__arrow--prev:after {
    -webkit-transform-origin: 0 0;
        -ms-transform-origin: 0 0;
            transform-origin: 0 0;
    -webkit-transform: rotate(-30deg) translateZ(0);
        -ms-transform: rotate(-30deg) translateZ(0);
            transform: rotate(-30deg) translateZ(0);
  }
  /* Next */
  .slider__arrow--next {
    left: auto;
    right: 0;
  }
  .slider__arrow--next:before,
  .slider__arrow--next:after {
    left: 30px;
  }
  .slider__arrow--next:before {
    -webkit-transform-origin: 100% 100%;
        -ms-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
    -webkit-transform: rotate(-30deg) translateZ(0);
        -ms-transform: rotate(-30deg) translateZ(0);
            transform: rotate(-30deg) translateZ(0);
  }
  .slider__arrow--next:after {
    -webkit-transform-origin: 100% 0;
        -ms-transform-origin: 100% 0;
            transform-origin: 100% 0;
    -webkit-transform: rotate(30deg) translateZ(0);
        -ms-transform: rotate(30deg) translateZ(0);
            transform: rotate(30deg) translateZ(0);
  }
/* States */
.slider__arrow:hover {
  background-color: #fff;
}
.slider__arrow:hover:before,
.slider__arrow:hover:after {
  background-color: #6ab2cd;
}
.slider__arrow--prev:hover:before,
.slider__arrow--next:hover:after {
  -webkit-transform: rotate(45deg) translateZ(0);
      -ms-transform: rotate(45deg) translateZ(0);
          transform: rotate(45deg) translateZ(0);
}
.slider__arrow--prev:hover:after,
.slider__arrow--next:hover:before {
  -webkit-transform: rotate(-45deg) translateZ(0);
      -ms-transform: rotate(-45deg) translateZ(0);
          transform: rotate(-45deg) translateZ(0);
}
.slider__arrow--prev,
.slider__arrow--prev.is-inactive {
  -webkit-transform: translateX(-100%) translateZ(0);
      -ms-transform: translateX(-100%) translateZ(0);
          transform: translateX(-100%) translateZ(0);
}
.slider__arrow--next,
.slider__arrow--next.is-inactive {
  -webkit-transform: translateX(100%) translateZ(0);
      -ms-transform: translateX(100%) translateZ(0);
          transform: translateX(100%) translateZ(0);
}
.slider__arrow--next.is-active {
  -webkit-transform: translateX(-10px) translateZ(0);
      -ms-transform: translateX(-10px) translateZ(0);
          transform: translateX(-10px) translateZ(0);
}
.slider__arrow--prev.is-active {
  -webkit-transform: translateX(10px) translateZ(0);
      -ms-transform: translateX(10px) translateZ(0);
          transform: translateX(10px) translateZ(0);
}
/* Dots
   ========================================================================== */
.slider__dots {
  display: none;
  position: absolute;
  bottom: 16px;
  left: 0;
  z-index: 1000;
  width: 100%;
  list-style-type: none;
  margin: 0;
  padding: 0;
  text-align: center;
  -webkit-transition: all 0.2s cubic-bezier(.6,.1,.4,.9);
          transition: all 0.2s cubic-bezier(.6,.1,.4,.9);
}
/* States */
.slider__dots,
.slider__dots.is-inactive {
  opacity: 0;
  -webkit-transform: translateY(100%) translateZ(0);
      -ms-transform: translateY(100%) translateZ(0);
          transform: translateY(100%) translateZ(0);
}
.slider__dots.is-active {
  opacity: 1;
  -webkit-transform: translateY(0) translateZ(0);
      -ms-transform: translateY(0) translateZ(0);
          transform: translateY(0) translateZ(0);
}
  .slider__dot {
    display: inline-block;
    width: 14px;
    height: 14px;
    margin: 0 0.15rem;
    border: 2px solid transparent;
    -webkit-border-radius: 999px;
            border-radius: 999px;
    background-color: #fff;
    -webkit-background-clip: content;
       -moz-background-clip: content;
            background-clip: content-box;
    cursor: pointer;
    -webkit-transition: all 0.5s ease;
       -moz-transition: all 0.5s ease;
         -o-transition: all 0.5s ease;
            transition: all 0.5s ease;
  }
  /* States */
  .slider__dot:hover {
    background-color: #6ab2cd;
  }
  .slider__dot:active,
  .slider__dot.is-active {
    border-color: #fff;
    background-color: transparent;
  }
@media only screen and (min-width: 40em) {
  .slider {
    height: 28rem;
  }
    .slide__wrapper {
      max-width: 45em;
      margin: auto;
    }
      .slider__heading {
        font-size: 3rem;
      }
      .slider__subheading {
        font-size: 1.8rem;
      }
  .slider__dots {
    display: block;
  }
}
@media only screen and (min-width: 60em) {
  .slider {
    height: 34rem;
  }
    .slider__heading {
      font-size: 3.6rem;
    }
    .slider__subheading {
      font-size: 1.5rem;
    }
}
/* ==========================================================================
   Parallax
   ========================================================================== */
/*.parallax {}*/
/* ==========================================================================
   Lazyload
   ========================================================================== */
[data-lazyload] {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
          transition: all 0.3s ease-out;
  -webkit-transition-property: opacity, -webkit-transform;
          transition-property: opacity,         transform;
}
.is-lazyloaded {
  opacity: 1;
}
/* ==========================================================================
   Impact areas
   ========================================================================== */
/**
 * A large content area usually found at either the very top of a page, or in
 * between other content to draw attention.
 *
 * If a background image is present, we put it on its own layer for performance
 * reasons (e.g. when using a parallax effect, it drastically improves the
 * performance as it gets composited instead of redrawn).
 */
.section--impact {
  padding: 0;
}

.impact {
  position: relative;
  overflow: hidden;
  padding: 3rem 0;
  color: #fff;
}
  .impact__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .impact__heading {
    font-size: 2rem;
  }
  .impact__subheading {
    font-size: 1.4rem;
  }
  .impact__body {
    font-size: 1.2rem;
  }
@media only screen and (min-width: 40em) {
  .impact {
    padding: 8rem 0;
  }
  .impact__heading {
    font-size: 3rem;
  }
  .impact__subheading {
    font-size: 1.7rem;
  }
  .impact__body {
    font-size: 1.3rem;
  }
}
@media only screen and (min-width: 60em) {
  .impact {
    padding: 12rem 0;
  }
    .impact__heading {
      font-size: 4rem;
    }
    .impact__subheading {
      font-size: 2rem;
    }
    .impact__body {
      font-size: 1.4rem;
    }
}
/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Default form styling in order to make sure some elements look proper when
 * there's no way to class individual elements.
 *
 * Labels, when hovered, will change the border color of the associated input
 * element if it directly follows the label.
 *
 * [1] Input elements that are nested within labels (usually checkboxes or
 *     radio-buttons), display as inline-blocks.
 */
 ::-webkit-input-placeholder {
    color: #eee;
 }

 :-moz-placeholder { /* Firefox 18- */
    color: #eee;
 }

 ::-moz-placeholder {  /* Firefox 19+ */
    color: #eee;
 }

 :-ms-input-placeholder {
    color: #eee;
 }

label {
  display: inline-block;
  cursor: pointer;
}
  label > input {
    display: inline-block; /* [1] */
    width: auto;
    margin-right: 0.5rem;
  }

html input[disabled],
html textarea[disabled] {
  cursor: not-allowed;
  background-color: #f4f4f4;
}

input[type=color],
input[type=date],
input[type=datetime],
input[type=email],
input[type=file],
input[type=month],
input[type=number],
input[type=password],
input[type=range],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
select,
textarea {
  display: block;
  width: 100%;
  padding: 0.25em 0.5em;
  border: 1px solid #ccc;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  color: #444;
  font-weight: 300;
}
input[type=color]:hover,
input[type=date]:hover,
input[type=datetime]:hover,
input[type=email]:hover,
input[type=file]:hover,
input[type=month]:hover,
input[type=number]:hover,
input[type=password]:hover,
input[type=range]:hover,
input[type=search]:hover,
input[type=tel]:hover,
input[type=text]:hover,
input[type=time]:hover,
input[type=url]:hover,
input[type=week]:hover,
select:hover,
textarea:hover,
label:hover + input[type=color]:hover,
label:hover + input[type=date]:hover,
label:hover + input[type=datetime]:hover,
label:hover + input[type=email]:hover,
label:hover + input[type=file]:hover,
label:hover + input[type=month]:hover,
label:hover + input[type=number]:hover,
label:hover + input[type=password]:hover,
label:hover + input[type=range]:hover,
label:hover + input[type=search]:hover,
label:hover + input[type=tel]:hover,
label:hover + input[type=text]:hover,
label:hover + input[type=time]:hover,
label:hover + input[type=url]:hover,
label:hover + input[type=week]:hover,
label:hover + select,
label:hover + textarea {
  border-color: #aaa;
}
input[type=color]:focus,
input[type=date]:focus,
input[type=datetime]:focus,
input[type=email]:focus,
input[type=file]:focus,
input[type=month]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=range]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=time]:focus,
input[type=url]:focus,
input[type=week]:focus,
select:focus,
textarea:focus,
label:hover + input[type=color]:focus,
label:hover + input[type=date]:focus,
label:hover + input[type=datetime]:focus,
label:hover + input[type=email]:focus,
label:hover + input[type=file]:focus,
label:hover + input[type=month]:focus,
label:hover + input[type=number]:focus,
label:hover + input[type=password]:focus,
label:hover + input[type=range]:focus,
label:hover + input[type=search]:focus,
label:hover + input[type=tel]:focus,
label:hover + input[type=text]:focus,
label:hover + input[type=time]:focus,
label:hover + input[type=url]:focus,
label:hover + input[type=week]:focus,
label:hover + select:focus,
label:hover + textarea:focus {
  outline: none;
  border-color: #888;
}

/* Gravity Forms
   ========================================================================== */

.gform_fields {
  padding: 0;
  list-style-type: none;
}

.gfield {
  padding-bottom: 1rem;
}

.gfield_radio {
  list-style-type: none;
  padding-left: 0;
}

.gfield_radio input[type="radio"] {
  margin-right: 0.75rem;
}

/* Validation */
.validation_message {
  color: #a94442;
  font-size: 0.9rem;
  padding-top: 0.25rem;
}

.gfield_error input,
.gfield_error textarea,
.gfield_error select {
  border-color: #a94442;
}

.gform_footer {
  text-align: center;
}

/* Selectric
   ========================================================================== */
.selectric-wrapper {
  position: relative;
  cursor: pointer;
}

.selectric-disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.selectric-open {
  z-index: 9999;
}

.selectric-open .selectric-items {
  display: block;
}

.selectric-hide-select {
  position: relative;
  overflow: hidden;
  width: 0;
  height: 0;
}

.selectric-hide-select select {
  position: absolute;
  left: -100%;
  display: none;
}

.selectric-input {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  margin: 0;
  padding: 0;
  width: 1px;
  height: 1px;
  outline: none;
  border: none;
  background: none;
}

.selectric-temp-show {
  position: absolute;
  visibility: hidden;
  display: block;
}

.selectric-open .selectric {
  border-color: #CCC;
  background: #F0F0F0;
  z-index: 9999;
}

.selectric-open .selectric-items {
  display: block;
}

.selectric {
  background-color: #f4f4f4;
  border: 1px solid #ccc;
  border-radius: 4px;
  position: relative;
}

.selectric .label {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 2rem 0 0;
  padding: 0.35rem 0.5rem;
  line-height: 1.5;
  color: #666;
  min-height: 1.75rem;
  text-shadow: 0 1px #FFF;
}

.selectric .button {
  position: absolute;
  right: 0;
  top: 0;
  height: 2.1rem;
  width: 2rem;
  border-left: 1px solid #D2D2D2;
  padding: 0.45rem 0.5rem 1rem 0.5rem;
  color: #888;
}


.selectric-hover .selectric {
  border-color: #CCC;
}

.selectric-hover .selectric .button {
  color: #555;
}

.selectric .button:before {
  content: " ";
  float: left;
  height: 100%;
  border-right: 1px solid #FFF;
  visibility: visible;
}

.selectric-items {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #F8F8F8;
  border: 1px solid #C4C4C4;
  z-index: -1;
  box-shadow: 0 0 10px -6px;
}
.selectric-items .selectric-scroll {
  height: 100%;
  overflow: auto;
}
.selectric-above .selectric-items {
  top: auto;
  bottom: 100%;
}
.selectric-items ul, .selectric-items li {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.5rem;
  min-height: 1.5rem;
}
.selectric-items li {
  display: block;
  padding: 8px;
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #EEE;
  color: #666;
  cursor: pointer;
}
.selectric-items li.selected {
  background: #EFEFEF;
  color: #444;
}
.selectric-items li:hover {
  background: #F0F0F0;
  color: #444;
}
.selectric-items .disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: not-allowed;
  background: none;
  color: #666;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.selectric-items .selectric-group .selectric-group-label {
  font-weight: bold;
  padding-left: 10px;
  cursor: not-allowed;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background: none;
  color: #444;
}
.selectric-items .selectric-group.disabled li {
  filter: alpha(opacity=100);
  opacity: 1;
}
.selectric-items .selectric-group li {
  padding-left: 25px;
}
/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Default table styling in order to make sure some elements look proper when
 * there's no way to class individual elements.
 */
table {
  width: 100%;
  text-align: left;
}
  thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #eee;
  }
  tbody tr {
    border-top: 1px solid #eee;
  }
  th,
  td {
    padding: 0.25rem;
    text-align: left;
  }

/* ==========================================================================
   Site-header
   ========================================================================== */
/**
 * The global header
 *
 * This element usually hosts a logo, the main navigation and other elements
 * that should show up throughout the entire website.
 */
.site-header {
  z-index: 99999;
  height: 4.5rem;
  margin-bottom: 0;
  border-bottom: 1px solid #eee;
  background: #FFF;
}
  .site-header .wrapper {
    width: 100%;
    height: 100%;
  }
@media only screen and (min-width: 40em) {
  .site-header {
    height: 6rem;
  }
    .site-header .wrapper {
      padding: 1rem ;
    }
}
@media only screen and (min-width: 60em) {
  .site-header {
    height: 6rem;
  }
}
/* Sticky site header
   ========================================================================== */
.site-header--sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}
/* ==========================================================================
   Logo
   ========================================================================== */
/**
 * The website's main logo, usually displayed in the site's global header.
 *
 * [1] Remove the max-width to prevent a bug in IE.
 * [2] We scale the image's height instead of width for the logo.
 */
.logo {
  position: absolute;
  top: 16px;
  left: 16px;
  display: block;
}
  .logo__img {
    width: auto;
    max-width: none; /* [1] */
    height: 40px;    /* [2] */
  }
@media only screen and (min-width: 40em) {
    .logo__img {
      height: 56px;
    }
}
@media only screen and (min-width: 60em) {
  .logo {
    top: 24px;
  }
  .logo__img {
    height: 66px;
  }
}
/* ==========================================================================
   Main navigation
   ========================================================================== */
/**
 * The website's main navigation, usually located in the header.
 */

.site-header-app .nav--main .nav__item--logout {
  display: none;
}

@media only screen and (min-width: 40em) {
  .nav--main {
    display: block;
    position: absolute;
    top: 52px;
    right: 16px;
    left: auto;
    width: auto;
    visibility: visible;
    opacity: 1;
  }
    .nav--main .nav__item {
      position: relative;
      display: inline-block;
      width: auto;
    }
      .nav--main .nav__item a {
        margin-left: 0;
        padding-left: 1rem;
        border: 0;
        background-color: transparent;
      }
      .nav--main .nav__item a:link,
      .nav--main .nav__item a:visited {
        color: #111;
      }
      .nav--main .nav__item a:hover,
      .nav--main .nav__item a:focus {
        color: #6ab2cd;
        text-decoration: none;
        background-color: transparent;
      }
      .nav--main .nav__item a:active {
        background-color: transparent;
      }
      .nav--main .nav__item:first-child a {
        border: 0;
      }
}
@media only screen and (min-width: 60em) {
  .nav--main {
    top: 52px;
  }
    .nav--main .nav__item a {
      padding: 0.75rem 1.5rem;
      font-size: 1.1rem;
    }
}
/* ==========================================================================
   Sub navigation
   ========================================================================== */
/**
 * Navigation that is used for drop-down menus. Usually in the main navigation
 * menu.
 */
.nav--sub {
  position: absolute;
  top: 90%;
  visibility: hidden;
  opacity: 0;
  width: 100%;
}
  .nav--sub .nav__item a {
    border-bottom: 1px solid #ddd;
    font-size: 0.875rem;
    background-color: #eee;
  }
  .nav--sub .nav__item a:hover,
  .nav--sub .nav__item a:focus {
    border-color: #bbb;
    color: #333;
    background-color: #ccc;
  }
  .nav--sub .nav__item a:active {
    border-color: #111;
    color: #fff;
    background-color: #333;
  }
/* States */
.nav--sub.is-open,
.nav--sub.is-closed {
  -webkit-transition: all 0.3s cubic-bezier(.7,.2,.3,.8);
          transition: all 0.3s cubic-bezier(.7,.2,.3,.8);
}
.nav--sub.is-open {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
@media only screen and (min-width: 40em) {
  .nav--main .nav__item:hover > .nav--sub,
  .nav--sub .nav__item:hover > .nav--sub {
    visibility: visible;
    opacity: 1;
  }
  .nav--sub {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    width: 10rem;
    margin-left: -80px;
  }
    .nav--sub .nav__item {
      display: block;
    }
      .nav--sub .nav__item a {
        border-bottom: 1px solid #eee;
        background-color: #fff;
      }
      .nav--sub .nav__item a:hover,
      .nav--sub .nav__item a:focus {
        background-color: #eee;
      }
      .nav--sub .nav__item a:active {
        color: #fff;
        background-color: #333;
      }
      .nav--sub .nav__item:first-child a {
        border-bottom: 1px solid #eee;
        border-top: 1px solid #eee;
      }
}
/* ==========================================================================
   Home Page
   ========================================================================== */
  .abslink {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
  }
  .wrapper-medium {
    max-width: 50rem;
  }

  .parallax-container {
    background: transparent;
    min-height: 420px;
  }

  .parallax-container.first {
    min-height: 500px;
  }

  .parallax-container.background {
    padding-top: 2rem;
    overflow: hidden;
    /*margin-bottom: -432px;*/
  }

/*  .home .section-call-to-action {
    min-height: 300px;
  }
  .home .section-features {
    background-image: url('img/features.png');
     background-size: cover;
     background-position: center top;
     background-repeat: no-repeat;
     min-height: 250px;
  }*/
  .home .section-testimonials {
    position: relative;
  }

  .testimonials {
   position: relative;
   padding: 2rem 0;
   z-index: 22;
  }

  .home .section-testimonials .testimonials-background {
    background-image: url('img/testimonials.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    top: -48em;
    right: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    z-index: 21;
    pointer-events: none;
  }

  .feature-image {
    -webkit-box-shadow: 4px 4px 10px 0px rgba(100, 100, 100, 0.75);
    -moz-box-shadow:    4px 4px 10px 0px rgba(100, 100, 100, 0.75);
    box-shadow:         4px 4px 10px 0px rgba(100, 100, 100, 0.75);
  }

  .feature-summary {
    background: rgba(134, 168, 166, 0.4);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    color: #FFF;
    margin-top: .75rem;
  }

  .feature-summary h3 {
    margin-bottom: .5rem;
  }

  .section-testimonials h2 {
    text-transform: uppercase;
    margin-bottom: 2rem;
  }

  .testimonial {
    background: #98ac0c;
    padding: 1.5rem 1.5rem 2rem;
    margin-bottom: 2rem;
  }

  .testimonial h3 {
    margin-top: .5rem;
    text-align: right;
    color: #bed50e;
  }

  .testimonial .wrapper-medium {
    max-width: 45rem;
  }

  .testimonial-content,
  .testimonial-content p {
    color: #5f6b07;
  }

  .testimonial-container {
    position: relative;
  }

  .testimonial-container .testimonial {
  /*  width: calc(100% - 20px);*/
  }

  .testimonial-container:nth-child(even) .arrow {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-right:20px solid #98ac0c;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -20px;
    display: none;
  }

  .testimonial-container:nth-child(even) img.desk-img {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -160px;
    height: 124;
    width: auto;
    display: none;
  }

  .testimonial-container:nth-child(odd) .arrow {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left:20px solid #98ac0c;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -20px;
    display: none;
  }

  .testimonial-container:nth-child(odd) img.desk-img {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    right: -160px;
    height: 124;
    width: auto;
     display: none;
  }

  .testimonial-container img.hand-img {
    float: left;
    -moz-shape-outside: circle();
    -webkit-shape-outside: circle();
    shape-outside: circle();
    margin: 0 .5rem .5rem 0;
  }

  .section--island .wrapper-medium {
    position: absolute;
    top: 18.5%;
    left: 50%;
    -webkit-transform: translate(-50%);
    -o-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -ms-transform: translate(-50%);
    transform: translate(-50%);
    text-align: center;
    max-width: 50em;
    padding: 0;
  }

  .island-text {
    background: #404236;
    padding: 1.25rem .75rem;
    display: inline-block;
    vertical-align: middle;
    margin-left: 0;
    min-width: 300px;
    position: relative;
  }

  .island-book {
    height: 200px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
  }

  .island-text p {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 300;
    color: #c5d627;
    display: inline-block;
    vertical-align: bottom;
  }

  .island-text img {
    display: inline-block;
    vertical-align: bottom;
    width: 2rem;
  }

  .scrollme {
    position: relative;
  }

  @media only screen and (max-height: 30em) {
    .section--island .wrapper-medium {
      top: 50%;
    }
  }

  @media only screen and (min-width: 24em) {
    .home .section-testimonials .testimonials-background {
      top: -40rem;
    }
  }

   @media only screen and (min-width: 25em) {
    .home .section-testimonials .testimonials-background {
      top: -38rem;
    }
  }

  @media only screen and (min-width: 30em) {
    .home .section-testimonials .testimonials-background {
      top: -34rem;
    }
  }

  @media only screen and (min-width: 40em) {
    .home .section-testimonials .testimonials-background {
      top: -29.5rem;
    }
  }

  @media only screen and (min-width: 43.75em) {
    .section--island .wrapper-medium {
      width: 50em;
    }

    .home .section-testimonials .testimonials-background {
      top: -27.5rem;
    }

    .section--island .wrapper-medium {
      text-align: left;
    }

     .section--island .island-book {
      height: 317px;
    }

    .section--island .island-text{
      margin-left: -4rem;
    }

    .island-text p {
      font-size: 2rem;
    }
  }

  @media only screen and (min-width: 68.75em) {
    .testimonial-container:nth-child(odd) img.desk-img,
    .testimonial-container:nth-child(even) img.desk-img {
      display: block;
    }
    .testimonial-container img.hand-img {
      display: none;
    }
    .testimonial-container:nth-child(even) .arrow,
    .testimonial-container:nth-child(odd) .arrow {
      display: block;
    }
  }

  @media only screen and (min-width: 100em) {
    .home .section-testimonials .testimonials-background {
      top: -27vw;
    }
  }

/* ==========================================================================
 Clouds
 ========================================================================== */
  .callout-clouds-left-1 {
    display: none;
  }

  .callout-clouds-right-1 {
    display: none;
  }

  .callout-clouds-left-2 {
    display: none;
  }

  .callout-clouds-right-2 {
    display: none;
  }

  .callout-clouds-left-3 {
    display: none;
  }

  .callout-clouds-right-3 {
    display: none;
  }

  @media only screen and (min-width: 40em) {
    .callout-clouds-left-1 {
      position: absolute;
      top: 0;
      left: -250px;
      z-index: 0;
      pointer-events: none;
      display: block;
    }

    .callout-clouds-right-1 {
      position: absolute;
      top: 0;
      right: -250px;
      z-index: 0;
      pointer-events: none;
      display: block;
    }

    .callout-clouds-left-2 {
      position: absolute;
      top: 33%;
      left: -300px;
      z-index: 0;
      pointer-events: none;
      display: block;
    }

    .callout-clouds-right-2 {
      position: absolute;
      top: 33%;
      right: -300px;
      z-index: 0;
      pointer-events: none;
      display: block;
    }

    .callout-clouds-left-3 {
      position: absolute;
      top: 66%;
      left: -350px;
      z-index: 0;
      pointer-events: none;
      display: block;
    }

    .callout-clouds-right-3 {
      position: absolute;
      top: 66%;
      right: -350px;
      z-index: 0;
      pointer-events: none;
      display: block;
    }
  }

  @media only screen and (min-width: 60em) {
    .callout-clouds-left-1 {
      position: absolute;
      top: 0;
      left: -50px;
      pointer-events: none;
    }

    .callout-clouds-right-1 {
      position: absolute;
      top: 0;
      right: -50px;
      pointer-events: none;
    }

    .callout-clouds-left-2 {
      position: absolute;
      top: 33%;
      left: -100px;
      pointer-events: none;
    }

    .callout-clouds-right-2 {
      position: absolute;
      top: 33%;
      right: -100px;
      pointer-events: none;
    }

    .callout-clouds-left-3 {
      position: absolute;
      top: 66%;
      left: -150px;
      pointer-events: none;
    }

    .callout-clouds-right-3 {
      position: absolute;
      top: 66%;
      right: -150px;
      pointer-events: none;
    }
  }

/* ==========================================================================
 OWl Carousel
 ========================================================================== */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 *  Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}
/*
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel .owl-refresh .owl-item {
  display: none;
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}
.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}
/* No Js */
.no-js .owl-carousel {
  display: block;
}
/*
 *  Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
}
/*
 *  Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}
.owl-controls {
  position: absolute;
  top: 4.5vw;
  left: 0;
  width: 100%;
}
.owl-nav img {
  font-size: 2rem;
  color: #b3bc00;
  height: 2.5rem;
}
.owl-prev {
  position: absolute;
  top: 0;
  left: -.75rem;
}
.owl-next {
  position: absolute;
  top: 0;
  right: -.75rem;
}
.owl-dot {
  background: #fff;
  height: 1.2rem;
  width: 1.2rem;
  border-radius: 99px;
  display: inline-block;
  margin-right: 1rem;
  border: solid 5px #fff;
}

.owl-dot.active {
  background: transparent;
  border-color: #dc1735;
}

.owl-item .item-inner {
  padding: 0 .7rem;
}

/* ==========================================================================
   Site footer
   ========================================================================== */
/**
 * The global footer.
 *
 * This element usually hosts navigation and additional information about the
 * website that shows up on every page.
 */
.site-footer {
  color: #aaa;
  text-align: center;
  font-weight: 300;
  padding: 3rem 0 2.5rem;
  background: #404236;
}

.site-footer a {
  margin-right: .5rem;
}

.site-footer .fa {
  color: #404236;
  padding: .75rem;
  border-radius: 99px;
  background: #d3ea13;
  min-height: 37px;
  min-width: 37px;
  text-align: center;
  border: solid 1px #d3ea13;
  height: 40px;
  width: 40px;
}

.site-footer .fa:hover {
  color: #d3ea13;
  background: #404236;
  border: solid 1px #d3ea13;
}

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

.nav--footer a {
  color: #d3ea13;
  font-weight: 300;
}

.nav--footer a:hover,
.nav--footer a:focus,
.nav--footer a:active {
  text-decoration: underline;
}

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

.nav--footer li {
  display: block;
  margin-bottom: 1.5rem;
}

.nav--legal li {
  display: block;
  margin-top: 1.5rem;
}

.nav--legal a {
  color: #bfbfbf;
  font-weight: 300;
}

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

.nav--legal a:hover,
.nav--legal a:focus,
.nav--legal a:active {
  text-decoration: underline;
}

.island-text img {
  margin-top: 1rem;
}

@media only screen and (min-width: 40em) {
  .island-text img {
    margin-top: 0;
  }

  .site-footer {
    padding: 3rem 0 8rem;
  }

  .nav--footer {
    position: absolute;
    top: 1.5rem;
    text-align: left;
  }

  .nav--legal li,
  .nav--footer li  {
    display: inline-block;
    margin-top: 0;
  }

  .nav--footer a {
    padding: 0 1rem 0 0;
  }

  .nav--legal a {
    padding: 0 0 0 1rem;
  }

  .nav--legal {
    text-align: right;
    position: absolute;
    top: 5rem;
    right: .5rem;
  }

  .footer-media {
    position: absolute;
    top: 0;
    right: .5rem;
  }
}

/* ==========================================================================
   $ Menu
   ========================================================================== */
.b-a, .bar, .bar:before, .bar:after {
  transition: all .25s;
  content: "";
  position: absolute;
  right: 0;
  height: 4px;
  width: 24px;
  border-radius: 15px;
  background-color: rgba(255, 255, 255, 0.95);
}

.menu-collapsed {
  transition: all .25s;
  position: fixed;
  top: 48px;
  right: 16px;
  height: 36px;
  width: 36px;
  z-index: 23;
  cursor: pointer;
}
.menu-collapsed ol {
  transition: all 0s;
  position: fixed;
  right: -9000px;
  opacity: 0;
}

.menu-collapsed a {
  color: #000;
}

.bar {
  position: fixed;
  right: 16px;
  top: 37px;
  background: #c5d627;
-webkit-box-shadow: 1px 1px 1px 0px rgba(150, 150, 150, 0.75);
-moz-box-shadow: 1px 1px 1px 0px rgba(150, 150, 150, 0.75);
box-shadow: 1px 1px 1px 0px rgba(150, 150, 150, 0.75);
}
.bar:before {
  top: -6px;
  background: #c5d627;
-webkit-box-shadow: 1px 1px 1px 0px rgba(150, 150, 150, 0.75);
-moz-box-shadow: 1px 1px 1px 0px rgba(150, 150, 150, 0.75);
box-shadow: 1px 1px 1px 0px rgba(150, 150, 150, 0.75);
}
.bar:after {
  top: 6px;
  background: #c5d627;
-webkit-box-shadow: 1px 1px 1px 0px rgba(150, 150, 150, 0.75);
-moz-box-shadow: 1px 1px 1px 0px rgba(150, 150, 150, 0.75);
box-shadow: 1px 1px 1px 0px rgba(150, 150, 150, 0.75);
}

.b-a-expanded, .menu-expanded .bar:before, .menu-expanded .bar:after {
  transition: all .25s;
  top: 0;
}

.menu-expanded {
  transition: all .25s;
  text-align: center;
  line-height: 200px;
  height: 100%;
  width: 100%;
  border-radius: 0;
  top: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.85);
}
.menu-expanded ol {
  transition: all 0s;
  position: absolute;
  width: 100%;
  left: 0;
  z-index: 2;
  list-style:none;
  padding: 0;
  margin: 0;
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
}
.menu-expanded a {
  /*transition: all .15s;*/
  text-decoration: none;
  font-size: 2em;
  padding: 6vw 0;
  color: #fff;
}
.menu-expanded a:hover {
  transition: all .15s;
  letter-spacing: 2px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}
.menu-expanded .bar {
  background-color: transparent;
  transition: all .25s;
}
.menu-expanded .bar:before {
  transform: rotate(45deg);
}
.menu-expanded .bar:after {
  transform: rotate(-45deg);
}

@media only screen and (min-width: 40em) {
  .menu-collapsed {
    position: static;
  }

   .menu-collapsed ol {
    position: absolute;
    right: 16px;
    opacity: 1;
   }

  .bar {
    display: none;
  }
}

/* ==========================================================================
   Questionnaire
   ========================================================================== */
    .section--questionnaire {
      /*background-image: url(img/app/windmill.jpg);*/
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center top;
    }

    .section--questionnaire > .wrapper {
      margin-top: -5rem;
    }
    /* Wow we need this because of a browser margin collapse bug */
    .single-questionnaire .main {
      padding: 1px 0 0;
    }

    .question-group-container {
      visibility: visible;
      height: auto;
      opacity: 1;
      -webkit-transition: all 1s cubic-bezier(.25,1,.25,1);
      -moz-transition: all 1s cubic-bezier(.25,1,.25,1);
      -o-transition: all 1s cubic-bezier(.25,1,.25,1);
      transition: all 1s cubic-bezier(.25,1,.25,1);
    }
    .question-group-container.hidden-question-group {
      visibility: hidden;
      height: 0;
      opacity: 0;
      overflow-y: hidden;
    }

    .question_page {
      visibility: visible;
      height: auto;
      opacity: 1;
      -webkit-transition: all 1s cubic-bezier(.25,1,.25,1);
      -moz-transition: all 1s cubic-bezier(.25,1,.25,1);
      -o-transition: all 1s cubic-bezier(.25,1,.25,1);
      transition: all 1s cubic-bezier(.25,1,.25,1);
      box-shadow: 0px 6.99px 4.99px rgba(0, 0, 0, 0.15);
      filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0, OffY=6.99, Color='#000000');
      background: #FFF;
    }
    .question_page .question {
      padding: 1.5rem 1.5rem
    }
    .question_page.hidden-question-page {
      visibility: hidden;
      height: 0;
      opacity: 0;
      overflow-y: hidden;
    }
    .app-nav {
      position: relative;
      min-height: 5rem;
      background-color: #FFF;
      padding: 2rem 0;
    }
    .app-nav .previous-page {
      position: relative;
      font-size: 1.25rem;
    }
    .app-nav .next-page {
      position: relative;
      font-size: 1.25rem;
    }
    .page-count {
      position: relative;
      font-size: 1.25rem;
    }
    .nav-button {
      cursor: pointer;
    }
    .answer-list label,
    .answer-list input[type="radio"] {
      display: inline-block;
    }

    .question_page h2 {
      font-size: 1.25rem;
      margin-bottom: 2rem;
      color: #000;
    }

    .answer {
      margin-bottom: .15rem;
    }

    .answer label {
      color: #000;
      font-weight: 400;
    }


    .site-header-app .wrapper {
      padding: 0 1rem;
    }

    .site-header-app-top {
      background-color: #FFF;
      width: 100%;
      position: relative;
      height: 6rem;
      box-shadow : 0px 6.95px 4.96px rgba(0, 0, 0, 0.15);
      filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0, OffY=6.95, Color='#000000') ;
    }

    .site-header-app .header-border {
      height: 1rem;
    }

    .green-background {
      /*background-image: url('img/app/greenback.jpg'); */
      background: #c5d627;
    }

    .app-nav-border {
      height: .5rem;
      width: 100%;
      position: absolute;
      top: 0;
      left: 0;
    }

    .question-header {
      padding: 1rem 2.5rem;
    }

    .site-header.site-header-app {
      height: 20rem;
    }

    .site-header-app {
      background-image: url('img/call-to-action.png');
      background-position: 5% 34%;
      background-repeat: no-repeat;
      border-bottom: none;
    }

    .site-header-app .logo {
      top: 1.25rem;
      left: 2rem;
    }

    .site-header-app .logo__img {
      height: 66px;
    }

    .site-footer-app {
      min-height: 7rem;
    }

    .question-header {
      color: #424238;
      font-size: 1.75rem;
      text-transform: uppercase;
    }

    .answer-list input[type="radio"] {
        display:none;
    }

    .answer-list input[type="radio"] + label span {
        display:inline-block;
        width:19px;
        height:19px;
        margin:-2px 10px 0 0;
        vertical-align:middle;
        cursor:pointer;
        background: linear-gradient(0deg, rgba(34, 47, 55, 1) 0%, rgba(16, 31, 41, 1) 100%);
        border-radius: 3px;
    }

    .answer-list input[type="radio"]:checked + label span:before {
      content: "";
      background-image: url(img/app/marked.svg);
      background-repeat: no-repeat;
      background-position: 2px 1px;
      width:19px;
      height:19px;
      display: block;
    }

    .question h2 sup,
    h2 sup {
      color: #F00;
    }

    @media only screen and (min-width: 35em) {
       .question_page .question {
        padding: 0 0 1.5rem;
       }
       .app-nav {
        padding: 0;
       }
       .app-nav .previous-page {
        position: absolute;
        top: 1.5rem;
        left: 1rem;
        font-size: 1.25rem;
      }
      .app-nav .next-page {
        top: 1.5rem;
        position: absolute;
        right: 1rem;
        font-size: 1.25rem;
      }
      .page-count {
        position: absolute;
        top: 1.5rem;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        font-size: 1.25rem;
      }
    }

  .questionnaire--questions .question-header {
    padding: 0 2.5rem;
    font-size: 1.35rem;
    font-weight: 700;
  }

  .questionnaire--questions .answer-list {
    width: 100%;
    display: inline-block;
    text-align: right;
    background: #c5d627;
    padding: .25rem 2.25rem;
  }
  .questionnaire-legend ol {
    margin: 0;
  }
  .questionnaire-legend {
    background:#FFF;
    padding: 2.5rem 0 1rem;
  }

  .questionnaire-legend li {
    display: inline-block;
    width:20%;
    text-align: center;
  }
/* ==========================================================================
   Register
   ========================================================================== */
   .code-form-spacer {
    margin: 0 auto;
    max-width: 12rem;
   }
   .code-form-spacer input {
    border: solid 1px #bdd60e;
    height: 3rem;
    color: #bdd60e;
    font-size: 1.8rem;
    display: inline-block;
    width: calc( 100% - 2rem );
   }
   .registration-form-spacer {
    margin: 0 auto;
    max-width: 30rem;
   }
   .registration-form-spacer input {
    border: solid 1px #bdd60e;
    height: 3rem;
    color: #bdd60e;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
   }
   .registration-form-spacer .ajax-submit {
    margin: 0 auto;
    display: block;
    width: 1.9rem;
   }
   div[data-form] {
    -webkit-transition: all 1s cubic-bezier(.25,1,.25,1);
    -moz-transition: all 1s cubic-bezier(.25,1,.25,1);
    -o-transition: all 1s cubic-bezier(.25,1,.25,1);
    transition: all 1s cubic-bezier(.25,1,.25,1);
    max-height: 999px;
   }
   div[data-form].is-hidden {
    visibility: hidden;
    opacity: 0;
    max-height: 0;
   }
/* ==========================================================================
   Register (New Design)
   ========================================================================== */

   .section.section-register {
    padding: 1rem 0 0;
   }

   .register--container {
      margin-top: -6rem;
      padding-top: 2rem!important;
      background : #FEFEFE;
      background : rgba(254, 254, 254, 1);
      box-shadow : 0px 6.99px 4.99px rgba(0, 0, 0, 0.15);
      filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0, OffY=6.99, Color='#000000') ;
      padding: .25rem 3rem 3rem;
      -webkit-transition: all 1s cubic-bezier(.25,1,.25,1);
      -moz-transition: all 1s cubic-bezier(.25,1,.25,1);
      -o-transition: all 1s cubic-bezier(.25,1,.25,1);
      transition: all 1s cubic-bezier(.25,1,.25,1);
      max-height: 999px;
      min-height: 38rem;
      position: relative;
   }

   .register--container.is-hidden {
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    min-height: 0;
    overflow: hidden;

   }

   .app-x .dark-wrapper {
       background : -moz-linear-gradient(50% 4.37% 90deg,rgba(34, 47, 55, 1) 0%,rgba(16, 31, 41, 1) 100%);
      background : -webkit-linear-gradient(90deg, rgba(34, 47, 55, 1) 0%, rgba(16, 31, 41, 1) 100%);
      background : -webkit-gradient(linear,50% 4.37% ,50% 0.05% ,color-stop(0,rgba(34, 47, 55, 1) ),color-stop(1,rgba(16, 31, 41, 1) ));
      background : -o-linear-gradient(90deg, rgba(34, 47, 55, 1) 0%, rgba(16, 31, 41, 1) 100%);
      background : -ms-linear-gradient(90deg, rgba(34, 47, 55, 1) 0%, rgba(16, 31, 41, 1) 100%);
      -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#222F37', endColorstr='#101F29' ,GradientType=0)";
      background : linear-gradient(0deg, rgba(34, 47, 55, 1) 0%, rgba(16, 31, 41, 1) 100%);
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#101F29',endColorstr='#222F37' , GradientType=0);
   }

   .app-x .main,
   .app-x .site-footer-app {
    background: transparent;
   }

   .app-x .site-footer-app {
    padding: 0;
   }

   .app-x .register--container-footer {
    background: #c5d627;
    min-height: 7rem;
   }
   .app-x .btn {
    background : -moz-linear-gradient(50% 21% 90deg,rgba(34, 47, 55, 1) 0%,rgba(16, 31, 41, 1) 100%);
    background : -webkit-linear-gradient(90deg, rgba(34, 47, 55, 1) 0%, rgba(16, 31, 41, 1) 100%);
    background : -webkit-gradient(linear,50% 21% ,50% -17.18% ,color-stop(0,rgba(34, 47, 55, 1) ),color-stop(1,rgba(16, 31, 41, 1) ));
    background : -o-linear-gradient(90deg, rgba(34, 47, 55, 1) 0%, rgba(16, 31, 41, 1) 100%);
    background : -ms-linear-gradient(90deg, rgba(34, 47, 55, 1) 0%, rgba(16, 31, 41, 1) 100%);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#222F37', endColorstr='#101F29' ,GradientType=0)";
    background : linear-gradient(0deg, rgba(34, 47, 55, 1) 0%, rgba(16, 31, 41, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#101F29',endColorstr='#222F37' , GradientType=0);
    text-transform: uppercase;
    padding: .25rem .75rem;
    letter-spacing: 1px;
    color: #FFF;
    -webkit-transition: all 0.2s cubic-bezier(.6,.2,.6,.9);
    -moz-transition: all 0.2s cubic-bezier(.6,.2,.6,.9);
    -o-transition: all 0.2s cubic-bezier(.6,.2,.6,.9);
    transition: all 0.2s cubic-bezier(.6,.2,.6,.9);
    border-bottom: solid 2px #000;
   }
   .app-x .btn:hover,
   .app-x .btn:focus {
    border-bottom: solid 2px #c5d627;
   }
   .login-container .btn {
      margin: 0 -2.5rem 0 1.5rem;
   }
   .login-container .btn,
   .login-container label {
    display: inline-block;
    vertical-align: middle;
   }
   .app-x label,
   .app-x h2 {
    color: #858585;
    font-size: 1.25rem;
    font-weight: 300;
    letter-spacing: 1px;
   }
   .registration-form label,
   .registration-form input,
   .code-form label,
   .code-form input,
   .code-form button {
    display: inline-block;
    vertical-align: middle;
   }
   .code-form label {
    width: 10rem;
    /*text-transform: uppercase;*/
   }
   .code-form input,
   .registration-form input {
    width: 11rem;
    height: 1.95rem;
    border-radius: 0;
    color: #FFF;
    letter-spacing: 1px;
    background : -moz-linear-gradient(50% 21% 90deg,rgba(133, 133, 133, 1) 90%,rgba(16, 31, 41, 1) 100%);
    background : -webkit-linear-gradient(90deg, rgba(133, 133, 133, 1) 90%, rgba(16, 31, 41, 1) 100%);
    background : -webkit-gradient(linear,50% 21% ,50% -17.18% ,color-stop(0,rgba(133, 133, 133, 1) ),color-stop(1,rgba(16, 31, 41, 1) ));
    background : -o-linear-gradient(90deg, rgba(133, 133, 133, 1) 90%, rgba(16, 31, 41, 1) 100%);
    background : -ms-linear-gradient(90deg, rgba(133, 133, 133, 1) 90%, rgba(16, 31, 41, 1) 100%);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#858585', endColorstr='#101F29' ,GradientType=0)";
    background : linear-gradient(0deg, rgba(133, 133, 133, 1) 90%, rgba(16, 31, 41, 1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#101F29',endColorstr='#858585' , GradientType=0);
   }
   .registration-form input[type="email"]{
    /* width: 22rem; */
   }
   .registration-content {
    /* max-width: 55rem; */
   }
   .site-header-app .nav--main a,
   .site-footer-app .nav--main a {
    position: relative;
   }
   .site-header-app .nav--main span,
   .site-footer-app .nav--main span {
    position: absolute;
    right: -.45rem;
   }
   .nav--code li a {
    color: #000;
    padding: 0 1.5rem 0 0;
    position: relative;
   }
   .nav--code li a span {
    right: .6rem;
    position: absolute;
    display: block;
    top: 0;
   }
   .nav--code li a:hover {
    text-decoration: underline;
   }
   .nav--code li {
    display: inline-block;
   }
   .site-footer-app .nav--main {
    top: 1rem;
    left: 1rem;
    right: auto;
   }

   .site-footer-app .nav--terms {
    position: absolute;
    top: 3.5rem;
    left: 4rem;
   }

   .site-footer-app .nav--terms li {
    display: inline-block;

   }

   .site-footer-app .nav--terms li a {
    color: #000;
    font-size: 1.15rem;
    padding: 0 2rem 0 0;
    position: relative;
   }

   .site-footer-app .nav--terms li a span {
    position: absolute;
    right: .45rem;
   }

   .site-footer a.social--link:link,
   .site-footer  a.social--link:visited {
    text-decoration: none;
   }

   .site-footer-app .fa {
    background: none;
    border: none;
    border-radius: 0;
    font-size: 2rem;
    padding: .25rem;
    min-height: 0;
    min-width: 0;
    width: auto;
    height: auto;
    color: #000;
    -webkit-transition: all 0.2s cubic-bezier(.6,.2,.6,.9);
    -moz-transition: all 0.2s cubic-bezier(.6,.2,.6,.9);
    -o-transition: all 0.2s cubic-bezier(.6,.2,.6,.9);
    transition: all 0.2s cubic-bezier(.6,.2,.6,.9);
   }
   .site-footer-app .fa.white {
    color: #FFF;
    -webkit-transition: all 0.2s cubic-bezier(.6,.2,.6,.9);
    -moz-transition: all 0.2s cubic-bezier(.6,.2,.6,.9);
    -o-transition: all 0.2s cubic-bezier(.6,.2,.6,.9);
    transition: all 0.2s cubic-bezier(.6,.2,.6,.9);
   }
   .site-footer-app .fa:hover {
    background: none;
    border: none;
    color: #FFF;
   }

   .site-footer-app .fa:hover.white {
    color: #000;
   }

   .site-footer-app .social--media {
    position: absolute;
    top: 1rem;
    right: 1rem;
   }
   .site-footer-app .social--media-connect {
    color: #000;
    text-transform: uppercase;
    margin-bottom: .25rem;
    letter-spacing: 1px;
   }

   .registration-cell {
    padding-bottom: 1rem;
   }
   .registration-cell label {
    /* text-transform: uppercase; */
    display: block;
   }
   .registration-cell input {
    /* margin-left: 2rem; */
   }
   .registration-content label {
    margin-top: 1.5rem;
   }
   .register--container.thanks label {
    margin-top: 2.5rem;
   }

   .code-form {
    margin-bottom: 1rem;
   }

  .code-form label,
  .code-form input,
  .code-form button,
  .login-container label,
  .login-container a.btn {
    display: block;
    margin: 0 auto;
  }

  .login-container a.btn {
    /* width: 5.5rem; */
  }

  .login-container label {
    margin: 1rem auto .5rem;
    font-size: 15px;
    padding-top: 7px;
  }

  .code-form input {
    margin: 1rem auto .5rem;
  }

  .login-container label,
  .login-container a.btn {
    display: inline-block;
    vertical-align: top;
  }

  @media only screen and (min-width: 40em) {


    .code-form input {
      margin: 0;
    }

    .login-container label {
      margin: 0;
    }
  }



  @media only screen and (min-width: 60em) {
   .code-form input, .registration-form input {
      /* width: calc(100% - 17rem); */
      width: 100%;
   }
   .code-form {
    margin-bottom: 0;
   }
  }

   /* ==========================================================================
   $ App Menu
   ========================================================================== */

   .app-x .site-header .nav a:link,
   .app-x .site-header .nav a:visited {
    color: #111;
    -webkit-transition: all 0.2s cubic-bezier(.6,.2,.6,.9);
    -moz-transition: all 0.2s cubic-bezier(.6,.2,.6,.9);
    -o-transition: all 0.2s cubic-bezier(.6,.2,.6,.9);
    transition: all 0.2s cubic-bezier(.6,.2,.6,.9);
   }

   .app-x .site-header .nav a:hover,
   .app-x .site-header .nav a:focus,
   .app-x .site-header .nav a:active {
    color: #c5d627;
   }

   .app-x .site-header .nav a:link span,
   .app-x .site-header .nav a:visited span,
   .app-x .site-header .nav a:hover span,
   .app-x .site-header .nav a:focus span,
   .app-x .site-header .nav a:active span {
    color: #111;
   }

   .app-x .site-footer .nav a:link,
   .app-x .site-footer .nav a:visited {
    color: #111;
    -webkit-transition: all 0.2s cubic-bezier(.6,.2,.6,.9);
    -moz-transition: all 0.2s cubic-bezier(.6,.2,.6,.9);
    -o-transition: all 0.2s cubic-bezier(.6,.2,.6,.9);
    transition: all 0.2s cubic-bezier(.6,.2,.6,.9);
   }

   .app-x .site-footer .nav a:hover,
   .app-x .site-footer .nav a:focus,
   .app-x .site-footer .nav a:active {
    color: #FFF;
   }

   .app-x .site-footer .nav a:link span,
   .app-x .site-footer .nav a:visited span,
   .app-x .site-footer .nav a:hover span,
   .app-x .site-footer .nav a:focus span,
   .app-x .site-footer .nav a:active span {
    color: #111;
   }

   .questionnaire-part {
    -webkit-transition: all 1s cubic-bezier(.25,1,.25,1);
    -moz-transition: all 1s cubic-bezier(.25,1,.25,1);
    -o-transition: all 1s cubic-bezier(.25,1,.25,1);
    transition: all 1s cubic-bezier(.25,1,.25,1);
    max-height: 2000px;
    overflow: auto;
   }
   .questionnaire-part.is-hidden {
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    padding: 0;
    pointer-events: none;
    overflow: hidden;
   }
   .survey-complete:not(.is-hidden) {
    background: #FFF;
    padding: .25rem 3rem 3rem;
    min-height: 38rem;
   }
   .survey-complete h2 {
      font-size: 3rem;
   }

   .app-x .survey-complete .btn {
    padding: .25rem 0;
    width: 100%;
    max-width: 23rem;
   }
/* ==========================================================================
   Assessment Results Page
   ========================================================================== */
   .nav--assessment .nav__item {
    display: inline-block;
    position: relative;
    overflow-x: hidden;
   }

   .nav--assessment .nav__item{
     width: 25%;
   }
   /* .nav--assessment .nav__item:nth-child(1){
    width: 27%;
   }
   .nav--assessment .nav__item:nth-child(2){
    width: 27%;
   }
   .nav--assessment .nav__item:nth-child(3){
    width: 30%;
   }
   .nav--assessment .nav__item:nth-child(4){
    width: 16%;
   } */
   .nav--assessment .nav__item svg {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    /*right: 15%;*/
    margin-left: 1.5rem;
   }
   .nav--assessment .nav__item a:link,
   .nav--assessment .nav__item a:visited {
    font-size: 1.35rem;
    color: #000;
    text-transform: uppercase;
    padding: 2rem;
    -webkit-transition: all 1s cubic-bezier(.25,1,.25,1);
    -moz-transition: all 1s cubic-bezier(.25,1,.25,1);
    -o-transition: all 1s cubic-bezier(.25,1,.25,1);
    transition: all 1s cubic-bezier(.25,1,.25,1);
    overflow-x: hidden;
   }
   .nav--assessment .nav__item a:hover,
   .nav--assessment .nav__item a:focus,
   .nav--assessment .nav__item a:active {
     color: #FFF;
   }
   .nav--assessment .nav__item.is-active a:link,
   .nav--assessment .nav__item.is-active a:visited {
    color: #FFF;
   }
   .theme-green {
    background: #c5d627;
   }
   .theme-light-grey {
    background: #ededed;
   }
   .theme-dark-grey {
    background: #a3a3a3;
   }
   .theme-blue {
    background: #27d2d6;
   }
   .result-background {
    position: relative;
   }

   .nav__item.theme-light-grey {
    background:#c75600;
   }

   .nav--assessment .nav__item:not(.is-active) {
    -webkit-box-shadow: inset 0px -10px 10px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: inset 0px -10px 10px 0px rgba(0,0,0,0.25);
    box-shadow: inset 0px -10px 10px 0px rgba(0,0,0,0.25);
   }
   .nav--assessment .nav__item.prev-menu-item {
    -webkit-box-shadow: inset -10px -10px 10px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: inset -10px -10px 10px 0px rgba(0,0,0,0.25);
    box-shadow: inset -10px -10px 10px 0px rgba(0,0,0,0.25);
   }
   .nav--assessment .nav__item.next-menu-item {
    -webkit-box-shadow: inset 10px -10px 10px 0px rgba(0,0,0,0.25);
    -moz-box-shadow: inset 10px -10px 10px 0px rgba(0,0,0,0.25);
    box-shadow: inset 10px -10px 10px 0px rgba(0,0,0,0.25);
   }
   .assessment-results-sidebar h2 {
    text-transform: uppercase;
    color: #c75600;
    font-size: 3.5rem;
   }
   .accordion__item h2 {
    color: #c6c6c6;
    font-size: 2rem;
    letter-spacing: 1px;
    text-transform: none;
   }
   .assessment-results-sidebar {
    background: #FFF;
    padding: 1rem;
   }
   .accordion__heading {
    cursor: pointer;
    display: block;
    padding: .5rem 0;
   }
   .accordion__heading span {
    display: inline-block;
    text-indent: .25rem;
   }
  .nav--assessment .nav__item .st0{
    fill:#010101;
    -webkit-transition: all 1s cubic-bezier(.25,1,.25,1);
    -moz-transition: all 1s cubic-bezier(.25,1,.25,1);
    -o-transition: all 1s cubic-bezier(.25,1,.25,1);
    transition: all 1s cubic-bezier(.25,1,.25,1);
  }
  .nav--assessment .nav__item.is-active .st0 {
    fill: #FFF;
  }
  .nav--assessment .nav__item:hover .st0,
  .nav--assessment .nav__item:focus .st0,
  .nav--assessment .nav__item:active .st0 {
    fill: #FFF;
  }
  .sustainable-logo {
    position: fixed;
    bottom: 1rem;
    left: auto;
    z-index: 1;
    padding-left: .5rem;
  }
  .sustainable-logo.execution {
    position: relative;
    margin-top:2rem;
  }
  .sustainable-logo img {
    height: 3.5rem;
    vertical-align: middle;
  }
  .sustainable-logo label {
    font-size: 1.25rem;
    text-transform: uppercase;
    max-width: 10rem;
    vertical-align: middle;
    line-height: 1.5rem;
  }
  .print-logo {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 1;
  }
  .print-logo img {
    height: 2.25rem;
    vertical-align: middle;
  }
  .print-logo label {
    font-size: 1.25rem;
    text-transform: uppercase;
    max-width: 10rem;
    vertical-align: middle;
    line-height: 1.5rem;
    color: #a3a3a3;
  }
  .assessed-results {
    -webkit-transition: opacity 1s cubic-bezier(.25,1,.25,1);
    -moz-transition: opacity 1s cubic-bezier(.25,1,.25,1);
    -o-transition: opacity 1s cubic-bezier(.25,1,.25,1);
    transition: opacity 1s cubic-bezier(.25,1,.25,1);
    max-height: 2000px;
    overflow: auto;
   }
   .assessed-results.is-hidden {
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    padding: 0;
    pointer-events: none;
    overflow: hidden;
   }
/* ==========================================================================
   PDF Results
   ========================================================================== */
  .pdf-result-background {
    background: none;
    overflow-y: auto;
  }
  .pdf-result-background h2 {
    color: #454545;
    font-weight: 900;
    margin-bottom: .5rem;
  }
  .bar-graph-value span {
    font-size: 1.5rem;
  }
  .pdf-result-background .subtitle {
    color: #000;
    display: block;
    font-weight: 700;
    line-height: 1rem;
    font-size: 1rem;
    margin-bottom: 1rem;
  }
   .pdf-result-background .subtitle.lower {
    margin-top: 1.5rem;
  }
  .pdf-result-background-inner {
    padding-top: 2rem;
  }
  .bar-graph {
    width: 100%;
    background-color: #000;
    border-radius: 1rem;
    max-width: 320px;
    margin: .25rem auto 1rem;
    position: relative;
    overflow: hidden;
    -webkit-box-shadow: 0px 10px 20px 0px rgba(204,204,204,1);
-moz-box-shadow: 0px 10px 20px 0px rgba(204,204,204,1);
box-shadow: 0px 10px 20px 0px rgba(204,204,204,1);
  }
  .bar-graph.green-graph .bar-graph-inner {
    background-color: #31c72e;
    padding: .25rem 0;
    min-width: 3rem;
  }
  .bar-graph.red-graph .bar-graph-inner {
    background-color: #bd0000;
    padding: .25rem 0;
    min-width: 3rem;
  }
  .bar-graph .bar-graph-value {
    color: #FFF;
  }
  .pie-graph {
    border-radius: 110px;
    border-style: solid;
    border-width: 110px;
    border-bottom-color: #27d2d6;
    border-left-color: #c5d627;
    border-right-color: #a3a3a3;
    border-top-color: #c75600;
    height: 0px;
    width: 0px;
    display: block;
    margin: 0 auto;

    /* To ratate */
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    position: relative;
    z-index: 1;
    -webkit-box-shadow: 10px 0px 20px 0px rgba(204,204,204,1);
    -moz-box-shadow: 10px 0px 20px 0px rgba(204,204,204,1);
    box-shadow: 10px 0px 20px 0px rgba(204,204,204,1);
  }
  .pie-graph label {
    font-weight: 700;
    line-height: 1rem;
    font-size: .75rem;
  }
  .pie-graph .output-val {
    font-size: 1rem;
    text-indent: 1rem;
  }
  .pie-graph .build-capacity {
    position: absolute;
    transform: translate(-6rem,-1.75rem) rotate(-90deg);
  }
  .pie-graph .alignment {
    position: absolute;
    transform: translate(-2.5rem,-5.75rem) rotate(-90deg);
  }
  .pie-graph .meaningful-work {
    position: absolute;
    transform: translate(-2rem,2.5rem) rotate(-90deg);
  }
  .pie-graph .integrate-collaborate {
    position: absolute;
    transform: translate(1.5rem,-1.75rem) rotate(-90deg);
  }

  @media only screen and (min-width: 60em) {
    .pie-graph {
      border-radius: 150px;
      border-width: 150px;
    }
    .pie-graph label {
      font-size: 1rem;
    }
    .pie-graph .output-val {
      font-size: 2rem;
    }
    .pie-graph .build-capacity {
      position: absolute;
      transform: translate(-8rem,-2rem) rotate(-90deg);
    }
    .pie-graph .alignment {
      position: absolute;
      transform: translate(-3rem,-7.5rem) rotate(-90deg);
    }
    .pie-graph .meaningful-work {
      position: absolute;
      transform: translate(-3rem,3.5rem) rotate(-90deg);
    }
    .pie-graph .integrate-collaborate {
      position: absolute;
      transform: translate(3rem,-2rem) rotate(-90deg);
    }
  }
  .page-template-page-assessment-results .main .pdf-result-background-inner .wrapper {
    max-width: 70rem;
    padding: 0 1rem;
  }

  .border-dashed-container {
    border: dashed #666666 3px;
    border-radius: 2.5rem;
    padding: 2rem 1rem 1rem;
  }
  .non-border-dashed-container {
    padding: 2rem 0 1rem
  }
  .border-dashed-stick {
    border-top: dashed #666666 3px;
    width: 2.5rem;
    height: 1px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: -1rem;
    z-index: 0;
  }

  .lower-pdf-cell {
    vertical-align: middle;
    padding-bottom: 1rem;
  }
  .again-button {
    background: #FFF;
    padding: .35rem;
    font-weight: 600;
    font-size: .75rem;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    -webkit-box-shadow: 0px 3px 5px 0px rgba(204,204,204,1);
    -moz-box-shadow: 0px 3px 5px 0px rgba(204,204,204,1);
    box-shadow: 0px 3px 5px 0px rgba(204,204,204,1);
    cursor: pointer;
  }

  .again-button img {
    height: 1.25rem;
  }
/* ==========================================================================
   Pre-qualifying Questions
   ========================================================================== */
   .prequalifying-answers {
    background: #FFF;
    padding: 1.5rem 2.5rem;
   }
   .prequalifying-answers h2 {
    margin-bottom: 2rem;
   }
   .prequalifying-questions label {
    line-height: 1.5rem;
    margin-bottom: .75rem;
    display: block;
   }
   .prequalifying-questions label div {
    display: inline-block;
    width: calc(100% - 3rem);
    vertical-align: middle;
    margin: -.75rem 0 0;
   }
   .prequalifying-answers input[type="radio"] {
    display: none;
   }
   .prequalifying-answers input[type="radio"] + label span {
    display: inline-block;
    width: 19px;
    height: 19px;
    margin: -2px 10px 0 0;
    vertical-align: top;
    cursor: pointer;
    background: linear-gradient(0deg, rgba(34, 47, 55, 1) 0%, rgba(16, 31, 41, 1) 100%);
    border-radius: 3px;
   }
   .prequalifying-answers input[type="radio"]:checked + label span:before {
      content: "";
      background-image: url(img/app/marked.svg);
      background-repeat: no-repeat;
      background-position: 2px 1px;
      width:19px;
      height:19px;
      display: block;
    }
    .submit-prequalifying {
      float: right;
    }
    .comparison-cell {
       -webkit-transition: opacity 1s cubic-bezier(.25,1,.25,1);
      -moz-transition: opacity 1s cubic-bezier(.25,1,.25,1);
      -o-transition: opacity 1s cubic-bezier(.25,1,.25,1);
      transition: opacity 1s cubic-bezier(.25,1,.25,1);
      max-height: 2000px;
    }
    .comparison-cell.is-hidden {
      visibility: hidden;
      opacity: 0;
      max-height: 0;
      overflow: hidden;
      width: 0;
      padding: 0;
    }
    .toggle-cell {
      vertical-align: bottom;
      padding-bottom: 1rem;
    }
    .toggle-cell button {
      margin-top: 1rem;
      width: 100%;
      padding: .25rem 0 .25rem .25rem;
      border-radius: 7px;
      text-align: left;
      font-size: .85rem;
      font-weight: 700;
      background-color: #666666;
      color: #bababa;
      border: none;
      -webkit-transition: all 1s cubic-bezier(.25,1,.25,1);
      -moz-transition: all 1s cubic-bezier(.25,1,.25,1);
      -o-transition: all 1s cubic-bezier(.25,1,.25,1);
      transition: all 1s cubic-bezier(.25,1,.25,1);
      outline: none;
      -webkit-box-shadow: 0px 10px 20px 0px rgba(204,204,204,1);
-moz-box-shadow: 0px 10px 20px 0px rgba(204,204,204,1);
box-shadow: 0px 10px 20px 0px rgba(204,204,204,1);
    }
    .toggle-cell button.active,
    .toggle-cell button:hover {
      background-color: #FFF;
      color: #2e2e2e;
    }
    .sustainable-logo, .sustainable-logo img:hover {
  cursor: pointer;
}

.assessment-results-sidebar img {
  float: right;
}

/*.result-background .cell {
  display: table-cell;
}*/

.cell-accordion {
  background: #FFF;
}

.grid-accordion {
  /*display: table;*/
  overflow: hidden;
}

.single-barrier .site-header-assessment {
  display: none;
}

.barrier-result {
  max-width: 10rem;
}

/* ==========================================================================
   $ Work PNG Sequence
   ========================================================================== */
  .work-png-sequence {
    position: absolute;
    /*left: .75rem;
    top: -.6rem;*/
  }
  .answer {
    display: inline-block;
    margin-right: 0.5rem;
    width: 10%;
  }
/* ==========================================================================
   $ Survey changes
   ========================================================================== */
   .questionnaire--questions .the-question {
    margin: 1rem 2rem;
   }
   .questionnaire--questions .q-num {
    font-weight: 700;
    font-size: 1.25rem;
    text-align: center;
    display: block;
   }

   .questionnaire--questions .answer {
    width: 16.5%;
    margin: 0;
    text-align: center;
   }

   .app-x .questionnaire--questions .answer label {
    color: #222F37;
   }

   .questionnaire--questions .header-bar {
    padding: 1.5rem 2rem .5rem;
    background: #FFF;
   }

   .header-bar ol {
     margin: 0;
     padding: 0;
     display: flex;
     justify-content: flex-end;
   }

   .header-bar li {
    display: block;
    width: 100%;
    vertical-align: top;
    text-align: center;
    color: #858585;
    margin-bottom: .5rem;
   }

   .header-bar li {
     display: inline-block;
     font-weight: 700;
     font-size: 11px;
     padding-left: 5px;
     padding-right: 5px;
   }

   .answer-list input[type="radio"] + label span {
    margin: 0;
   }

   @media only screen and (min-width: 40em) {
    .header-bar li {
      display: inline-block;
      width: 107px;
      font-weight: 700;
      font-size: 11px;
      padding-left: 5px;
      padding-right: 5px;
    }
    .questionnaire--questions .answer {
      text-align: right;
    }
    .questionnaire--questions .answer-list input[type="radio"] + label span {
      margin: -2px 10px 0 0;
    }
    .questionnaire--questions .q-num {
      text-align: left;
    }
   }
/* ==========================================================================
   $ Assessment Results Changes
   ========================================================================== */
  .page-template-page-assessment-results .dark-wrapper {
    /*background: linear-gradient(0deg, rgba(34, 47, 55, 1) 0%, rgba(16, 31, 41, 1) 100%);*/
    background: #ededed;
    top: 85px;
    position: fixed;
    width: 100%;
  }
  .page-template-page-assessment-results .site-header-assessment {
    position: fixed;
    z-index: 1;
    width: 100%;
  }
  .page-template-page-assessment-results .main {
    position: fixed;
    top: 85px;
    width: 100%;
  }
  .page-template-page-assessment-results .left-img {
    width: 532px;
    height: 638px;
    max-width: none;
    position: absolute;
    right: 0;
    left:0;
    margin: auto;
    visibility: visible;
  }

  .page-template-page-assessment-results .cell-accordion .assessment-results-sidebar {
    overflow-y: auto;
  }

  .page-template-page-assessment-results .main .wrapper,
  .page-template-page-assessment-results .site-header-assessment .wrapper {
    max-width: none;
    padding: 0;
  }

  .left-img.sequence-loading {
    width: auto;
    height: auto;
    left: 50%;
    top: 50%;
    right: auto;
    position: absolute;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
  }

  .not-visible {
    z-index: -10;
    /*opacity: 0;*/
  }

  .not-seen {
    visibility: hidden;
    opacity: 0;
    height: 0;
    width: 0;
  }

  .sustainable-retake img {
    height: 3rem;
  }

  .category-detail {
    -webkit-transition: opacity 1s cubic-bezier(.25,1,.25,1);
    -moz-transition: opacity 1s cubic-bezier(.25,1,.25,1);
    -o-transition: opacity 1s cubic-bezier(.25,1,.25,1);
    transition: opacity 1s cubic-bezier(.25,1,.25,1);
  }

  .category-detail.is-hidden {
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    min-height: 0;
  }

  .category-detail.is-hidden .cat-title {
    margin: 0;
  }

  .cat-title {
    margin-top: 1rem;
    display: block;
  }

.grid--expert .cell{
  padding-bottom: 2rem;
}

img.expertise-image{
    width: 100%;
}

.new-homepage .parallax-container.first{
    min-height: 500px;
}

.new-homepage .section--island .wrapper-medium{
  position: static;
  margin: 0 auto;
  left: 0;
  transform: none;
}

.new-homepage .section--island{
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.callout-wrapper .item-inner{
  display: inline-flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

@media only screen and (min-width: 60em){
  .callout-wrapper{
    display: flex;
  }

  .callout-wrapper .item-inner{
    margin-bottom: 0;
  }
}




.callout-wrapper .feature-content {
  flex: 1;
  display: flex;
}

.callout-wrapper .feature-summary {
  margin: 0;
  background-color: #769695;
  border-radius: 0px;
  padding: 1.5rem 1rem;
  z-index: 2;
}

.callout-wrapper .feature-summary h3 {
    color: #000;
    font-size: 22px;
}

.callout-wrapper .feature-image{
  box-shadow: none;
  z-index: 2;
  position: relative;
  background: #fff;
}

.new-homepage-callouts{
  padding: 3rem 0;
  overflow: hidden;
}

.new-homepage-background{
  background-image: url(img/full-homepage-bg-2.png);
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}

img.callout-cloud {
    opacity: 0.5!important;
    z-index: 1;
}

.new-testimonials{

}

.new-testimonials .testimonial-container:nth-child(3n-2) .testimonial{
  background-color: #C1F4EE;
}

.new-testimonials .testimonial-container:nth-child(3n-2) .testimonial .testimonial-content,
.new-testimonials .testimonial-container:nth-child(3n-2) .testimonial p{
  color: #878787;
}

.new-testimonials .testimonial-container:nth-child(3n-2) .testimonial h3{
  color: #000;
}





.new-testimonials .testimonial-container:nth-child(3n-1) .testimonial{
  background-color: #fff;
}

.new-testimonials .testimonial-container:nth-child(3n-1) .testimonial .testimonial-content,
.new-testimonials .testimonial-container:nth-child(3n-1) .testimonial p{
  color: #7FD4C9;
}

.new-testimonials .testimonial-container:nth-child(3n-1) .testimonial h3{
  color: #769695;
}


.new-testimonials .testimonial-container:nth-child(3n-3) .testimonial{
  background-color: #769695;
}

.new-testimonials .testimonial-container:nth-child(3n-3) .testimonial .testimonial-content,
.new-testimonials .testimonial-container:nth-child(3n-3) .testimonial p{
  color: #fff;
}

.new-testimonials .testimonial-container:nth-child(3n-3) .testimonial h3{
  color: #000;
}

.new-testimonials .testimonial h3{
  font-size: 1.25rem;
}

.scroll-the-hill{
  position: absolute;
  left: 0;
  bottom: 0;
}

@media only screen and (max-width: 40em){
  .scroll-the-hill{
    display: none;
  }
}

/* img.impact-fg {
    position: absolute;
    bottom: 0;
    left: 2rem;
} */

/* new diagram interface */

.range-slider-interface {
    border: solid #666666 3px;
    border-radius: 2.5rem;
    padding: 2rem 1rem 1rem;
    margin-bottom: 3rem;
}

@media only screen and (max-width: 40em){
  .range-slider-interface {
    margin-top: 2rem;
  }
}

.range-slider-item {
    padding-bottom: 1rem;
    text-align: left;
}

.range-slider-item .bar-graph .bar-graph-inner{
  min-width: auto;
}

.range-slider-val{
  text-align: right;
}

.range-slider-item p{
  margin: 0;
  font-weight: 700;
  line-height: 1rem;
  font-size: 1rem;
}

.range-slider-label{
  display: flex;
  justify-content: space-between;
}

a.btn--logout {
    position: absolute;
    right: 2rem;
    bottom: 1rem;
    text-decoration: none;
    text-transform: uppercase;
}

a.btn--print{
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  text-decoration: none;
}

.code-form input{
  margin-bottom: 1rem;
}

ol.nav.nav--code {
    padding: 0rem 0 2rem 0;
    text-align: center;
}

.login-container {
    display: inline-block;
    margin-left: 1rem;
}

.login-container {
  display: inline-block;
  /* margin-left: 1rem; */
  text-align: right;
  width: 100%;
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 999;
}

.register--container form,
ol.nav.nav--code{
  max-width: 40rem;
  margin: 0 auto;
}

.registration-content h2{
  text-align: center;
  font-size: 1.5rem;
}

.code-form input, .registration-form input{
  width: 100%!important;
}


.code-form label{
  margin: 0!important;
}

ol.nav.nav--code {

}

.cell.registration-cell:last-child {
    text-align: center;
    padding-top: 1rem;
}

@media only screen and (min-width: 60em){
  img.expertise-image {
    width: 55%;
    float: right;
  }
}

@media only screen and (max-width: 750px){
  .login-container {
    display: inline-block;
    text-align: right;
    width: 100%;
    position: relative;
    top: -1rem;
    right: 0;
  }

  .login-container label, .login-container a.btn {
    display: inline-block;
    vertical-align: middle;
  }
.login-container label {
    margin: 0.5rem auto 0.5rem;
    padding-top: 0;
  }

}

.grid.grid--expert{
  padding-bottom: 3rem;
}

.assessment-results-sidebar{
  padding-top: 3rem;
}

.work-png-sequence.left-img.first-img{
  /* display: block!important;
  width: 532px!important;
  height: 638px!important;
  opacity: 1!important;
  visibility: visible!important; */
}

.logout-logo{
  text-decoration: none!important;
}

/* ==========================================================================
   $ Print styles
   ========================================================================== */
@media print {
    * {
        background: transparent !important;
        color: #000 !important; /* Black prints faster: h5bp.com/s */
        box-shadow: none !important;
        text-shadow: none !important;
    }
    a,
    a:visited { text-decoration: underline; }
    a[href]:after { content: " (" attr(href) ")"; }
    abbr[title]:after { content: " (" attr(title) ")"; }
    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after { content: ""; }
    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }
    thead { display: table-header-group; }
    tr,
    img { page-break-inside: avoid; }
    img { max-width: 100% !important; }
    @page { margin: 0.5cm; }
    p,
    h2,
    h3 { orphans: 3; widows: 3; }
    h2,
    h3 { page-break-after: avoid; }
    .site-header,
    .site-footer,
    .content__aside { display: none; }
}

.sustainable-logo .btn--print{
  position: absolute;
  left: 0.5rem;
  bottom: -1rem;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.25rem;
  text-transform: uppercase;
  max-width: 10rem;
  vertical-align: middle;
  line-height: 1.5rem;
}

.sustainable-logo .btn--print i {
    padding-right: 1px;
}

.sustainable-logo.execution label {
  transform: translateY(-1rem);
}
