@charset "UTF-8";
/*
This project follows the ITCSS architecture:
http://www.creativebloq.com/web-design/manage-large-css-projects-itcss-101517528
*/
/*
Declaration Structure:
 Sass 
Positioning 
Display & Box Model 
Color
 Text
 Other 
Responsive 
*/
/*

01. Settings

If you are using a preprocessor, start here. This holds any global settings for your project. I'd like to stress the word global – this layer should only house settings that need to be accessed from anywhere. Settings like $heading-size-1 should be defined in the Headings partial. This ensures this layer stays nice and slim, and means that most settings can be found alongside the code that uses them, making finding things far simpler.

Examples of global settings might be things like the base font size, colour palettes, config (for example, $environment: dev;) and so on.

*/
/*

02. Tools

The next layer houses your globally available tooling – namely mixins and functions. Any mixin or function that does not need accessing globally should belong in the partial to which it relates. The Tools layer comes after the Settings layer because a mixin may require one of the global settings as a default parameter. Examples of global tools might be gradient mixins, font-sizing mixins and so on.

*/
/*

03. Generic

The Generic layer is the first one that actually produces any CSS. It houses very high-level, far reaching styles. This layer is seldom modified, and is usually the same across any projects you work on. It contains things like Normalize.css, global box-sizing rules, CSS resets and so on. The Generic layer affects a lot of the DOM, hence it being nice and wide in the Triangle model, and occurring very early on.

*/
/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0; }

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block; }

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px; }

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */ }

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit; }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic; }

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000; }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

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

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

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

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block; }

/**
 * Add the correct display in IE.
 */
template {
  display: none; }

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none; }

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

/*
04. Elements

These are bare, unclassed HTML elements. What does an h1 look like without a class on it? What does an a look like without a class on it? The Elements layer binds onto bare HTML element (or 'type') selectors only. It is slightly more explicit than the previous layer in that we are now saying 'make every h1 this big', or 'make every a be a certain colour'. It is still a very low-specificity layer, but affects slightly less of the DOM, and is slightly more opinionated, hence its location in the Triangle.

The Elements layer is typically the last one in which we'd find bare, element-based selectors, and is very rarely added to or changed after initial setup. Once we have defined element-level styles, all additions and deviations should be implemented using classes.
*/
html {
  font-family: "Quicksand", sans-serif;
  font-size: 16px; }

body {
  background-color: white; }
  body.body--modal-open {
    overflow: hidden; }

/* Base Headline Styles */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  margin-bottom: 15px;
  color: #fff;
  text-align: center; }

h2,
h3 {
  font-weight: 400; }

h1 {
  font-weight: 700;
  font-size: 2.25rem; }

h2 {
  font-size: 1.75rem; }
  @media screen and (min-width: 768px) {
    h2 {
      font-size: 2.25rem; } }

h3 {
  color: #ccc;
  max-width: 100vw; }
  @media screen and (min-width: 768px) {
    h3 {
      font-size: 1.75rem; } }
  @media screen and (min-width: 1024px) {
    h3 {
      width: initial; } }

/* Base Form Styles */
input[type="submit"] {
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: grayscale; }

/* Base Link Styles */
a {
  text-decoration: none; }

/****** Classed Base Element Styles ******/
/* Base Container Styles */
.outer-container {
  min-height: 90vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.content-container {
  max-width: 1960px;
  min-height: 300px;
  margin: auto 50px;
  margin: 0 auto;
  padding: 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.2; }
  @media screen and (min-width: 768px) {
    .content-container {
      margin: auto 100px; } }
  @media screen and (min-width: 1600px) {
    .content-container {
      margin: 0 auto; } }

.content-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

/* Base Button Styles */
.cta-btn {
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
  margin-top: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: grayscale;
  width: 240px;
  padding: 10px;
  border-radius: 30px;
  color: #fff;
  background-color: #0099ff; }
  @media screen and (min-width: 768px) {
    .cta-btn {
      width: 340px;
      padding: 15px;
      font-size: 1.2rem; } }
  .cta-btn a {
    color: #fff; }
    .cta-btn a:visited {
      color: #fff; }

/* Nav Button Styles */
.nav-btn {
  margin: 45px auto 0; }

/*
06. Components

The Components layer is where we begin to style recognisable pieces of UI. We're still binding onto classes here, so our specificity hasn't yet increased. However, this layer is more explicit than the last one in that we are now styling explicit, designed pieces of the DOM.

We shouldn't find any selectors with a lower specificity than one class in this layer. This is where the majority of your work will happen after initial project set-up. Adding new components and features usually makes up the vast majority of development.
*/
/* Global Components */
header {
  background-color: rgba(0, 0, 0, 1);
  z-index: 11;
  position: fixed;
  top: 0;
  left: 0;
  right: 0; }
  header.header--dark {
    background-color: rgba(0, 0, 0, 1); }
  header .header-content {
    position: relative;
    max-width: 1960px;
    height: 70px; }
    @media screen and (min-width: 1600px) {
      header .header-content {
        margin: 0 auto; } }
    header .header-content .logo {
      z-index: 11;
      position: absolute;
      top: 50%;
      left: 25px;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      color: #fff;
      float: left; }
      header .header-content .logo a {
        color: #fff; }
        header .header-content .logo a img {
          width: 80%; }
          @media screen and (min-width: 768px) {
            header .header-content .logo a img {
              width: 90%; } }
          @media screen and (min-width: 1024px) {
            header .header-content .logo a img {
              width: 100%; } }
        header .header-content .logo a:visited {
          color: #fff; }
    header .header-content .menu-icon {
      z-index: 11;
      position: absolute;
      top: 40%;
      right: 25px;
      width: 15px;
      height: 15px;
      cursor: pointer;
      -webkit-transform: rotate(0deg);
              transform: rotate(0deg);
      -webkit-transition: 0.5s ease-in-out;
      transition: 0.5s ease-in-out; }
      header .header-content .menu-icon span {
        position: absolute;
        left: 0;
        display: block;
        height: 3px;
        width: 100%;
        background: #fff;
        -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
        -webkit-transition: 0.25s ease-in-out;
        transition: 0.25s ease-in-out; }
      header .header-content .menu-icon span:nth-child(1) {
        top: 0px; }
      header .header-content .menu-icon span:nth-child(2) {
        top: 5px; }
      header .header-content .menu-icon span:nth-child(3) {
        top: 10px; }
      header .header-content .menu-icon.open span:nth-child(1) {
        top: 5px;
        -webkit-transform: rotate(135deg);
                transform: rotate(135deg); }
      header .header-content .menu-icon.open span:nth-child(2) {
        left: -60px;
        opacity: 0; }
      header .header-content .menu-icon.open span:nth-child(3) {
        top: 5px;
        -webkit-transform: rotate(-135deg);
                transform: rotate(-135deg); }
      @media screen and (min-width: 768px) {
        header .header-content .menu-icon {
          display: none; } }
    header .header-content .nav-container {
      z-index: 10;
      position: absolute;
      padding-top: 100px;
      top: -100vh;
      left: 0;
      right: 0;
      height: 100vh;
      background-color: rgba(0, 0, 0, 0.9);
      -webkit-transition: top 0.4s ease;
      transition: top 0.4s ease;
      font-size: 1.25rem; }
      header .header-content .nav-container nav ul {
        list-style: none;
        color: #fff;
        padding: 0;
        margin: 0; }
        header .header-content .nav-container nav ul li {
          padding-left: 25px;
          margin-bottom: 15px; }
        header .header-content .nav-container nav ul a {
          font-weight: 400; }
        header .header-content .nav-container nav ul .top-level-link {
          font-weight: 700; }
      header .header-content .nav-container nav .sub-menu {
        margin-top: 15px; }
        @media screen and (max-height: 400px) {
          header .header-content .nav-container nav .sub-menu {
            display: none; } }
        header .header-content .nav-container nav .sub-menu li {
          padding-left: 15px; }
        header .header-content .nav-container nav .sub-menu .nav-heading {
          color: #999; }
      header .header-content .nav-container nav a {
        color: #fff; }
        header .header-content .nav-container nav a:visited {
          color: #fff; }
      header .header-content .nav-container.open {
        top: 0; }
    header .header-content .desktop-nav {
      display: none; }
      @media screen and (min-width: 768px) {
        header .header-content .desktop-nav {
          display: block; } }
      header .header-content .desktop-nav ul {
        position: absolute;
        top: 50%;
        right: 25px;
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        margin: 0;
        list-style: none;
        color: #fff; }
        header .header-content .desktop-nav ul li {
          display: inline;
          margin-right: 30px; }
          header .header-content .desktop-nav ul li.current {
            background-color: rgba(153, 153, 153, 0.25);
            padding: 25px; }
          header .header-content .desktop-nav ul li:last-of-type {
            margin-right: 0; }
          header .header-content .desktop-nav ul li a {
            color: #fff;
            cursor: pointer; }
            header .header-content .desktop-nav ul li a:visited {
              color: #fff; }
      header .header-content .desktop-nav .cta-btn {
        padding: 5px 15px; }
      header .header-content .desktop-nav .desktop-nav-cta {
        font-size: 1rem; }

footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 90vh; }
  footer .footer-content {
    max-width: 1960px;
    padding: 75px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
    @media screen and (min-width: 1024px) {
      footer .footer-content {
        padding: 150px; } }
    @media screen and (min-width: 1600px) {
      footer .footer-content {
        margin: 0 auto; } }
    footer .footer-content form.contact-form {
      width: 80vw;
      margin-top: 15px; }
      @media screen and (min-width: 768px) {
        footer .footer-content form.contact-form {
          width: 50vw; } }
      @media screen and (min-width: 1024px) {
        footer .footer-content form.contact-form {
          width: 30vw; } }
      footer .footer-content form.contact-form input {
        width: 100%;
        height: 45px;
        border: none;
        margin-bottom: 1.2px;
        padding: 10px;
        background-color: rgba(90, 90, 90, 0.5);
        color: #999; }
        footer .footer-content form.contact-form input::-webkit-input-placeholder {
          color: #999; }
        footer .footer-content form.contact-form input:-ms-input-placeholder {
          color: #999; }
        footer .footer-content form.contact-form input::placeholder {
          color: #999; }
        footer .footer-content form.contact-form input:nth-of-type(1) {
          border-radius: 5px 5px 0 0; }
      footer .footer-content form.contact-form textarea {
        width: 100%;
        padding: 10px;
        border: none;
        resize: none;
        background-color: rgba(90, 90, 90, 0.5);
        color: #999; }
        footer .footer-content form.contact-form textarea::-webkit-input-placeholder {
          color: #999; }
        footer .footer-content form.contact-form textarea:-ms-input-placeholder {
          color: #999; }
        footer .footer-content form.contact-form textarea::placeholder {
          color: #999; }
      footer .footer-content form.contact-form input[type="submit"] {
        margin-top: -3px;
        border-radius: 0 0 5px 5px;
        background-color: #0099ff;
        color: #fff; }
        footer .footer-content form.contact-form input[type="submit"]:hover {
          cursor: pointer; }
  footer .call-us {
    color: #aaa;
    margin-top: 50px; }
  footer a.phone-number {
    color: #ccc; }
    footer a.phone-number:hover, footer a.phone-number:active {
      color: #fff; }
  footer .copyright {
    background-color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color: #999;
    font-size: 0.75rem;
    height: 50px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }

.shroud {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  height: 100vh;
  width: 100vw;
  background-color: rgba(0, 0, 0, 0.7); }
  .shroud--active {
    display: block; }

.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  height: 90%;
  width: 90%;
  border: 1px transparent solid;
  border-radius: 1rem;
  background-color: white;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }
  @media screen and (min-width: 1024px) {
    .modal {
      height: 85%;
      width: 85%;
      overflow: hidden; } }
  @media screen and (min-width: 1280px) {
    .modal {
      height: 85%; } }
  .modal__close {
    position: absolute;
    top: 20px;
    left: 20px; }
    .modal__close .fa-times {
      color: #999;
      font-size: 2rem; }
      .modal__close .fa-times:hover {
        cursor: pointer;
        color: #171717; }
  .modal__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0 20px 20px 20px; }
    @media screen and (min-width: 768px) {
      .modal__content {
        padding: 0 50px 50px 50px;
        font-size: 1.125rem; } }
    @media screen and (min-width: 1024px) {
      .modal__content {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        height: 100%;
        padding-right: 0;
        padding-bottom: 0; } }

/* Homepage Components */
.hero {
  min-height: 90vh;
  padding-top: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  .hero .hero-content {
    max-width: 1960px;
    -webkit-box-flex: 4;
        -ms-flex: 4;
            flex: 4;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: auto 50px; }
    @media screen and (min-width: 768px) {
      .hero .hero-content {
        margin: auto 100px; } }
    @media screen and (min-width: 1600px) {
      .hero .hero-content {
        margin: 0 auto; } }
    .hero .hero-content .ribbon {
      max-width: 65vw;
      background: -webkit-gradient(linear, left top, right top, from(#00c6d2), to(#009ff9));
      background: linear-gradient(to right, #00c6d2, #009ff9);
      margin-top: 25px;
      margin-bottom: 15px; }
      @media screen and (min-width: 768px) {
        .hero .hero-content .ribbon {
          max-width: 35vw; } }
      .hero .hero-content .ribbon h1 {
        font-weight: 400;
        font-size: 1rem;
        margin: 0;
        padding: 5px 10px; }
        @media screen and (min-width: 1024px) {
          .hero .hero-content .ribbon h1 {
            font-size: 1.5rem; } }
    .hero .hero-content h1.title {
      font-size: 1.75rem;
      font-weight: 400; }
      @media screen and (min-width: 768px) {
        .hero .hero-content h1.title {
          font-size: 2.25rem; } }

.client-logos {
  position: relative;
  background-color: #222;
  padding: 20px;
  text-align: center; }
  .client-logos h5 {
    font-family: 'Dancing Script', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #555555; }
  @media screen and (min-width: 768px) {
    .client-logos h5 {
      font-size: 1.75rem; } }
  .client-logos .logos-container {
    width: 100%;
    margin: 0 auto; }
    @media screen and (min-width: 768px) {
      .client-logos .logos-container {
        width: 75%; } }
  .client-logos .slick-dots {
    bottom: -35px; }
    @media screen and (min-width: 1024px) {
      .client-logos .slick-dots {
        bottom: -25px; } }
    .client-logos .slick-dots li {
      margin: 0 -2px; }
      @media screen and (min-width: 1024px) {
        .client-logos .slick-dots li {
          margin: 0 2px; } }
  .client-logos .slick-dots li button:before {
    color: #fff !important;
    font-size: .5rem; }
    @media screen and (min-width: 1024px) {
      .client-logos .slick-dots li button:before {
        font-size: .75rem; } }
  .client-logos .slide-controls {
    display: none;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: calc(100% - 80px); }
    @media screen and (min-width: 768px) {
      .client-logos .slide-controls {
        display: block; } }
    .client-logos .slide-controls .prev {
      float: left;
      display: block;
      height: 40px;
      width: 40px;
      color: #fff;
      cursor: pointer; }
      .client-logos .slide-controls .prev i.fa {
        font-size: 40px; }
    .client-logos .slide-controls .next {
      float: right;
      display: block;
      height: 40px;
      width: 40px;
      color: #fff;
      cursor: pointer; }
      .client-logos .slide-controls .next i.fa {
        font-size: 40px; }
  .client-logos img {
    max-width: 100%; }
    @media screen and (min-width: 1024px) {
      .client-logos img {
        max-width: 75%; } }

@media screen and (min-width: 1024px) {
  .roi-container .roi-content h3 {
    max-width: 960px; } }

@media screen and (min-width: 1024px) {
  .customize-container .customize-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; } }

@media screen and (min-width: 1024px) {
  .gamble-container .gamble-content {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; } }

@media screen and (min-width: 1024px) {
  .gamble-container .gamble-content .gamble-text {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }
    .gamble-container .gamble-content .gamble-text h2, .gamble-container .gamble-content .gamble-text h3 {
      text-align: left; } }

/* Methods Components */
.methods-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #000;
  padding: 25px;
  padding-top: 60px; }
  @media screen and (min-width: 768px) {
    .methods-container {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -ms-flex-pack: distribute;
          justify-content: space-around;
      padding: 60px;
      padding-top: 90px; } }
  .methods-container .method {
    position: relative;
    padding: 25px 0; }
    @media screen and (min-width: 768px) {
      .methods-container .method {
        width: 35vw; } }
    @media screen and (min-width: 1024px) {
      .methods-container .method {
        width: 25vw;
        height: 25vw;
        margin: 25px;
        padding: 30px 30px 30px 0;
        background-color: rgba(0, 0, 0, 0.4);
        font-size: 1rem; } }
    @media screen and (min-width: 1360px) {
      .methods-container .method {
        width: 20vw;
        height: 20vw;
        padding: 35px 35px 35px 0;
        font-size: 1rem; } }
    .methods-container .method:before {
      content: '';
      position: absolute;
      top: 5%;
      left: 50%;
      width: 100%;
      border-top: 1px #0099ff solid;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%); }
    .methods-container .method h2 {
      text-align: left;
      padding-top: 25px; }
    .methods-container .method p {
      color: #ccc;
      line-height: 1.3; }
    .methods-container .method ul {
      color: #999;
      line-height: 1.3; }

/* Products Components */
.products-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: black;
  padding: 60px 25px; }
  @media screen and (min-width: 768px) {
    .products-container {
      padding: 90px 60px; } }
  @media screen and (min-width: 1360px) {
    .products-container {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center; } }
  .products-container h2 {
    color: #999;
    text-align: center; }
  .products-container .products {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    @media screen and (min-width: 768px) {
      .products-container .products {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; } }
    .products-container .products .product {
      margin-top: 25px;
      padding: 10px 0;
      text-align: center; }
      @media screen and (min-width: 768px) {
        .products-container .products .product {
          max-width: 180px;
          margin: 20px; } }
      @media screen and (min-width: 1024px) {
        .products-container .products .product {
          max-width: 200px;
          margin: 20px; } }
      .products-container .products .product .most-popular {
        display: none; }
        @media screen and (min-width: 768px) {
          .products-container .products .product .most-popular {
            background-color: #999;
            color: #000;
            width: 80px;
            font-size: .650rem;
            margin: 0 auto 10px auto;
            padding: 3px;
            border-radius: 10px; } }
      .products-container .products .product h3 {
        font-weight: 400;
        text-align: center;
        font-size: 1.15rem;
        margin-top: 10px; }
      .products-container .products .product p {
        color: #ccc;
        text-align: center; }
      .products-container .products .product a {
        color: #0099ff; }
        .products-container .products .product a:visited {
          color: #0099ff; }
        .products-container .products .product a:hover {
          color: #fff; }
  @media screen and (min-width: 768px) {
    .products-container .three-products .product {
      max-width: 180px;
      width: 30%; } }
  @media screen and (min-width: 1024px) {
    .products-container .three-products .product {
      max-width: 200px; } }

.product-details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 25px 25px 80px 25px; }
  @media screen and (min-width: 768px) {
    .product-details {
      padding: 60px 60px 110px 60px; } }
  .product-details .product-detail-heading {
    margin-top: 50px; }
    @media screen and (min-width: 1024px) {
      .product-details .product-detail-heading {
        font-size: 1.5rem; } }
    .product-details .product-detail-heading h3 {
      font-weight: 700;
      text-align: left;
      margin-top: 10px;
      padding-bottom: 10px; }
  @media screen and (min-width: 768px) {
    .product-details .product-contents {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; }
      .product-details .product-contents .product-content {
        width: 50vw;
        font-size: 1.2rem;
        line-height: 1.4; }
        .product-details .product-contents .product-content:nth-of-type(2) {
          margin-left: 25px; } }
  @media screen and (min-width: 1024px) {
    .product-details .product-contents .product-content {
      width: 40vw;
      font-size: 1.2rem; } }
  .product-details .product-cta {
    margin-top: 50px;
    text-align: center;
    width: 130px; }
  .product-details:nth-of-type(odd) {
    background-color: rgba(228, 228, 228, 0.5); }

/* Portfolio Components */
.portfolio-gutter {
  width: 2%; }

.portfolio {
  background-color: #f8f8f8; }
  .portfolio-inner {
    padding: 80px 25px; }
  .portfolio-filters {
    position: fixed;
    top: 80px;
    z-index: 10;
    width: 100vw;
    height: 60px;
    margin: -10px -25px 0 -25px;
    background-color: #333333; }
    @media screen and (min-width: 568px) {
      .portfolio-filters {
        height: 80px;
        top: 80px; } }
    .portfolio-filters__list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      height: 100%;
      margin: 0 25px;
      padding: 12px;
      list-style: none;
      overflow-x: auto;
      white-space: nowrap; }
    .portfolio-filters__filter {
      padding: 4px 8px;
      color: #ffffff; }
      @media screen and (min-width: 568px) {
        .portfolio-filters__filter {
          padding: 4px 16px;
          font-size: 1.125rem; }
          .portfolio-filters__filter:not(:last-of-type) {
            margin-right: 2rem; } }
      .portfolio-filters__filter:hover {
        cursor: pointer; }
      .portfolio-filters__filter--active {
        border: 1px solid transparent;
        border-radius: 6px;
        background-color: #ffffff;
        color: #333333; }
      .portfolio-filters__filter:not(:last-of-type) {
        margin-right: 1rem; }
  .portfolio-items {
    margin-top: 40px; }
    @media screen and (min-width: 568px) {
      .portfolio-items {
        margin: 80px auto 25px auto; } }
  .portfolio-card {
    height: 240px;
    margin-top: 4%;
    margin-bottom: 4%;
    width: 100%; }
    .portfolio-card:hover {
      -webkit-box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.4);
              box-shadow: 0px 0px 12px 1px rgba(0, 0, 0, 0.4);
      cursor: pointer; }
    @media screen and (min-width: 568px) {
      .portfolio-card {
        width: 49%;
        margin-top: 1%;
        margin-bottom: 1%; } }
    @media screen and (min-width: 1024px) {
      .portfolio-card {
        width: 32%; } }
    @media screen and (min-width: 1360px) {
      .portfolio-card {
        width: 23.5%; } }
    .portfolio-card__image-container {
      position: relative;
      height: 100%;
      margin: 0 -25px;
      background-color: #eee; }
      @media screen and (min-width: 568px) {
        .portfolio-card__image-container {
          margin-left: 0;
          margin-right: 0; } }
    .portfolio-card__image {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      max-width: 50%;
      width: 200px; }
    .portfolio-card__copy {
      padding: 16px; }
      @media screen and (min-width: 1920px) {
        .portfolio-card__copy {
          font-size: 1.25rem; } }
    .portfolio-card__cta {
      padding: 16px;
      color: #0099ff; }
      .portfolio-card__cta:visited {
        color: #0099ff; }
      .portfolio-card__cta:hover {
        color: #171717; }

.portfolio-modal__client {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 20vh;
  margin-left: -50px;
  margin-right: -50px;
  background-color: #f2f2f2; }

.showcase-image {
  width: 6%;
  margin-top: -15%;
  margin-bottom: 2%; }

.showcase-image-large {
  width: 10%;
  margin-top: -10%;
  margin-bottom: 2%; }

.showcase-label {
  font-size: .75rem;
  text-align: center;
  margin-bottom: 10%;
  font-style: oblique; } }
  
  @media screen and (min-width: 768px) {
    .portfolio-modal__client {
      margin-left: -50px;
      margin-right: -50px; }
    .showcase-image {
      width: 10%;
      margin-top: -15%;
      margin-bottom: 20px; } }
  @media screen and (min-width: 1024px) {
    .portfolio-modal__client {
      height: 100%;
      width: 50%;
      margin-right: 0; }
    .showcase-image {
      width: 10%;
      margin-top: -15%;
      margin-bottom: 20px; }
    .showcase-image-large {
      width: 18%;
      margin-top: -10%;
      margin-bottom: 2%; } }
  @media screen and (min-width: 1280px) {
    .portfolio-modal__client {
      width: 40%; } }
  .portfolio-modal__client--testimonial .portfolio-modal__client-image {
    margin-top: -3rem; }
    @media screen and (min-width: 1024px) {
      .portfolio-modal__client--testimonial .portfolio-modal__client-image {
        margin-top: -5rem; } }
  .portfolio-modal__client-image {
    max-width: 40%; }
    @media screen and (min-width: 540px) and (max-height: 420px) {
      .portfolio-modal__client-image {
        max-width: 30%; } }
    @media screen and (min-width: 768px) {
      .portfolio-modal__client-image {
        max-width: 35%; } }
  	@media screen and (min-width: 1024px) {
      .portfolio-modal__client-image {
        max-width: 60%; } }
  .portfolio-modal__client-testimonial {
    margin-top: -4rem;
    margin-bottom: 3rem;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center; }
    @media screen and (min-width: 768px) {
      .portfolio-modal__client-testimonial {
        margin-top: -6rem;
        padding-left: 100px;
        padding-right: 100px; } }
    @media screen and (min-width: 1024px) {
      .portfolio-modal__client-testimonial {
        margin-top: -3rem;
        padding: 1rem;
        font-style: italic;
        font-size: 1rem; } }
  @media screen and (min-width: 1024px) and (max-height: 600px) {
    .portfolio-modal__client-testimonial {
      display: none; } }
    .portfolio-modal__client-testimonial .quote-icon {
      margin-bottom: 1rem; }
      .portfolio-modal__client-testimonial .quote-icon .fa-quote-left {
        font-size: 2rem;
        color: #dadada; }
    .portfolio-modal__client-testimonial-cite {
      display: block;
      margin-top: 20px;
      color: #333333;
      font-style: normal;
      font-size: 0.8125rem; }
    .portfolio-modal__client-testimonial-name, .portfolio-modal__client-testimonial-company {
      display: block; }

.portfolio-modal__details {
  margin-top: 0px;
  color: #333333;
  padding-left: 20px;
  padding-right: 20px; }
  @media screen and (min-width: 768px) {
    .portfolio-modal__details {
      padding-left: 100px;
      padding-right: 100px; } }
  @media screen and (min-width: 1024px) {
    .portfolio-modal__details {
      width: 60%;
      padding-left: 50px;
      padding-right: 50px;
      overflow-y: scroll;
      -webkit-overflow-scrolling: touch; } }
  @media screen and (min-width: 1280px) {
    .portfolio-modal__details {
      font-size: 1.25rem; } }
  
  .portfolio-modal__details-heading {
    margin-top: 3rem;
    font-weight: 600; }

  .portfolio-modal__details-heading-first {
    margin-top: 6rem;
    font-weight: 600; }

  .portfolio-modal__details-copy:last-child {
    margin-bottom: 50px; }

.portfolio-modal__details li {
  padding-left: 10px;
  margin-top: 15px;
}

.li-title {
  font-style: italic;
}


/* Meet Us Components */
.stats-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  background-color: #000;
  padding: 25px;
  padding-top: 60px; }
  @media screen and (min-width: 768px) {
    .stats-container {
      padding: 60px 20% 60px 20%; } }
  .stats-container .stat {
    position: relative;
    padding: 20px 10px; }
    .stats-container .stat:before {
      content: '';
      position: absolute;
      top: 5px;
      left: 50%;
      width: 40%;
      border-top: 1px #0099ff solid;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%); }
    @media screen and (min-width: 768px) {
      .stats-container .stat {
        padding: 40px 20px; } }
    .stats-container .stat p {
      color: #ccc;
      line-height: 1.3; }

/* Thanks Components */
.thanks-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 60vh;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background-color: #000;
  padding: 5%; }
  .thanks-container p {
    color: #fff; }

/*
07. Trumps

This layer beats – or 'trumps' – all other layers, and has the power to override anything at all that has gone before it. It is inelegant and heavy-handed, and contains utility and helper classes, hacks and overrides.

A lot of the declarations in this layer will carry !important (e.g. .text-center { text-align: centre !important; }). This is the highest specificity layer – it includes the most explicit types of rule, with the most narrow focus. This layer forms the point of the Triangle.
*/
.u-hide {
  display: none; }

.u-show {
  display: block; }

/* Backgrounds */
.u-bg {
  background-color: #253648;
  background-repeat: no-repeat;
  background-position: 70% 0%;
  background-size: cover; }
  @media screen and (min-width: 768px) {
    .u-bg {
      background-position: 100% 0%;
      background-size: cover; } }

.u-bg-home {
  background-image: url("images/dist/home.jpg");
  background-position: 45% 75%; }
  @media screen and (min-width: 768px) {
    .u-bg-home {
      background-position: 45% 50%; } }

.u-bg-roi {
  background-image: url("images/dist/roi.jpg");
  background-position: 85% 5%; }
  @media screen and (min-width: 768px) {
    .u-bg-roi {
      background-position: 100% 0%; } }

.u-bg-customize {
  background-image: url("images/dist/customize.jpg");
  background-position: 55% 50%; }
  @media screen and (min-width: 768px) {
    .u-bg-customize {
      background-position: 60% 50%; } }

.u-bg-gamble {
  background-image: url("images/dist/coffeeshop.jpg");
  background-position: 100% 85%; }

.u-bg-intro {
  background-image: url("images/dist/intro.jpg"); }

/* Background Overlay */
.u-bg-overlay {
  position: relative; }
  .u-bg-overlay:before {
    content: '';
    background-color: rgba(0, 0, 0, 0.35);
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
  .u-bg-overlay > div {
    position: relative; }
  .u-bg-overlay.u-blue-overlay:before {
    background-color: rgba(0, 68, 136, 0.35); }
  .u-bg-overlay.u-medium-dark-overlay:before {
    background-color: rgba(0, 0, 0, 0.5); }
  .u-bg-overlay.u-darkest-overlay:before {
    background-color: rgba(0, 0, 0, 0.65); }

.u-colorfix {
  color: #ffffff; }

.u-green {
  color: #333333; }

.u-green-bottom {
  border-bottom: 1px solid #333333; }

.u-orange {
  color: #333333; }

.u-orange-bottom {
  border-bottom: 1px solid #333333; }
