@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: san-serif;
  font-size: 16px;
  -ms-overflow-style: -ms-autohiding-scrollbar; }

body {
  background-color: #ffffff;
  color: #262626;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  line-height: 1.5; }

main {
  overflow: hidden; }

/* Base Headline Styles */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #333333;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 1.2; }

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

h2 {
  font-size: 1.75rem; }

h3 {
  font-size: 1.3125rem; }

h4 {
  font-size: 0.875rem; }

h5,
h6 {
  font-size: 0.75rem; }

/* Base Link Styles */
a {
  color: #3A3D58;
  text-decoration: none; }
  a:hover, a:focus {
    color: rgba(72, 77, 128, 0.9); }
  a.color--secondary {
    color: #7dadb2; }
    a.color--secondary:hover, a.color--secondary:focus {
      color: rgba(125, 173, 178, 0.9); }

/*
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.
*/
.main-inner {
  max-width: 1960px;
  padding: 4% 8%; }

.header .header__inner {
  position: relative;
  max-width: 1960px;
  height: 72px;
  border-bottom: 1px solid #e6e6e6; }
  @media screen and (min-width: 1960px) {
    .header .header__inner {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      margin: 0 auto;
      border: none; } }

.header .header__logo {
  position: absolute;
  top: 8px;
  left: 12px;
  max-width: 156px;
  float: left; }
  @media screen and (min-width: 1960px) {
    .header .header__logo {
      position: static; } }
  .header .header__logo .logo {
    width: 100%; }

.nav-icon {
  z-index: 11;
  position: absolute;
  top: 32px;
  right: 24px;
  height: 18px;
  width: 24px;
  cursor: pointer;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out; }
  @media screen and (min-width: 1024px) {
    .nav-icon {
      display: none; } }
  .nav-icon .nav-icon__line {
    position: absolute;
    left: 0;
    display: block;
    height: 2px;
    width: 100%;
    background: #666666;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    -webkit-transition: 0.25s ease-in-out;
    transition: 0.25s ease-in-out; }
    .nav-icon .nav-icon__line:nth-child(1) {
      top: 0px; }
    .nav-icon .nav-icon__line:nth-child(2) {
      top: 6px; }
    .nav-icon .nav-icon__line:nth-child(3) {
      top: 12px; }
  .nav-icon--open .nav-icon__line {
    background: #ffffff; }
  .nav-icon--open .nav-icon__line:nth-child(1) {
    top: 5px;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg); }
  .nav-icon--open .nav-icon__line:nth-child(2) {
    left: -60px;
    opacity: 0; }
  .nav-icon--open .nav-icon__line:nth-child(3) {
    top: 5px;
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg); }

.navigation {
  z-index: 10;
  position: absolute;
  top: -100vh;
  left: 0;
  right: 0;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100vh;
  background-color: #3A3D58;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  -webkit-transition: top 0.4s ease;
  transition: top 0.4s ease; }
  @media screen and (min-width: 1024px) {
    .navigation {
      position: absolute;
      top: 24px;
      right: 24px;
      left: unset;
      opacity: 1;
      display: block;
      height: 100%;
      background-color: unset;
      font-size: unset;
      font-weight: unset; } }
  @media screen and (min-width: 1960px) {
    .navigation {
      position: static;
      display: inherit; } }
  .navigation--open {
    top: 0;
    opacity: 1; }
  .navigation .navigation__links {
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: center;
    list-style: none; }
  .navigation .navigation__link-container {
    padding: 8px; }
    @media screen and (min-width: 1024px) {
      .navigation .navigation__link-container {
        display: inline;
        padding: 8px 16px; } }
    .navigation .navigation__link-container:hover {
      background-color: #ffffff; }
      .navigation .navigation__link-container:hover .navigation__link {
        color: #3A3D58; }
    .navigation .navigation__link-container .navigation__link {
      padding: 4px;
      color: #ffffff; }
      @media screen and (min-width: 1024px) {
        .navigation .navigation__link-container .navigation__link {
          color: #333333; }
          .navigation .navigation__link-container .navigation__link--active {
            color: #3A3D58; }
            .navigation .navigation__link-container .navigation__link--active:hover {
              color: #7dadb2; }
          .navigation .navigation__link-container .navigation__link:hover {
            color: #7dadb2; } }
      .navigation .navigation__link-container .navigation__link--active {
        color: #ffffff;
        border-bottom: 5px solid #ffffff; }
        @media screen and (min-width: 1024px) {
          .navigation .navigation__link-container .navigation__link--active {
            color: #3A3D58;
            border-bottom: 5px solid #3A3D58; } }
      @media screen and (min-width: 1024px) {
        .navigation .navigation__link-container .navigation__link--cta {
          border: 1px solid #7dadb2;
          border-radius: 0.25rem;
          color: #7dadb2;
          padding: 8px 20px;
          -webkit-transition: background 0.25s;
          transition: background 0.25s; }
          .navigation .navigation__link-container .navigation__link--cta:hover {
            background-color: #7dadb2;
            color: #ffffff; } }

/*
WIP iPhone X notch fix

@supports (padding-left: env(safe-area-inset-left)) {
  --safe-area-inset-left: env(safe-area-inset-left);
  --safe-area-inset-right: env(safe-area-inset-right);
    padding-left: 3rem;
    padding-right: 3rem;
  }

*/
.hero {
  position: relative; }
  .hero-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    overflow: hidden;
    max-width: 1960px;
    padding: 1.5rem 1rem; }
    @media screen and (min-width: 1024px) {
      .hero-inner {
        position: relative;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        height: 64vh;
        min-height: 680px;
        margin: 0 auto;
        padding: 0; } }
    @media screen and (min-height: 1024px) and (min-width: 1024px) and (max-width: 1440px) {
      .hero-inner {
        max-height: 680px; } }
    @media screen and (min-width: 1024px) {
      .hero-inner__overlay {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: -1;
        content: "";
        overflow: hidden;
        width: 100%;
        height: 130%;
        background: #ffffff;
        -webkit-transform-origin: 32vw;
                transform-origin: 32vw;
        -webkit-transform: skewY(-72deg);
                transform: skewY(-72deg); }
        .hero-inner__overlay:after {
          position: absolute;
          top: 50%;
          background-image: url("img/dot-pattern.jpg");
          content: "";
          min-width: 100vw;
          min-height: 200vh;
          padding: -5px;
          -webkit-transform: skewY(72deg);
                  transform: skewY(72deg); } }
    @media screen and (min-width: 1960px) {
      .hero-inner__overlay {
        opacity: 0; } }
  .hero-copy {
    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;
    text-align: center;
    padding: 48px 0; }
    @media screen and (min-width: 1024px) {
      .hero-copy {
        position: relative;
        display: block;
        width: 67%;
        min-height: 680px;
        margin: 0;
        padding: 8rem 0 0 4rem;
        background-image: url("img/dot-pattern.jpg");
        text-align: left; } }
    @media screen and (min-width: 1960px) {
      .hero-copy {
        padding-right: 8rem; } }
    @media screen and (min-width: 1024px) {
      .hero-copy__inner {
        position: absolute;
        width: 440px; } }
    @media screen and (min-width: 1440px) {
      .hero-copy__inner {
        width: 540px; } }
    .hero-copy__intro {
      font-family: "Montserrat", sans-serif;
      font-weight: 300;
      font-size: 1.1875rem; }
    .hero-copy__button {
      margin-top: 12px; }
  .hero-image {
    z-index: -2;
    height: 64vh;
    max-height: 500px;
    margin: 0 -16px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center; }
    @media screen and (min-width: 768px) {
      .hero-image {
        max-height: unset;
        height: 44vh;
        background-position: unset; } }
    @media screen and (min-width: 1024px) {
      .hero-image {
        width: 133%;
        height: auto;
        min-height: 680px; } }
  @media screen and (min-width: 1024px) {
    .hero__materials {
      position: absolute;
      left: 50%;
      bottom: -40px;
      width: 100%;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%); } }

.button {
  min-height: 48px;
  border-radius: 0.25rem;
  border-color: transparent;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 1px; }
  .button:hover {
    cursor: pointer; }
  .button--primary {
    background-color: #3A3D58;
    color: #ffffff; }
    .button--primary:hover, .button--primary:focus {
      -webkit-transform: translateY(-2px);
              transform: translateY(-2px); }
    .button--primary:hover {
      background-color: rgba(72, 77, 128, 0.9); }
    .button--primary:active {
      background-color: #3A3D58; }
    .button--primary--outline {
      border: 1px solid #3A3D58;
      background-color: transparent;
      color: #3A3D58; }
      .button--primary--outline:hover {
        background-color: #3A3D58;
        color: #ffffff; }
  .button--secondary {
    background-color: #7dadb2;
    color: #ffffff; }
    .button--secondary:hover, .button--secondary:focus {
      -webkit-transform: translateY(-2px);
              transform: translateY(-2px); }
    .button--secondary:hover {
      background-color: rgba(125, 173, 178, 0.9); }
    .button--secondary:active {
      background-color: #7dadb2; }
    .button--secondary--outline {
      border: 1px solid #7dadb2;
      background-color: transparent;
      color: #7dadb2; }
      .button--secondary--outline:hover {
        background-color: #7dadb2;
        color: #ffffff; }
  .button--large {
    padding: 18px 36px; }
  .button--small {
    padding: 16px 24px; }

.materials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 -16px; }
  @media screen and (min-width: 1024px) {
    .materials {
      margin: 0 auto; } }
  .materials__material {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 80px;
    max-width: 296px;
    border: 2px solid #ffffff;
    border-radius: 4px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 10px 20px 0 rgba(17, 17, 17, 0.15);
            box-shadow: 0 10px 20px 0 rgba(17, 17, 17, 0.15); }
    @media screen and (min-width: 1024px) {
      .materials__material {
        margin-right: 1.5rem; }
        .materials__material:last-child {
          margin-right: 0; } }
    @media screen and (min-width: 1440px) {
      .materials__material {
        margin-right: 3rem; } }
    .materials__material:first-child {
      margin-top: -48px; }
      @media screen and (min-width: 1024px) {
        .materials__material:first-child {
          margin-top: 0; } }
    .materials__material:not(:first-child) {
      display: none; }
      @media screen and (min-width: 1024px) {
        .materials__material:not(:first-child) {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex; } }
    .materials__material-image-container {
      height: 100%;
      padding: 0.25rem;
      background-color: #fafafa; }
      .materials__material-image-container--fullWidth {
        padding: 0; }
    .materials__material-image {
      width: 112px;
      height: 100%;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      -webkit-transform: scale(0.9);
              transform: scale(0.9); }
      .materials__material-image--cover {
        background-size: cover; }
    .materials__material-description {
      margin: 0;
      width: 176px;
      padding-left: 16px;
      font-size: 0.875rem; }

.lead-in {
  background-color: #ffffff; }
  .lead-in-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 1960px;
    padding: 48px 16px; }
    @media screen and (min-width: 768px) {
      .lead-in-inner {
        padding: 8rem; } }
    @media screen and (min-width: 1024px) {
      .lead-in-inner {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        margin: 0 auto;
        margin-top: 24px; } }
  .lead-in__headline-container, .lead-in__content {
    text-align: center; }
    @media screen and (min-width: 1024px) {
      .lead-in__headline-container, .lead-in__content {
        text-align: left; } }
  @media screen and (min-width: 1024px) {
    .lead-in__headline-container {
      width: 40%;
      padding-right: 4rem;
      font-size: 2.375rem; } }
  .lead-in__headline {
    margin: 48px auto; }
    @media screen and (min-width: 768px) {
      .lead-in__headline {
        font-size: 2.375rem; } }
  @media screen and (min-width: 1024px) {
    .lead-in__content {
      width: 60%; } }
  @media screen and (min-width: 1024px) {
    .lead-in__content-copy {
      margin-top: 0; } }

.product {
  background-color: #ffffff; }
  .product-inner {
    max-width: 1960px;
    padding: 24px 16px; }
    @media screen and (min-width: 1024px) {
      .product-inner {
        margin: 0 auto; } }
  .product__image {
    position: relative;
    height: 11rem;
    margin: 0 -16px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; }
    @media screen and (min-width: 768px) {
      .product__image {
        height: 22rem; } }
    @media screen and (min-width: 1440px) {
      .product__image {
        height: 32rem; } }
  .product__materials {
    position: absolute;
    bottom: -2.5rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin: 0; }
    @media screen and (min-width: 1024px) {
      .product__materials {
        top: 66%;
        right: 48px;
        left: unset;
        -webkit-transform: unset;
                transform: unset; } }
  .product-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 8rem;
    margin-bottom: calc(8rem - 96px);
    text-align: center; }
    .product-content__headline {
      position: relative;
      z-index: 1; }
      .product-content__headline:before {
        position: absolute;
        top: 50%;
        left: 50%;
        z-index: -1;
        content: attr(data-abbr);
        color: #e6e6e6;
        font-size: 5rem;
        font-weight: 700;
        text-transform: uppercase;
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%); }
        @media screen and (min-width: 1024px) {
          .product-content__headline:before {
            font-size: 6.25rem; } }
    .product-content__copy {
      margin-top: 48px; }
      @media screen and (min-width: 1024px) {
        .product-content__copy {
          padding: 0 12rem; } }
      @media screen and (min-width: 1440px) {
        .product-content__copy {
          padding: 0 20rem; } }

/*
  Usage:

  <div class="hr__fabric">
    <div class="hr__fabric--replaceWithFabricID"></div>
  </div>
*/
.hr__fabric {
  position: relative;
  height: 66px;
  margin: 24px auto; }
  .hr__fabric:before, .hr__fabric:after {
    position: absolute;
    content: "";
    left: 0;
    width: 100%;
    height: 2px;
    background-image: -webkit-gradient(linear, left top, right top, color-stop(50%, transparent), color-stop(50%, #3A3D58));
    background-image: linear-gradient(to right, transparent 50%, #3A3D58 50%);
    background-size: 32px;
    background-position: 100%; }
  .hr__fabric:before {
    top: 0; }
  .hr__fabric:after {
    bottom: 0; }
  .hr__fabric--replaceWithFabricID {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: calc(100% - 16px);
    background-image: url("img/replaceWithFabricID.jpg");
    background-repeat: repeat-x;
    background-position: 100%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }

.features {
  position: relative;
  background: #ffffff url("img/bg-shirt-pattern.png");
  background-size: 6rem;
  padding-top: 1.25rem; }
  .features-inner {
    background-color: transparent;
    max-width: 1960px;
    padding: 24px;
    padding-bottom: 0;
    text-align: center; }
    @media screen and (min-width: 768px) {
      .features-inner {
        padding: 24px 0 0 0; } }
    @media screen and (min-width: 1024px) {
      .features-inner {
        margin: 0 auto;
        padding: 24px 24px 0 24px; } }
  .features__headline {
    margin: 48px auto; }
    @media screen and (min-width: 768px) {
      .features__headline {
        font-size: 2.375rem; } }

.customers-inner {
  max-width: 1960px;
  padding: 24px 16px; }
  @media screen and (min-width: 1024px) {
    .customers-inner {
      margin: 0 auto; } }

.customers__logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  @media screen and (min-width: 1024px) {
    .customers__logos {
      max-width: 960px;
      margin: 0 auto; } }

.customers__logo {
  width: 20%;
  height: 100%; }
  .customers__logo:last-of-type {
    display: none; }
    @media screen and (min-width: 1024px) {
      .customers__logo:last-of-type {
        display: block; } }

.sidebar {
  position: relative;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: calc(100vh + 72px);
  min-height: 660px;
  width: 460px;
  padding: 24px;
  background-image: url("https://trinity-apparel.s3.amazonaws.com/assets/aside-image.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center; }
  .sidebar:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    background-color: rgba(36, 40, 56, 0.25); }
  .sidebar-inner {
    z-index: 1; }
  @media screen and (min-width: 1024px) {
    .sidebar--desktop {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }
  .sidebar-content {
    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: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 240px; }
    .sidebar-content__subheadline, .sidebar-content__headline, .sidebar-content__copy {
      color: #ffffff; }
    .sidebar-content__subheadline {
      font-size: 0.875rem; }
    .sidebar-content__copy {
      color: #e6e6e6;
      font-style: italic; }

.footer {
  background-color: #111111;
  color: #ffffff; }
  .footer-inner {
    max-width: 1960px;
    padding: 4rem 1rem; }
    @media screen and (min-width: 768px) {
      .footer-inner {
        padding: 4%; } }
    @media screen and (min-width: 1024px) {
      .footer-inner {
        margin: 0 auto; } }
  .footer__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 24px; }
    @media screen and (min-width: 1024px) {
      .footer__content {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between; } }
  .footer__block {
    margin: 24px 0; }
    @media screen and (min-width: 1024px) {
      .footer__block {
        width: 40%; } }
  .footer__logo {
    width: 50%;
    max-width: 12rem;
    margin-bottom: 28px; }
    .footer__logo-image {
      width: 100%; }
  .footer__headline {
    color: #999999;
    text-transform: uppercase; }
  .footer__copy {
    margin: 28px auto; }
    @media screen and (min-width: 768px) {
      .footer__copy {
        max-width: 75%;
        margin: 28px 0; } }
    @media screen and (min-width: 1024px) {
      .footer__copy {
        max-width: unset; } }
  .footer__address {
    position: relative;
    margin: 24px auto;
    margin-left: 32px;
    font-style: normal; }
    .footer__address-icon {
      position: absolute;
      left: -36px;
      height: 24px;
      width: 24px; }
  .footer__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 320px; }
    @media screen and (min-width: 1024px) {
      .footer__social {
        margin: 24px 0; } }
    .footer__social-link {
      display: block;
      height: 36px;
      width: 36px;
      margin-right: 8px; }
      .footer__social-link:hover, .footer__social-link:focus {
        -webkit-box-shadow: 0px 8px 20px 0px rgba(125, 173, 178, 0.2);
                box-shadow: 0px 8px 20px 0px rgba(125, 173, 178, 0.2);
        -webkit-transform: translateY(-4px);
                transform: translateY(-4px);
        -webkit-transition: all 0.1s ease;
        transition: all 0.1s ease; }
    .footer__social-icon {
      height: 100%;
      width: 100%; }
  .footer__copyright {
    font-size: 0.875rem; }

.form {
  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;
  width: 100%;
  max-width: 660px;
  margin: 0 auto; }
  .form__row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%; }
    @media screen and (min-width: 768px) {
      .form__row {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        padding: 0 16px; } }
  .form__field {
    position: relative;
    padding: 24px 0; }
    @media screen and (min-width: 768px) {
      .form__field {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        margin: 0 1rem; } }
  .form__label {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 0.75rem;
    font-weight: normal;
    text-align: left; }
  .form__element {
    height: 52px;
    width: 100%;
    border: 1px #3A3D58 solid;
    border-radius: 8px;
    outline: none;
    color: #666666;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out; }
    .form__element:focus {
      -webkit-box-shadow: 4px 4px 20px 0px rgba(72, 77, 128, 0.25);
              box-shadow: 4px 4px 20px 0px rgba(72, 77, 128, 0.25);
      border: 1px solid rgba(72, 77, 128, 0.5); }
    .form__element::-webkit-input-placeholder {
      color: #999999;
      font-weight: 300; }
    .form__element::-ms-input-placeholder {
      color: #999999;
      font-weight: 300; }
    .form__element::placeholder {
      color: #999999;
      font-weight: 300; }
    .form__element--error {
      border: 4px solid #fa5857; }
      .form__element--error::-webkit-input-placeholder {
        color: #fa5857; }
      .form__element--error::-ms-input-placeholder {
        color: #fa5857; }
      .form__element--error::placeholder {
        color: #fa5857; }
  .form__input {
    padding-left: 1rem; }
  .form__select {
    margin-top: 1rem;
    padding-left: 1rem;
    background-color: transparent;
    color: #666666;
    font-weight: 300;
    -webkit-appearance: none;
    -mos-appearance: none;
    text-indent: 1px;
    text-overflow: ""; }
    .form__select::-ms-expand {
      display: none; }
    @media screen and (min-width: 375px) {
      .form__select {
        margin-top: 0; } }
    .form__select-icon {
      z-index: -1;
      position: absolute;
      top: 50%;
      right: 1rem;
      content: "";
      display: block;
      width: 1rem;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%); }
      .form__select-icon__icon {
        width: 0.75rem; }
  .form__textarea {
    padding: 1rem;
    min-height: 10rem; }
  .form__submit {
    background-color: #3A3D58;
    color: #ffffff; }
    .form__submit:hover, .form__submit:focus {
      background-color: rgba(72, 77, 128, 0.9); }
    .form__submit:hover {
      cursor: pointer; }
    .form__submit:active {
      background-color: #3A3D58; }
  .form__error {
    display: none;
    margin-bottom: 48px;
    color: #fa5857;
    font-weight: 600; }
  .form__error--visible {
    display: block; }
  .form__success {
    display: none;
    margin-bottom: 48px;
    color: #35cc62;
    font-weight: 600; }
  .form__help {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 0.75rem; }
    .form__help--bottom {
      top: auto;
      right: auto;
      bottom: 0;
      left: 0; }
  .form__backlink {
    display: block;
    margin-top: 1rem;
    color: #999999;
    text-align: center; }

.testimonial {
  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 1.5rem;
  padding-bottom: 2rem;
  text-align: left;
  line-height: 1.8; }
  .testimonial__quote {
    position: relative;
    margin: 0;
    font-style: italic; }
    .testimonial__quote-mark {
      font-size: 1.2rem;
      font-family: "Georgia, serif"; }
  .testimonial__customer-name {
    margin: 1rem 0;
    margin-top: 2rem;
    font-style: normal;
    font-size: 0.875rem;
    text-transform: uppercase; }
  .testimonial__footer {
    margin-top: 1rem; }
  .testimonial__logo {
    width: 50%; }
  .testimonial--white {
    color: #ffffff; }

.cards {
  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; }
  @media screen and (min-width: 768px) {
    .cards {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }

.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 525px;
  width: 392px;
  max-width: 392px;
  margin: 0 -24px;
  background-color: #ffffff;
  text-align: center; }
  @media screen and (min-width: 568px) {
    .card {
      -webkit-box-shadow: 5px 5px 40px 0 rgba(17, 17, 17, 0.1);
              box-shadow: 5px 5px 40px 0 rgba(17, 17, 17, 0.1);
      margin-bottom: 24px; } }
  @media screen and (min-width: 768px) {
    .card {
      width: 360px;
      height: 580px;
      margin: 24px 12px;
      text-align: left; } }
  @media screen and (min-width: 1024px) {
    .card {
      width: calc(50% - 96px);
      margin: 48px 24px; } }
  .card-image {
    height: 50%; }
    .card-image__image {
      height: 100%;
      width: 100%; }
  .card-content {
    height: 50%;
    padding: 36px 24px 24px; }

@media screen and (min-width: 1024px) {
  .page-sign-in {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0; } }

.sign-in {
  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: calc(100vh - 72px);
  margin-top: 48px;
  text-align: center; }
  @media screen and (min-width: 768px) {
    .sign-in {
      padding: 4%; }
      .sign-in .form {
        padding: 0 8%; } }
  @media screen and (min-width: 1024px) {
    .sign-in {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin: 0;
      padding: 4% 8%; } }
  .sign-in__copy {
    margin-bottom: 48px; }
  .sign-in__helper {
    margin-top: 48px; }

.forgot-password {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: calc(100vh - 72px);
  margin-top: 48px;
  text-align: center; }
  .forgot-password__copy {
    margin-bottom: 48px; }
  .forgot-password .form {
    min-width: 100%; }
    @media screen and (min-width: 768px) {
      .forgot-password .form {
        padding: 0 8%; } }
  @media screen and (min-width: 768px) {
    .forgot-password {
      padding: 4%; } }
  @media screen and (min-width: 1024px) {
    .forgot-password {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      padding: 4% 8%; }
      .forgot-password .form {
        min-width: 660px; } }

@media screen and (min-width: 1024px) {
  .page-apply {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0; } }

.apply {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 48px;
  text-align: center; }
  @media screen and (min-width: 768px) {
    .apply {
      padding: 4%; } }
  @media screen and (min-width: 1024px) {
    .apply {
      display: block;
      overflow-y: scroll;
      height: 100vh;
      width: 75%;
      margin: 0;
      padding: 4% 5%; } }
  .apply__copy {
    margin-bottom: 4rem; }
    @media screen and (min-width: 1024px) {
      .apply__copy {
        margin: 48px;
        margin-bottom: 5rem; } }
  .apply__ul {
    max-width: 660px;
    margin: 24px auto;
    text-align: left; }
  .apply__li {
    margin: 12px 0; }

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

.u-pl-32 {
  padding-left: 32px; }

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

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

.color--secondary {
  color: #7dadb2; }

@media screen and (-ms-high-contrast: active) and (min-width: 768px), screen and (-ms-high-contrast: none) and (min-width: 768px) {
  .hero-image {
    max-height: none;
    background-position-y: top; } }

@media screen and (-ms-high-contrast: active) and (min-width: 1024px), screen and (-ms-high-contrast: none) and (min-width: 1024px) {
  .navigation {
    left: auto;
    background-color: transparent;
    font-size: 1rem;
    font-weight: normal; }
  .product__materials {
    left: auto;
    -webkit-transform: auto;
            transform: auto; }
  .sidebar {
    width: 460px; }
    .sidebar .testimonial {
      width: 460px; }
      .sidebar .testimonial__logo {
        width: 200px; }
  .footer__copy {
    max-width: none; } }
