/*
                       
 _______ ______ __  __ _______ 
|     __|   __ \  |/  |     __|
|    |  |   __ <     <|__     |
|_______|______/__|\__|_______|
                               
 
*/
@supports (font-variation-settings: normal) {
  html {
    font-family: 'Inter var', sans-serif; } }

:root {
  --back: 13, 13, 15;
  --front: 255, 255, 255;
  --back-r: 13;
  --back-g: 13;
  --back-b: 15;
  --front-r: 255;
  --front-g: 255;
  --front-b: 255;
  --backHex: #0D0D0F;
  --frontHex: #ffffff; }

.theme--light {
  --back: 251, 251, 251;
  --front: 0, 0, 0;
  --back-r: 251;
  --back-g: 251;
  --back-b: 251;
  --front-r: 0;
  --front-g: 0;
  --front-b: 0;
  --backHex: #fbfbfb;
  --frontHex: #000000; }

@-webkit-keyframes spinLoop {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg); }
  100% {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg); } }

@keyframes spinLoop {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg); }
  100% {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg); } }

/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

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

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent; }

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

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

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

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

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

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

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

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0; }

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

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

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

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

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

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

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

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

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

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

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

td,
th {
  padding: 0; }

* html .clearfix {
  zoom: 1; }

/* IE6 */
*:first-child + html .clearfix {
  zoom: 1; }

/* IE7 */
/** Typography */
html {
  font-family: "Soleil", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.015rem;
  font-weight: 300;
  color: #999999;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  box-sizing: border-box; }

body.bg-grey {
  background-color: #fafafa; }

*, *:before, *:after {
  box-sizing: inherit; }

* {
  outline: none; }

ul,
ol {
  list-style-type: none;
  margin: 0 0 0 0;
  padding: 0 0 0 0; }

p {
  margin: 0 0 0 0;
  color: #999999;
  letter-spacing: -0.03em; }
  p a {
    color: black; }
  p b {
    font-weight: 500;
    color: black; }
  p.-error {
    color: #5856D6; }
  p.-big {
    font-size: 24px; }

[contenteditable=true]:empty:before {
  content: attr(placeholder);
  display: block; }

a,
a:link,
a:visited {
  color: black;
  text-decoration: none;
  transition: color 150ms cubic-bezier(0.5, 0, 0.2, 1); }
  a:hover,
  a:link:hover,
  a:visited:hover {
    color: #EB1B0A; }

h1, h2, h3, h4, h5, h6,
.-h1, .-h2, .-h3, .-h4, .-h5, .-h6 {
  margin: 0 0 0 0;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #000000;
  font-family: "Soleil", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", serif; }
  h1 a, h2 a, h3 a, h4 a, h5 a, h6 a,
  .-h1 a, .-h2 a, .-h3 a, .-h4 a, .-h5 a, .-h6 a {
    text-decoration: none;
    color: #000000; }
    h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover,
    .-h1 a:hover, .-h2 a:hover, .-h3 a:hover, .-h4 a:hover, .-h5 a:hover, .-h6 a:hover {
      color: #0033CC; }
    h1 a:visited, h2 a:visited, h3 a:visited, h4 a:visited, h5 a:visited, h6 a:visited,
    .-h1 a:visited, .-h2 a:visited, .-h3 a:visited, .-h4 a:visited, .-h5 a:visited, .-h6 a:visited {
      color: #000000; }

h1, .-h1 {
  font-size: calc(34.7403314917px + 1vw * 3.5359116022); }
  @media only screen and (min-width: 1024px) {
    h1, .-h1 {
      font-size: 80px; } }
h2, .-h2 {
  font-size: calc(25.3701657459px + 1vw * 1.7679558011); }
  @media only screen and (min-width: 1024px) {
    h2, .-h2 {
      font-size: 48px; } }
h3, .-h3 {
  font-size: 24px; }

h4, .-h4 {
  font-size: 20px; }

h5, .-h5 {
  font-size: 18px; }

h6, .-h6 {
  font-size: 16px; }

a:link img {
  border: none; }

section > .wrap {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto; }
  section > .wrap > .content > .-section-header p {
    margin-top: 20px;
    max-width: 780px;
    font-size: 20px; }

section + section {
  margin-top: 100px; }

@media only screen and (max-width: 639px) {
  section > .wrap > .content > .-section-header {
    padding-left: 30px;
    padding-right: 30px; } }

.button,
a.button,
button,
input[type=submita] {
  display: inline-block;
  font-size: 20px;
  line-height: 44px;
  font-weight: 500;
  text-align: center;
  border: 1px solid #03B96C;
  border-radius: 3px;
  padding: 0 40px 0 40px;
  transition: all 0.1s ease-out;
  cursor: pointer;
  background: transparent;
  color: #03B96C;
  box-sizing: border-box;
  border-radius: 100px; }
  .button:focus,
  a.button:focus,
  button:focus,
  input[type=submita]:focus {
    outline: none; }
  .button svg,
  a.button svg,
  button svg,
  input[type=submita] svg {
    fill: #03B96C;
    stroke: #03B96C;
    width: 22px;
    height: 22px;
    vertical-align: middle;
    -webkit-transform: translateY(-1px);
            transform: translateY(-1px); }
    .button svg:first-child,
    a.button svg:first-child,
    button svg:first-child,
    input[type=submita] svg:first-child {
      margin-right: 1px; }
    .button svg:last-child,
    a.button svg:last-child,
    button svg:last-child,
    input[type=submita] svg:last-child {
      margin-left: 4px; }
  .button.-s,
  a.button.-s,
  button.-s,
  input[type=submita].-s {
    font-size: 18px;
    line-height: 36px;
    padding-left: 20px;
    padding-right: 20px; }
    .button.-s svg,
    a.button.-s svg,
    button.-s svg,
    input[type=submita].-s svg {
      width: 18px;
      height: 18px; }
  .button.-m,
  a.button.-m,
  button.-m,
  input[type=submita].-m {
    font-size: 14px;
    line-height: 30px;
    padding-left: 16px;
    padding-right: 16px; }
    .button.-m svg,
    a.button.-m svg,
    button.-m svg,
    input[type=submita].-m svg {
      width: 18px;
      height: 18px;
      -webkit-transform: translateY(-1px);
              transform: translateY(-1px); }
  .button.-l,
  a.button.-l,
  button.-l,
  input[type=submita].-l {
    font-size: 16px;
    line-height: 34px;
    padding-left: 20px;
    padding-right: 20px; }
    .button.-l svg,
    a.button.-l svg,
    button.-l svg,
    input[type=submita].-l svg {
      width: 18px;
      height: 18px; }
  .button.-filled, .button.-filled:visited,
  a.button.-filled,
  a.button.-filled:visited,
  button.-filled,
  button.-filled:visited,
  input[type=submita].-filled,
  input[type=submita].-filled:visited {
    color: white;
    background-color: #03B96C;
    border-width: 0; }
    .button.-filled svg, .button.-filled:visited svg,
    a.button.-filled svg,
    a.button.-filled:visited svg,
    button.-filled svg,
    button.-filled:visited svg,
    input[type=submita].-filled svg,
    input[type=submita].-filled:visited svg {
      fill: white;
      stroke: white; }
    .button.-filled:hover, .button.-filled:visited:hover,
    a.button.-filled:hover,
    a.button.-filled:visited:hover,
    button.-filled:hover,
    button.-filled:visited:hover,
    input[type=submita].-filled:hover,
    input[type=submita].-filled:visited:hover {
      background-color: #03B96C; }
  .button.-white, .button.-white:hover, .button.-white:visited,
  a.button.-white,
  a.button.-white:hover,
  a.button.-white:visited,
  button.-white,
  button.-white:hover,
  button.-white:visited,
  input[type=submita].-white,
  input[type=submita].-white:hover,
  input[type=submita].-white:visited {
    border-color: white;
    color: white; }
    .button.-white svg, .button.-white:hover svg, .button.-white:visited svg,
    a.button.-white svg,
    a.button.-white:hover svg,
    a.button.-white:visited svg,
    button.-white svg,
    button.-white:hover svg,
    button.-white:visited svg,
    input[type=submita].-white svg,
    input[type=submita].-white:hover svg,
    input[type=submita].-white:visited svg {
      fill: white;
      stroke: white; }
    .button.-white.-filled, .button.-white:hover.-filled, .button.-white:visited.-filled,
    a.button.-white.-filled,
    a.button.-white:hover.-filled,
    a.button.-white:visited.-filled,
    button.-white.-filled,
    button.-white:hover.-filled,
    button.-white:visited.-filled,
    input[type=submita].-white.-filled,
    input[type=submita].-white:hover.-filled,
    input[type=submita].-white:visited.-filled {
      background-color: white;
      color: #03B96C; }
  .button.-white-blue, .button.-white-blue:hover, .button.-white-blue:visited,
  a.button.-white-blue,
  a.button.-white-blue:hover,
  a.button.-white-blue:visited,
  button.-white-blue,
  button.-white-blue:hover,
  button.-white-blue:visited,
  input[type=submita].-white-blue,
  input[type=submita].-white-blue:hover,
  input[type=submita].-white-blue:visited {
    border-color: white;
    color: white; }
    .button.-white-blue svg, .button.-white-blue:hover svg, .button.-white-blue:visited svg,
    a.button.-white-blue svg,
    a.button.-white-blue:hover svg,
    a.button.-white-blue:visited svg,
    button.-white-blue svg,
    button.-white-blue:hover svg,
    button.-white-blue:visited svg,
    input[type=submita].-white-blue svg,
    input[type=submita].-white-blue:hover svg,
    input[type=submita].-white-blue:visited svg {
      fill: white;
      stroke: white; }
    .button.-white-blue.-filled, .button.-white-blue:hover.-filled, .button.-white-blue:visited.-filled,
    a.button.-white-blue.-filled,
    a.button.-white-blue:hover.-filled,
    a.button.-white-blue:visited.-filled,
    button.-white-blue.-filled,
    button.-white-blue:hover.-filled,
    button.-white-blue:visited.-filled,
    input[type=submita].-white-blue.-filled,
    input[type=submita].-white-blue:hover.-filled,
    input[type=submita].-white-blue:visited.-filled {
      background-color: white;
      color: #0033CC; }
  .button.-loading,
  a.button.-loading,
  button.-loading,
  input[type=submita].-loading {
    position: relative;
    color: rgba(3, 185, 108, 0); }
    .button.-loading:before, .button.-loading:after,
    a.button.-loading:before,
    a.button.-loading:after,
    button.-loading:before,
    button.-loading:after,
    input[type=submita].-loading:before,
    input[type=submita].-loading:after {
      display: block;
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      width: 6px;
      height: 6px;
      border-radius: 10px;
      background-color: white;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      -webkit-animation: 1500ms buttonLoader linear infinite;
              animation: 1500ms buttonLoader linear infinite; }
    .button.-loading:before,
    a.button.-loading:before,
    button.-loading:before,
    input[type=submita].-loading:before {
      -webkit-transform-origin: center -5px;
              transform-origin: center -5px;
      -webkit-animation: 1500ms buttonLoader linear infinite;
              animation: 1500ms buttonLoader linear infinite; }
    .button.-loading:after,
    a.button.-loading:after,
    button.-loading:after,
    input[type=submita].-loading:after {
      -webkit-transform-origin: center -5px;
              transform-origin: center -5px;
      -webkit-animation: 1500ms buttonLoaderTwo linear infinite;
              animation: 1500ms buttonLoaderTwo linear infinite; }
    .button.-loading svg,
    a.button.-loading svg,
    button.-loading svg,
    input[type=submita].-loading svg {
      opacity: 0; }
    .button.-loading.-filled,
    a.button.-loading.-filled,
    button.-loading.-filled,
    input[type=submita].-loading.-filled {
      color: rgba(255, 255, 255, 0); }
  @media only screen and (max-width: 639px) {
    .button.-fix-mobile,
    a.button.-fix-mobile,
    button.-fix-mobile,
    input[type=submita].-fix-mobile {
      position: fixed;
      display: block;
      left: 0;
      bottom: 0;
      width: 100%;
      z-index: 1000;
      border-radius: 0; } }
a.icon-text-button span {
  display: inline-block;
  vertical-align: middle; }
  a.icon-text-button span svg {
    margin-right: 3px;
    width: 16px;
    height: 16px;
    -webkit-transform: translateY(-1px);
            transform: translateY(-1px); }
  a.icon-text-button span.-right {
    margin-left: 3px;
    margin-right: 0; }

a.icon-text-button:hover {
  color: #03B96C; }
  a.icon-text-button:hover span svg {
    fill: #03B96C;
    stroke: #03B96C; }

.button + p,
p + .button {
  margin-top: 30px; }

@-webkit-keyframes buttonLoader {
  0% {
    -webkit-transform: translateY(4px) rotate(0deg);
            transform: translateY(4px) rotate(0deg); }
  25% {
    -webkit-transform: translateY(4px) rotate(90deg);
            transform: translateY(4px) rotate(90deg); }
  50% {
    -webkit-transform: translateY(4px) rotate(180deg);
            transform: translateY(4px) rotate(180deg); }
  75% {
    -webkit-transform: translateY(4px) rotate(270deg);
            transform: translateY(4px) rotate(270deg); }
  100% {
    -webkit-transform: translateY(4px) rotate(359deg);
            transform: translateY(4px) rotate(359deg); } }

@keyframes buttonLoader {
  0% {
    -webkit-transform: translateY(4px) rotate(0deg);
            transform: translateY(4px) rotate(0deg); }
  25% {
    -webkit-transform: translateY(4px) rotate(90deg);
            transform: translateY(4px) rotate(90deg); }
  50% {
    -webkit-transform: translateY(4px) rotate(180deg);
            transform: translateY(4px) rotate(180deg); }
  75% {
    -webkit-transform: translateY(4px) rotate(270deg);
            transform: translateY(4px) rotate(270deg); }
  100% {
    -webkit-transform: translateY(4px) rotate(359deg);
            transform: translateY(4px) rotate(359deg); } }

@-webkit-keyframes buttonLoaderTwo {
  0% {
    -webkit-transform: translateY(4px) rotate(-180deg);
            transform: translateY(4px) rotate(-180deg); }
  25% {
    -webkit-transform: translateY(4px) rotate(-90deg);
            transform: translateY(4px) rotate(-90deg); }
  50% {
    -webkit-transform: translateY(4px) rotate(0deg);
            transform: translateY(4px) rotate(0deg); }
  75% {
    -webkit-transform: translateY(4px) rotate(90deg);
            transform: translateY(4px) rotate(90deg); }
  100% {
    -webkit-transform: translateY(4px) rotate(180deg);
            transform: translateY(4px) rotate(180deg); } }

@keyframes buttonLoaderTwo {
  0% {
    -webkit-transform: translateY(4px) rotate(-180deg);
            transform: translateY(4px) rotate(-180deg); }
  25% {
    -webkit-transform: translateY(4px) rotate(-90deg);
            transform: translateY(4px) rotate(-90deg); }
  50% {
    -webkit-transform: translateY(4px) rotate(0deg);
            transform: translateY(4px) rotate(0deg); }
  75% {
    -webkit-transform: translateY(4px) rotate(90deg);
            transform: translateY(4px) rotate(90deg); }
  100% {
    -webkit-transform: translateY(4px) rotate(180deg);
            transform: translateY(4px) rotate(180deg); } }

form label,
.form label {
  display: block;
  font-size: 20px;
  font-weight: 500;
  color: black; }
  form label small,
  .form label small {
    font-size: 16px;
    color: #808080; }
    form label small a,
    form label small a:link,
    form label small a:visited,
    .form label small a,
    .form label small a:link,
    .form label small a:visited {
      color: #808080; }
      form label small a:hover,
      form label small a:link:hover,
      form label small a:visited:hover,
      .form label small a:hover,
      .form label small a:link:hover,
      .form label small a:visited:hover {
        color: #03B96C; }

form input[type=text],
form input[type=email],
form input[type=password],
form input[type=number],
form .multiline-input,
.form input[type=text],
.form input[type=email],
.form input[type=password],
.form input[type=number],
.form .multiline-input {
  border-left-width: 0;
  border-top-width: 0;
  border-right-width: 0;
  border-bottom-width: 0;
  width: 100%;
  font-size: 20px;
  line-height: 32px;
  border-radius: 0;
  text-indent: 0;
  padding: 0 0; }
  form input[type=text]::-webkit-input-placeholder, form input[type=email]::-webkit-input-placeholder, form input[type=password]::-webkit-input-placeholder, form input[type=number]::-webkit-input-placeholder, form .multiline-input::-webkit-input-placeholder, .form input[type=text]::-webkit-input-placeholder, .form input[type=email]::-webkit-input-placeholder, .form input[type=password]::-webkit-input-placeholder, .form input[type=number]::-webkit-input-placeholder, .form .multiline-input::-webkit-input-placeholder {
    color: #bbbbbb; }
  form input[type=text]::-moz-placeholder, form input[type=email]::-moz-placeholder, form input[type=password]::-moz-placeholder, form input[type=number]::-moz-placeholder, form .multiline-input::-moz-placeholder, .form input[type=text]::-moz-placeholder, .form input[type=email]::-moz-placeholder, .form input[type=password]::-moz-placeholder, .form input[type=number]::-moz-placeholder, .form .multiline-input::-moz-placeholder {
    color: #bbbbbb; }
  form input[type=text]:-ms-input-placeholder, form input[type=email]:-ms-input-placeholder, form input[type=password]:-ms-input-placeholder, form input[type=number]:-ms-input-placeholder, form .multiline-input:-ms-input-placeholder, .form input[type=text]:-ms-input-placeholder, .form input[type=email]:-ms-input-placeholder, .form input[type=password]:-ms-input-placeholder, .form input[type=number]:-ms-input-placeholder, .form .multiline-input:-ms-input-placeholder {
    color: #bbbbbb; }
  form input[type=text]::placeholder, form input[type=text]:empty:before,
  form input[type=email]::placeholder,
  form input[type=email]:empty:before,
  form input[type=password]::placeholder,
  form input[type=password]:empty:before,
  form input[type=number]::placeholder,
  form input[type=number]:empty:before,
  form .multiline-input::placeholder,
  form .multiline-input:empty:before,
  .form input[type=text]::placeholder,
  .form input[type=text]:empty:before,
  .form input[type=email]::placeholder,
  .form input[type=email]:empty:before,
  .form input[type=password]::placeholder,
  .form input[type=password]:empty:before,
  .form input[type=number]::placeholder,
  .form input[type=number]:empty:before,
  .form .multiline-input::placeholder,
  .form .multiline-input:empty:before {
    color: #bbbbbb; }
  form input[type=text]:focus,
  form input[type=email]:focus,
  form input[type=password]:focus,
  form input[type=number]:focus,
  form .multiline-input:focus,
  .form input[type=text]:focus,
  .form input[type=email]:focus,
  .form input[type=password]:focus,
  .form input[type=number]:focus,
  .form .multiline-input:focus {
    color: #03B96C; }

form input[type=number],
.form input[type=number] {
  -moz-appearance: textfield; }
  form input[type=number]::-webkit-inner-spin-button, form input[type=number]::-webkit-outer-spin-button,
  .form input[type=number]::-webkit-inner-spin-button,
  .form input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; }

form input[type=submit],
form .-submit,
.form input[type=submit],
.form .-submit {
  margin-top: 30px;
  display: inline-block; }
  form input[type=submit] :not(.button),
  form .-submit :not(.button),
  .form input[type=submit] :not(.button),
  .form .-submit :not(.button) {
    border-width: 0; }

form label + select,
.form label + select {
  margin-top: 5px; }

form label + input,
.form label + input {
  margin-top: 0px; }

form p + label,
form p + .button,
form input + label,
form select + label,
form .multiline-input + label,
form .address-input + label,
form p.-error + label,
.form p + label,
.form p + .button,
.form input + label,
.form select + label,
.form .multiline-input + label,
.form .address-input + label,
.form p.-error + label {
  margin-top: 20px; }

form p.-error,
.form p.-error {
  margin-top: 5px;
  color: #0033CC; }

.-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background-image: linear-gradient(45deg, rgba(0, 51, 204, 0.2), rgba(255, 149, 0, 0.2)); }
  .-overlay > .overlay-wrap {
    position: relative;
    height: 100%; }
    .-overlay > .overlay-wrap > .wrap {
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      box-shadow: 0 50px 150px -30px rgba(0, 0, 0, 0.35);
      background-color: white;
      border-radius: 5px; }
      .-overlay > .overlay-wrap > .wrap > .content {
        position: relative;
        padding: 30px; }
        .-overlay > .overlay-wrap > .wrap > .content h4 {
          padding-right: 30px; }
        .-overlay > .overlay-wrap > .wrap > .content > a {
          display: block; }
          .-overlay > .overlay-wrap > .wrap > .content > a.-close {
            position: absolute;
            top: 20px;
            right: 20px; }
            .-overlay > .overlay-wrap > .wrap > .content > a.-close svg {
              width: 14px;
              height: 14px;
              fill: #bbbbbb;
              stroke: #bbbbbb; }
  .-overlay.-visible {
    display: block; }

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101; }
  .site-nav > .wrap > .content {
    position: relative;
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
    .site-nav > .wrap > .content h3 {
      display: inline-block;
      padding: 0 20px 0 20px;
      position: relative;
      transition: all 500ms cubic-bezier(0.5, 0, 0.2, 1);
      opacity: 0; }
      .site-nav > .wrap > .content h3:before {
        content: '';
        display: block;
        position: absolute;
        left: 5px;
        top: 6px;
        bottom: 4px;
        right: 4px;
        -webkit-transform: scale3d(1, 1, 1);
                transform: scale3d(1, 1, 1);
        border-radius: 2px;
        background-color: #EB1B0A;
        transition: all 250ms cubic-bezier(0.5, 0, 0.2, 1);
        -webkit-transform-origin: center top;
                transform-origin: center top; }
      .site-nav > .wrap > .content h3 a {
        position: relative;
        color: white;
        font-size: 32px;
        line-height: 64px;
        transition: all 350ms cubic-bezier(0.5, 0, 0.2, 1); }
    .site-nav > .wrap > .content a.-expand {
      margin: 0 0 0 -11px;
      display: inline-block;
      padding: 26px 21px 24px 21px;
      position: relative;
      vertical-align: top;
      transition: all 500ms cubic-bezier(0.5, 0, 0.2, 1);
      opacity: 0; }
      .site-nav > .wrap > .content a.-expand:before {
        content: '';
        display: block;
        position: absolute;
        left: 5px;
        top: 6px;
        bottom: 4px;
        right: 4px;
        -webkit-transform: scale3d(1, 1, 1);
                transform: scale3d(1, 1, 1);
        border-radius: 2px;
        background-color: #202020;
        transition: all 250ms cubic-bezier(0.5, 0, 0.2, 1);
        -webkit-transform-origin: center bottom;
                transform-origin: center bottom; }
      .site-nav > .wrap > .content a.-expand > .wrap {
        position: relative;
        width: 22px;
        height: 14px; }
        .site-nav > .wrap > .content a.-expand > .wrap span {
          display: block;
          position: absolute;
          width: 100%;
          height: 2px;
          background-color: white;
          border-radius: 10px;
          transition: all 500ms cubic-bezier(0.5, 0, 0.2, 1); }
          .site-nav > .wrap > .content a.-expand > .wrap span:nth-child(1) {
            top: 20%;
            left: 50%;
            -webkit-transform: translate3d(-50%, -50%, 0);
                    transform: translate3d(-50%, -50%, 0); }
          .site-nav > .wrap > .content a.-expand > .wrap span:nth-child(2) {
            top: 50%;
            left: 50%;
            -webkit-transform: translate3d(-50%, -50%, 0);
                    transform: translate3d(-50%, -50%, 0);
            display: none; }
          .site-nav > .wrap > .content a.-expand > .wrap span:nth-child(3) {
            top: 80%;
            left: 35%;
            width: 70%;
            -webkit-transform: translate3d(-50%, -50%, 0);
                    transform: translate3d(-50%, -50%, 0); }
      .site-nav > .wrap > .content a.-expand:hover > .wrap span {
        background-color: #EB1B0A; }
      .site-nav > .wrap > .content a.-expand.-active > .wrap span:nth-child(1) {
        top: 50%;
        left: 50%;
        -webkit-transform: translate3d(-50%, -50%, 0) rotate(-225deg);
                transform: translate3d(-50%, -50%, 0) rotate(-225deg); }
      .site-nav > .wrap > .content a.-expand.-active > .wrap span:nth-child(2) {
        top: 50%;
        left: 50%;
        -webkit-transform: translate3d(-50%, -50%, 0) rotate(45deg);
                transform: translate3d(-50%, -50%, 0) rotate(45deg);
        opacity: 0; }
      .site-nav > .wrap > .content a.-expand.-active > .wrap span:nth-child(3) {
        top: 50%;
        left: 50%;
        width: 100%;
        -webkit-transform: translate3d(-50%, -50%, 0) rotate(45deg);
                transform: translate3d(-50%, -50%, 0) rotate(45deg); }
    .site-nav > .wrap > .content a.-contact {
      display: block;
      position: absolute;
      right: 20px;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      transition: all 500ms cubic-bezier(0.5, 0, 0.2, 1);
      opacity: 0; }
      .site-nav > .wrap > .content a.-contact span {
        display: block;
        position: relative;
        font-weight: 600;
        background-color: rgba(0, 0, 0, 0.4);
        padding: 0 15px;
        font-size: 14px;
        line-height: 30px;
        border-radius: 2px;
        transition: all 150ms cubic-bezier(0.5, 0, 0.2, 1);
        color: white; }
        .site-nav > .wrap > .content a.-contact span:before, .site-nav > .wrap > .content a.-contact span:after {
          display: block;
          content: '';
          position: absolute;
          left: 0;
          top: 0;
          height: 100%;
          width: 100%;
          -webkit-transform: scale3d(0, 1, 1);
                  transform: scale3d(0, 1, 1);
          mix-blend-mode: lighten;
          transition: all 350ms cubic-bezier(0.5, 0, 0.2, 1);
          border-radius: 2px; }
        .site-nav > .wrap > .content a.-contact span:before {
          transition-delay: 50ms;
          background-color: #0033CC;
          -webkit-transform-origin: 20% center;
                  transform-origin: 20% center; }
        .site-nav > .wrap > .content a.-contact span:after {
          background-color: #03B96C;
          -webkit-transform-origin: 40% center;
                  transform-origin: 40% center; }
      .site-nav > .wrap > .content a.-contact:hover span {
        color: white;
        background-color: #EB1B0A; }
        .site-nav > .wrap > .content a.-contact:hover span:before, .site-nav > .wrap > .content a.-contact:hover span:after {
          -webkit-transform: scale3d(1, 1, 1);
                  transform: scale3d(1, 1, 1); }
  .site-nav.-active.-intro-complete > .wrap > .content h3 {
    opacity: 1; }
  .site-nav.-active.-intro-complete > .wrap > .content a.-expand {
    opacity: 1; }
  .site-nav.-active.-intro-complete > .wrap > .content a.-contact {
    opacity: 1; }
  .site-nav.-top > .wrap > .content h3:before, .site-nav.-expanded > .wrap > .content h3:before {
    -webkit-transform: scale3d(1, 0, 1);
            transform: scale3d(1, 0, 1); }
  .site-nav.-top > .wrap > .content h3 a, .site-nav.-expanded > .wrap > .content h3 a {
    color: #EB1B0A; }
  .site-nav.-top > .wrap > .content a.-expand:before, .site-nav.-expanded > .wrap > .content a.-expand:before {
    -webkit-transform: scale3d(1, 0, 1);
            transform: scale3d(1, 0, 1); }
  .site-nav.-top > .wrap > .content a.-expand > .wrap span, .site-nav.-expanded > .wrap > .content a.-expand > .wrap span {
    background-color: #999; }
  .site-nav.-expanded > .wrap > .content h3 a {
    color: white; }
  .site-nav.-expanded > .wrap > .content a.-expand > .wrap span {
    background-color: white; }
  @media only screen and (max-width: 639px) {
    .site-nav {
      top: 5px;
      left: 3px;
      right: 5px; } }
  @media only screen and (min-width: 640px) {
    .site-nav {
      top: 20px;
      left: 20px;
      right: 20px; } }
.sidebar-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 450px;
  overflow: hidden;
  height: 100%;
  z-index: 100;
  transition: all 800ms cubic-bezier(0.5, 0, 0.2, 1);
  pointer-events: none; }
  .sidebar-nav > .wrap {
    height: 100%; }
    .sidebar-nav > .wrap .bars {
      height: 100%;
      position: relative; }
      .sidebar-nav > .wrap .bars .bar {
        height: 100%;
        width: 100%;
        transition: all 400ms cubic-bezier(0.5, 0, 0.2, 1);
        mix-blend-mode: multiply;
        -webkit-transform: scale3d(1, 0, 1);
                transform: scale3d(1, 0, 1);
        -webkit-transform-origin: center top;
                transform-origin: center top; }
        .sidebar-nav > .wrap .bars .bar:nth-child(1) {
          background-color: #FF5351;
          transition-delay: 400ms; }
        .sidebar-nav > .wrap .bars .bar:nth-child(2) {
          position: absolute;
          left: 0;
          top: 0;
          transition-delay: 300ms;
          background-color: #F89800;
          -webkit-transform-origin: center 25%;
                  transform-origin: center 25%; }
        .sidebar-nav > .wrap .bars .bar:nth-child(3) {
          position: absolute;
          left: 0;
          top: 0;
          transition-delay: 200ms;
          background-color: #3EC2F1;
          -webkit-transform-origin: center 50%;
                  transform-origin: center 50%; }
        .sidebar-nav > .wrap .bars .bar:nth-child(4) {
          position: absolute;
          left: 0;
          top: 0;
          transition-delay: 100ms;
          background-color: #1CE1AE;
          -webkit-transform-origin: center 75%;
                  transform-origin: center 75%; }
    .sidebar-nav > .wrap > .content {
      position: absolute;
      left: 0;
      width: 100%; }
      .sidebar-nav > .wrap > .content nav {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto; }
        .sidebar-nav > .wrap > .content nav.-main a {
          display: block;
          padding: 0 20px;
          font-size: calc(25.3701657459px + 1vw * 1.7679558011);
          line-height: 1.1;
          font-weight: 300;
          color: white;
          position: relative;
          opacity: 0;
          transition: all 500ms cubic-bezier(0.5, 0, 0.2, 1);
          -webkit-transform: translate3d(-100px, 0, 0);
                  transform: translate3d(-100px, 0, 0); }
          @media only screen and (min-width: 1024px) {
            .sidebar-nav > .wrap > .content nav.-main a {
              font-size: 48px; } }
          .sidebar-nav > .wrap > .content nav.-main a:nth-child(1) {
            transition-delay: 0ms; }
          .sidebar-nav > .wrap > .content nav.-main a:nth-child(2) {
            transition-delay: 50ms; }
          .sidebar-nav > .wrap > .content nav.-main a:nth-child(3) {
            transition-delay: 100ms; }
          .sidebar-nav > .wrap > .content nav.-main a:nth-child(4) {
            transition-delay: 150ms; }
          .sidebar-nav > .wrap > .content nav.-main a:nth-child(5) {
            transition-delay: 200ms; }
          .sidebar-nav > .wrap > .content nav.-main a:before {
            display: block;
            position: absolute;
            left: 0;
            top: 0;
            width: 0;
            height: 100%;
            content: '';
            background-color: rgba(0, 0, 0, 0.05);
            border-radius: 2px;
            transition: all 350ms cubic-bezier(0.5, 0, 0.2, 1); }
          .sidebar-nav > .wrap > .content nav.-main a:hover {
            color: #EB1B0A; }
            .sidebar-nav > .wrap > .content nav.-main a:hover:before {
              width: 100%; }
          .sidebar-nav > .wrap > .content nav.-main a.-active {
            color: #EB1B0A; }
        .sidebar-nav > .wrap > .content nav.-social a {
          display: block;
          padding: 0 20px;
          font-size: 18px;
          line-height: 1.1;
          font-weight: 300;
          color: white;
          position: relative;
          opacity: 0;
          transition: all 500ms cubic-bezier(0.5, 0, 0.2, 1);
          -webkit-transform: translate3d(-100px, 0, 0);
                  transform: translate3d(-100px, 0, 0); }
          .sidebar-nav > .wrap > .content nav.-social a:nth-child(1) {
            transition-delay: 200ms; }
          .sidebar-nav > .wrap > .content nav.-social a:nth-child(2) {
            transition-delay: 250ms; }
          .sidebar-nav > .wrap > .content nav.-social a:nth-child(3) {
            transition-delay: 300ms; }
          .sidebar-nav > .wrap > .content nav.-social a:nth-child(4) {
            transition-delay: 350ms; }
          .sidebar-nav > .wrap > .content nav.-social a:nth-child(5) {
            transition-delay: 400ms; }
          .sidebar-nav > .wrap > .content nav.-social a:before {
            display: block;
            position: absolute;
            left: 0;
            top: 0;
            width: 0;
            height: 100%;
            content: '';
            background-color: rgba(0, 0, 0, 0.05);
            border-radius: 2px;
            transition: all 350ms cubic-bezier(0.5, 0, 0.2, 1); }
          .sidebar-nav > .wrap > .content nav.-social a:hover {
            color: #EB1B0A; }
            .sidebar-nav > .wrap > .content nav.-social a:hover:before {
              width: 100%; }
          .sidebar-nav > .wrap > .content nav.-social a.-active {
            color: #EB1B0A; }
          .sidebar-nav > .wrap > .content nav.-social a + a {
            margin-top: 15px; }
  .sidebar-nav.-expanded {
    height: 100%;
    -webkit-transform: translate3d(0%, 0, 0);
            transform: translate3d(0%, 0, 0);
    pointer-events: auto; }
    .sidebar-nav.-expanded > .wrap .bars .bar {
      height: 100%;
      -webkit-transform: scale3d(1, 1, 1);
              transform: scale3d(1, 1, 1); }
    .sidebar-nav.-expanded > .wrap > .content nav.-main a {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0); }
      .sidebar-nav.-expanded > .wrap > .content nav.-main a:nth-child(1) {
        transition-delay: 400ms; }
      .sidebar-nav.-expanded > .wrap > .content nav.-main a:nth-child(2) {
        transition-delay: 500ms; }
      .sidebar-nav.-expanded > .wrap > .content nav.-main a:nth-child(3) {
        transition-delay: 600ms; }
      .sidebar-nav.-expanded > .wrap > .content nav.-main a:nth-child(4) {
        transition-delay: 700ms; }
      .sidebar-nav.-expanded > .wrap > .content nav.-main a:nth-child(5) {
        transition-delay: 750ms; }
    .sidebar-nav.-expanded > .wrap > .content nav.-social a {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0); }
      .sidebar-nav.-expanded > .wrap > .content nav.-social a:nth-child(1) {
        transition-delay: 700ms; }
      .sidebar-nav.-expanded > .wrap > .content nav.-social a:nth-child(2) {
        transition-delay: 750ms; }
      .sidebar-nav.-expanded > .wrap > .content nav.-social a:nth-child(3) {
        transition-delay: 800ms; }
      .sidebar-nav.-expanded > .wrap > .content nav.-social a:nth-child(4) {
        transition-delay: 850ms; }
      .sidebar-nav.-expanded > .wrap > .content nav.-social a:nth-child(5) {
        transition-delay: 900ms; }
  @media only screen and (max-width: 639px) {
    .sidebar-nav > .wrap > .content {
      top: 100px; }
      .sidebar-nav > .wrap > .content nav.-main a {
        line-height: 1.3; }
      .sidebar-nav > .wrap > .content nav.-social {
        margin-top: 50px; }
    .sidebar-nav.-expanded {
      width: 100%; } }
  @media only screen and (min-width: 640px) {
    .sidebar-nav > .wrap > .content {
      top: 200px; }
      .sidebar-nav > .wrap > .content nav.-social {
        margin-top: 100px; }
    .sidebar-nav.-expanded {
      width: 450px; } }
section.section-header {
  background-color: white;
  background-color: black;
  position: relative;
  width: 100vw; }
  section.section-header > .wrap {
    height: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative; }
    section.section-header > .wrap > .content {
      padding-left: 20px;
      padding-right: 20px;
      max-width: 450px; }
      section.section-header > .wrap > .content h1 {
        font-size: calc(10.0773480663px + 1vw * 11.7127071823);
        line-height: 0.75;
        letter-spacing: -0.065em;
        color: white; }
        @media only screen and (min-width: 1024px) {
          section.section-header > .wrap > .content h1 {
            font-size: 160px; } }
      section.section-header > .wrap > .content p {
        font-size: calc(15.1712707182px + 1vw * 0.2209944751);
        font-weight: 500; }
        @media only screen and (min-width: 1024px) {
          section.section-header > .wrap > .content p {
            font-size: 18px; } }
      section.section-header > .wrap > .content a {
        display: inline-block; }
        section.section-header > .wrap > .content a.-button {
          margin-top: 20px;
          border-radius: 3px;
          box-shadow: 0 8px 24px -8px rgba(0, 0, 0, 0.25);
          color: white;
          font-size: 18px;
          line-height: 44px;
          font-weight: 600;
          padding: 0 35px 2px 35px;
          border: 1px dotted rgba(255, 255, 255, 0.5);
          transition: all 400ms cubic-bezier(0.5, 0, 0.2, 1);
          position: relative; }
          section.section-header > .wrap > .content a.-button span.bar {
            display: block;
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            mix-blend-mode: lighten;
            transition: all 400ms cubic-bezier(0.5, 0, 0.2, 1);
            -webkit-transform: scale3d(0, 1, 1);
                    transform: scale3d(0, 1, 1);
            border-radius: 3px; }
            section.section-header > .wrap > .content a.-button span.bar:nth-child(1) {
              background-color: #FF5351;
              background-color: white;
              -webkit-transform-origin: 45% center;
                      transform-origin: 45% center; }
            section.section-header > .wrap > .content a.-button span.bar:nth-child(2) {
              background-color: #F89800;
              transition-delay: 300ms;
              -webkit-transform-origin: 35% center;
                      transform-origin: 35% center; }
            section.section-header > .wrap > .content a.-button span.bar:nth-child(3) {
              background-color: #3EC2F1;
              transition-delay: 200ms;
              -webkit-transform-origin: 55% center;
                      transform-origin: 55% center; }
            section.section-header > .wrap > .content a.-button span.bar:nth-child(4) {
              background-color: #1CE1AE;
              -webkit-transform-origin: 65% center;
                      transform-origin: 65% center;
              transition-delay: 100ms; }
          section.section-header > .wrap > .content a.-button span.text {
            display: inline-block;
            position: relative; }
          section.section-header > .wrap > .content a.-button span.icon {
            display: inline-block;
            position: relative;
            background-color: white;
            border-radius: 100px;
            width: 21px;
            height: 21px;
            line-height: 21px;
            margin-right: 5px;
            text-align: center;
            vertical-align: middle;
            transition: all 400ms cubic-bezier(0.5, 0, 0.2, 1); }
            section.section-header > .wrap > .content a.-button span.icon svg {
              width: 13px;
              height: 21px;
              vertical-align: middle;
              -webkit-transform: translate(-1px, -3px);
                      transform: translate(-1px, -3px);
              transition: all 350ms cubic-bezier(0.5, 0, 0.2, 1);
              fill: black;
              stroke: black; }
          section.section-header > .wrap > .content a.-button:hover {
            border-color: rgba(255, 255, 255, 0);
            color: black; }
            section.section-header > .wrap > .content a.-button:hover span.bar {
              -webkit-transform: scale3d(1, 1, 1);
                      transform: scale3d(1, 1, 1); }
              section.section-header > .wrap > .content a.-button:hover span.bar:nth-child(1) {
                transition-delay: 300ms; }
              section.section-header > .wrap > .content a.-button:hover span.bar:nth-child(2) {
                transition-delay: 200ms; }
              section.section-header > .wrap > .content a.-button:hover span.bar:nth-child(3) {
                transition-delay: 100ms; }
              section.section-header > .wrap > .content a.-button:hover span.bar:nth-child(4) {
                transition-delay: 0ms; }
            section.section-header > .wrap > .content a.-button:hover span.icon {
              background-color: black; }
              section.section-header > .wrap > .content a.-button:hover span.icon svg {
                fill: white;
                -webkit-transform: rotate(45deg) translate(-3px, -2px);
                        transform: rotate(45deg) translate(-3px, -2px); }
        section.section-header > .wrap > .content a.-text {
          margin-top: 50px;
          font-weight: 600;
          transition: all 150ms cubic-bezier(0.5, 0, 0.2, 1);
          color: white; }
          section.section-header > .wrap > .content a.-text span {
            display: block;
            margin-top: 10px; }
            section.section-header > .wrap > .content a.-text span svg {
              fill: #999;
              stroke: #999;
              transition: all 150ms cubic-bezier(0.5, 0, 0.2, 1); }
          section.section-header > .wrap > .content a.-text:hover {
            color: #EB1B0A; }
            section.section-header > .wrap > .content a.-text:hover span {
              -webkit-animation: buttonArrowBounce 500ms cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
                      animation: buttonArrowBounce 500ms cubic-bezier(0.645, 0.045, 0.355, 1) infinite;
              -webkit-animation-direction: alternate;
                      animation-direction: alternate; }
              section.section-header > .wrap > .content a.-text:hover span svg {
                fill: white;
                stroke: white; }
      section.section-header > .wrap > .content .white {
        position: absolute;
        left: 0%;
        bottom: 0%;
        width: 100vw;
        height: 10vh;
        background-color: white; }
      section.section-header > .wrap > .content .phone {
        position: absolute;
        left: 50%;
        top: 10%; }
        section.section-header > .wrap > .content .phone .phone-wrap {
          background-size: contain;
          background-position: center center;
          background-repeat: no-repeat;
          background-image: url("../assets/header/phone.png");
          box-sizing: border-box; }
          @media screen and (-webkit-min-device-pixel-ratio: 2), screen and (-moz-min-device-pixel-ratio: 2), screen and (min-device-pixel-ratio: 2), screen and (min-resolution: 192dpi), screen and (min-resolution: 2dppx) {
            section.section-header > .wrap > .content .phone .phone-wrap {
              background-image: url("../assets/header/phone@2x.png"); } }
          section.section-header > .wrap > .content .phone .phone-wrap .phone-content {
            position: relative;
            height: 100vh;
            width: 54vh; }
            section.section-header > .wrap > .content .phone .phone-wrap .phone-content .screen {
              position: absolute;
              top: 2.9%;
              left: 11.2%;
              width: 78%;
              background-color: black; }
              section.section-header > .wrap > .content .phone .phone-wrap .phone-content .screen img {
                display: block;
                width: 100%;
                height: auto;
                border-radius: 10px;
                opacity: 0;
                transition: all 500ms cubic-bezier(0.5, 0, 0.2, 1); }
      section.section-header > .wrap > .content .cover {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        pointer-events: none; }
        section.section-header > .wrap > .content .cover > .wrap {
          height: 100%; }
          section.section-header > .wrap > .content .cover > .wrap .bar {
            position: absolute;
            top: 0;
            height: 100%;
            left: 0;
            width: 100%;
            mix-blend-mode: lighten;
            transition: all 1200ms cubic-bezier(0.5, 0, 0.2, 1);
            -webkit-transform: scale3d(1, 1, 1);
                    transform: scale3d(1, 1, 1); }
            section.section-header > .wrap > .content .cover > .wrap .bar:nth-child(1) {
              background-color: #FF5351;
              background-color: white;
              -webkit-transform-origin: 45% center;
                      transform-origin: 45% center; }
            section.section-header > .wrap > .content .cover > .wrap .bar:nth-child(2) {
              background-color: #F89800;
              transition-delay: 300ms;
              -webkit-transform-origin: 35% center;
                      transform-origin: 35% center; }
            section.section-header > .wrap > .content .cover > .wrap .bar:nth-child(3) {
              background-color: #3EC2F1;
              transition-delay: 200ms;
              -webkit-transform-origin: 55% center;
                      transform-origin: 55% center; }
            section.section-header > .wrap > .content .cover > .wrap .bar:nth-child(4) {
              background-color: #1CE1AE;
              -webkit-transform-origin: 65% center;
                      transform-origin: 65% center;
              transition-delay: 100ms; }
      section.section-header > .wrap > .content .sliders {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        display: none; }
        section.section-header > .wrap > .content .sliders > .wrap {
          height: 100%; }
          section.section-header > .wrap > .content .sliders > .wrap .bar {
            position: absolute;
            top: 0;
            height: 100%;
            left: 25%;
            width: 10%;
            mix-blend-mode: lighten;
            transition: all 1200ms cubic-bezier(0.5, 0, 0.2, 1);
            -webkit-transform: scale3d(1, 1, 1);
                    transform: scale3d(1, 1, 1); }
            section.section-header > .wrap > .content .sliders > .wrap .bar:nth-child(1) {
              background-color: #FF5351;
              -webkit-transform-origin: 45% center;
                      transform-origin: 45% center;
              -webkit-animation: headerSliderOne 10000ms linear infinite;
                      animation: headerSliderOne 10000ms linear infinite; }
            section.section-header > .wrap > .content .sliders > .wrap .bar:nth-child(2) {
              background-color: #F89800;
              transition-delay: 300ms;
              -webkit-transform-origin: 35% center;
                      transform-origin: 35% center;
              -webkit-animation: headerSliderTwo 12000ms linear infinite;
                      animation: headerSliderTwo 12000ms linear infinite; }
            section.section-header > .wrap > .content .sliders > .wrap .bar:nth-child(3) {
              background-color: #3EC2F1;
              transition-delay: 200ms;
              -webkit-transform-origin: 55% center;
                      transform-origin: 55% center;
              -webkit-animation: headerSliderThree 14000ms linear infinite;
                      animation: headerSliderThree 14000ms linear infinite; }
            section.section-header > .wrap > .content .sliders > .wrap .bar:nth-child(4) {
              background-color: #1CE1AE;
              -webkit-transform-origin: 65% center;
                      transform-origin: 65% center;
              -webkit-animation: headerSliderFour 16000ms linear infinite;
                      animation: headerSliderFour 16000ms linear infinite;
              transition-delay: 100ms; }
  section.section-header.-active:after {
    opacity: 0; }
  section.section-header.-active > .wrap > .content .cover > .wrap .bar {
    -webkit-transform: scale3d(0, 1, 1);
            transform: scale3d(0, 1, 1); }
  section.section-header.-active > .wrap > .content .title .text .text-wrap {
    left: 0;
    top: 0px; }
  section.section-header.-active.-intro-complete:after {
    display: none; }
  section.section-header.-active.-intro-complete > .wrap > .content .phone .phone-wrap .phone-content .screen img {
    opacity: 1;
    transition-delay: 600ms; }
  section.section-header.-pause > .wrap > .content .title .text .text-wrap p {
    -webkit-animation-play-state: paused;
            animation-play-state: paused; }
  section.section-header.-not-visible > .wrap > .content .title .text .text-wrap p {
    mix-blend-mode: normal; }
  @media only screen and (max-width: 639px) {
    section.section-header {
      min-height: 100vh;
      height: 100vh; }
      section.section-header > .wrap > .content {
        padding-top: 70px;
        padding-bottom: 0vh; }
        section.section-header > .wrap > .content .phone {
          position: absolute;
          left: 55%;
          top: 20%;
          width: 45%;
          overflow: hidden; }
          section.section-header > .wrap > .content .phone .phone-wrap {
            width: 54vh; }
        section.section-header > .wrap > .content p {
          max-width: calc(60% - 10px);
          margin-top: 20px; }
        section.section-header > .wrap > .content a {
          display: inline-block; }
          section.section-header > .wrap > .content a.-button {
            padding-left: 25px;
            padding-right: 25px; }
          section.section-header > .wrap > .content a.-text {
            margin-top: 30px; }
        section.section-header > .wrap > .content .white {
          display: none; } }
  @media only screen and (min-width: 640px) {
    section.section-header {
      min-height: 100vh;
      height: 100vh; }
      section.section-header > .wrap {
        max-width: none; }
        section.section-header > .wrap > .content {
          padding-top: 70px; }
          section.section-header > .wrap > .content p {
            margin-top: 50px; }
          section.section-header > .wrap > .content .white {
            display: none; } }
  @media only screen and (min-width: 1024px) {
    section.section-header > .wrap > .content {
      margin-left: auto;
      margin-right: auto;
      max-width: 100%;
      width: 1280px; }
      section.section-header > .wrap > .content p {
        max-width: 450px; } }
@-webkit-keyframes headerSliderOne {
  0% {
    left: -10%;
    width: 2%; }
  100% {
    left: 100%;
    width: 5%; } }
@keyframes headerSliderOne {
  0% {
    left: -10%;
    width: 2%; }
  100% {
    left: 100%;
    width: 5%; } }

@-webkit-keyframes headerSliderTwo {
  0% {
    left: -10%;
    width: 2%; }
  100% {
    left: 100%;
    width: 5%; } }

@keyframes headerSliderTwo {
  0% {
    left: -10%;
    width: 2%; }
  100% {
    left: 100%;
    width: 5%; } }

@-webkit-keyframes headerSliderThree {
  0% {
    left: -10%;
    width: 2%; }
  100% {
    left: 100%;
    width: 5%; } }

@keyframes headerSliderThree {
  0% {
    left: -10%;
    width: 2%; }
  100% {
    left: 100%;
    width: 5%; } }

@-webkit-keyframes headerSliderFour {
  0% {
    left: -10%;
    width: 2%; }
  100% {
    left: 100%;
    width: 5%; } }

@keyframes headerSliderFour {
  0% {
    left: -10%;
    width: 2%; }
  100% {
    left: 100%;
    width: 5%; } }

@-webkit-keyframes buttonArrowBounce {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  100% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0); } }

@keyframes buttonArrowBounce {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  100% {
    -webkit-transform: translate3d(0, 10px, 0);
            transform: translate3d(0, 10px, 0); } }

section.section-clients > .wrap > .content ul {
  border-top: 1px solid #ededed;
  border-left: 1px solid #ededed;
  margin-top: calc(-6.5745856354px + 1vw * 4.4198895028); }
  section.section-clients > .wrap > .content ul:after {
    content: "";
    display: table;
    clear: both; }
  @media only screen and (min-width: 1024px) {
    section.section-clients > .wrap > .content ul {
      margin-top: 50px; } }
  section.section-clients > .wrap > .content ul li {
    position: relative;
    float: left;
    border-right: 1px solid #ededed;
    border-bottom: 1px solid #ededed; }
    section.section-clients > .wrap > .content ul li p {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      text-align: center; }
      section.section-clients > .wrap > .content ul li p svg {
        width: 100px;
        height: 50px; }
      section.section-clients > .wrap > .content ul li p img {
        max-width: 100px;
        height: auto; }

@media only screen and (max-width: 639px) {
  section.section-clients > .wrap > .content ul li {
    width: 50%;
    padding-bottom: 30%; } }

@media only screen and (min-width: 640px) and (max-width: 1023px) {
  section.section-clients > .wrap > .content ul li {
    width: 33.33%;
    padding-bottom: 20%; } }

@media only screen and (min-width: 1024px) {
  section.section-clients > .wrap {
    padding-left: 20px;
    padding-right: 20px; }
    section.section-clients > .wrap > .content ul li {
      width: 20%;
      padding-bottom: 10%; } }

section.section-projects > .wrap > .content ol li > .wrap {
  max-width: 490px; }

section.section-projects > .wrap > .content ol:first-of-type {
  margin-top: 100px; }

section.section-projects > .wrap > .content ol + ol {
  margin-top: 100px; }

@media only screen and (max-width: 1023px) {
  section.section-projects > .wrap > .content ol:after {
    content: "";
    display: table;
    clear: both; }
  section.section-projects > .wrap > .content ol li > .wrap {
    max-width: 490px;
    margin-left: auto;
    margin-right: auto; }
  section.section-projects > .wrap > .content ol li + li {
    margin-top: 50px; } }

@media only screen and (min-width: 1024px) {
  section.section-projects > .wrap {
    padding-left: 20px;
    padding-right: 20px; }
    section.section-projects > .wrap > .content ol:after {
      content: "";
      display: table;
      clear: both; }
    section.section-projects > .wrap > .content ol li {
      width: 50%; }
      section.section-projects > .wrap > .content ol li:first-child {
        float: left;
        margin-right: auto; }
      section.section-projects > .wrap > .content ol li:last-child {
        float: right; }
        section.section-projects > .wrap > .content ol li:last-child > .wrap {
          margin-left: auto; } }

section.section-services > .wrap > .content .columns .column p {
  margin-top: 10px; }

@media only screen and (min-width: 1024px) {
  section.section-services > .wrap > .content .columns:after {
    content: "";
    display: table;
    clear: both; }
  section.section-services > .wrap > .content .columns .column {
    float: left;
    width: calc(33.33% - 30px); }
    section.section-services > .wrap > .content .columns .column + .column {
      margin-left: 45px; } }

section.section-about,
section.section-process,
section.section-services {
  background-color: #202020;
  margin-top: 0;
  padding-top: 50px;
  padding-bottom: 50px; }
  section.section-about > .wrap > .content h2,
  section.section-process > .wrap > .content h2,
  section.section-services > .wrap > .content h2 {
    color: white;
    letter-spacing: -0.04em; }
  section.section-about > .wrap > .content .copy p,
  section.section-process > .wrap > .content .copy p,
  section.section-services > .wrap > .content .copy p {
    font-size: 18px;
    line-height: 1.7;
    font-weight: 400;
    color: white;
    letter-spacing: -0.02em; }
    section.section-about > .wrap > .content .copy p + p,
    section.section-process > .wrap > .content .copy p + p,
    section.section-services > .wrap > .content .copy p + p {
      margin-top: 18px; }
  section.section-about > .wrap > .content .copy ul,
  section.section-process > .wrap > .content .copy ul,
  section.section-services > .wrap > .content .copy ul {
    margin-top: 20px; }
    section.section-about > .wrap > .content .copy ul li,
    section.section-process > .wrap > .content .copy ul li,
    section.section-services > .wrap > .content .copy ul li {
      position: relative;
      padding-left: 30px; }
      section.section-about > .wrap > .content .copy ul li:before,
      section.section-process > .wrap > .content .copy ul li:before,
      section.section-services > .wrap > .content .copy ul li:before {
        content: '';
        display: block;
        position: absolute;
        left: 10px;
        top: calc(50% + 1px);
        -webkit-transform: translateY(-50%);
                transform: translateY(-50%);
        width: 5px;
        height: 5px;
        background-color: #FFCC00;
        border-radius: 100px; }
      section.section-about > .wrap > .content .copy ul li p,
      section.section-process > .wrap > .content .copy ul li p,
      section.section-services > .wrap > .content .copy ul li p {
        margin: 0; }
      section.section-about > .wrap > .content .copy ul li + li,
      section.section-process > .wrap > .content .copy ul li + li,
      section.section-services > .wrap > .content .copy ul li + li {
        margin-top: 5px; }
  section.section-about > .wrap > .content .copy .pics:after,
  section.section-process > .wrap > .content .copy .pics:after,
  section.section-services > .wrap > .content .copy .pics:after {
    content: "";
    display: table;
    clear: both; }
  section.section-about > .wrap > .content .copy .pics .pic,
  section.section-process > .wrap > .content .copy .pics .pic,
  section.section-services > .wrap > .content .copy .pics .pic {
    float: left;
    width: calc(33.33% - 1px); }
    section.section-about > .wrap > .content .copy .pics .pic img,
    section.section-process > .wrap > .content .copy .pics .pic img,
    section.section-services > .wrap > .content .copy .pics .pic img {
      width: 100%;
      height: auto; }
    section.section-about > .wrap > .content .copy .pics .pic + .pic,
    section.section-process > .wrap > .content .copy .pics .pic + .pic,
    section.section-services > .wrap > .content .copy .pics .pic + .pic {
      margin-left: 1px; }
  section.section-about > .wrap > .content .copy .pics + p,
  section.section-process > .wrap > .content .copy .pics + p,
  section.section-services > .wrap > .content .copy .pics + p {
    margin-top: 20px; }
  @media only screen and (max-width: 639px) {
    section.section-about,
    section.section-process,
    section.section-services {
      padding-left: 20px;
      padding-right: 20px; }
      section.section-about > .wrap > .content .copy,
      section.section-process > .wrap > .content .copy,
      section.section-services > .wrap > .content .copy {
        margin-top: 20px; }
        section.section-about > .wrap > .content .copy p,
        section.section-process > .wrap > .content .copy p,
        section.section-services > .wrap > .content .copy p {
          font-size: 20px; }
          section.section-about > .wrap > .content .copy p + p,
          section.section-process > .wrap > .content .copy p + p,
          section.section-services > .wrap > .content .copy p + p {
            margin-top: 22px; } }
  @media only screen and (min-width: 1024px) {
    section.section-about > .wrap,
    section.section-process > .wrap,
    section.section-services > .wrap {
      padding-left: 20px;
      padding-right: 20px; }
      section.section-about > .wrap > .content:after,
      section.section-process > .wrap > .content:after,
      section.section-services > .wrap > .content:after {
        content: "";
        display: table;
        clear: both; }
      section.section-about > .wrap > .content h2,
      section.section-process > .wrap > .content h2,
      section.section-services > .wrap > .content h2 {
        float: left;
        width: 33.33%; }
      section.section-about > .wrap > .content .copy,
      section.section-process > .wrap > .content .copy,
      section.section-services > .wrap > .content .copy {
        float: left;
        width: 50%; } }
section.section-services {
  padding-top: 100px; }
  @media only screen and (min-width: 1024px) {
    section.section-services {
      margin-top: 100px; } }
section.section-about {
  padding-bottom: 100px; }

section.section-process > .wrap > .content .columns .column p {
  margin-top: 10px; }

@media only screen and (min-width: 1024px) {
  section.section-process > .wrap > .content .columns:after {
    content: "";
    display: table;
    clear: both; }
  section.section-process > .wrap > .content .columns .column {
    float: left;
    width: calc(33.33% - 30px); }
    section.section-process > .wrap > .content .columns .column + .column {
      margin-left: 45px; } }

section.section-contact {
  margin: 0;
  padding-top: calc(77.5690607735px + 1vw * 3.3149171271);
  padding-bottom: calc(77.5690607735px + 1vw * 3.3149171271); }
  @media only screen and (min-width: 1024px) {
    section.section-contact {
      padding-top: 120px;
      padding-bottom: 120px; } }
  section.section-contact > .wrap {
    padding-left: 20px;
    padding-right: 20px; }
    section.section-contact > .wrap > .content p {
      font-weight: 300;
      letter-spacing: -0.015em; }
      section.section-contact > .wrap > .content p:first-child {
        font-size: calc(13.3701657459px + 1vw * 1.7679558011); }
        @media only screen and (min-width: 1024px) {
          section.section-contact > .wrap > .content p:first-child {
            font-size: 36px; } }
      section.section-contact > .wrap > .content p:last-child {
        font-size: calc(16.3425414365px + 1vw * 0.4419889503); }
        @media only screen and (min-width: 1024px) {
          section.section-contact > .wrap > .content p:last-child {
            font-size: 22px; } }
      section.section-contact > .wrap > .content p a {
        font-weight: 500; }
  @media only screen and (max-width: 639px) {
    section.section-contact > .wrap > .content p:last-child {
      margin-top: 20px; } }
  @media only screen and (min-width: 640px) {
    section.section-contact > .wrap > .content {
      position: relative; }
      section.section-contact > .wrap > .content:after {
        content: "";
        display: table;
        clear: both; }
      section.section-contact > .wrap > .content p:first-child {
        width: calc(60% - 20px); }
      section.section-contact > .wrap > .content p:last-child {
        width: calc(40% - 20px);
        position: absolute;
        bottom: 5px;
        right: 0; } }
section.section-projects > .wrap > .content ol li.project-bitcoin-design .project-visuals:before {
  content: '';
  display: block;
  background-color: #F7931A;
  border-radius: 100%;
  position: absolute;
  left: 50%;
  width: 100%;
  max-width: 490px;
  bottom: 0%;
  padding-bottom: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%); }

@media only screen and (max-width: 639px) {
  section.section-projects > .wrap > .content ol li.project-bitcoin-design .project-visuals:before {
    max-width: calc(100% - 30px); } }

section.section-projects > .wrap > .content ol li.project-bitcoin-design-guide .project-visuals:before {
  content: '';
  display: block;
  background-color: #A2C9EA;
  border-radius: 100%;
  position: absolute;
  left: 50%;
  width: 100%;
  max-width: 490px;
  bottom: 0%;
  padding-bottom: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%); }

@media only screen and (max-width: 639px) {
  section.section-projects > .wrap > .content ol li.project-bitcoin-design-guide .project-visuals:before {
    max-width: calc(100% - 30px); } }

section.section-projects > .wrap > .content ol li.project-bitcoin-ui-kit .project-visuals:before {
  content: '';
  display: block;
  background-color: #27AE60;
  border-radius: 10px;
  position: absolute;
  left: 50%;
  width: 80%;
  max-width: 440px;
  bottom: 9%;
  padding-bottom: 80%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%); }

@media only screen and (max-width: 639px) {
  section.section-projects > .wrap > .content ol li.project-bitcoin-ui-kit .project-visuals:before {
    max-width: calc(100% - 30px); } }

section.section-projects > .wrap > .content ol li.project-bitcoin-icons .project-visuals:before {
  content: '';
  display: block;
  background-color: #FFCB01;
  border-radius: 10px;
  position: absolute;
  left: 50%;
  width: 80%;
  max-width: 440px;
  bottom: 9%;
  padding-bottom: 80%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%); }

@media only screen and (max-width: 639px) {
  section.section-projects > .wrap > .content ol li.project-bitcoin-icons .project-visuals:before {
    max-width: calc(100% - 30px); } }

section.section-projects > .wrap > .content ol li.project-crypto-ux-handbook .project-visuals:before {
  content: '';
  display: block;
  background-color: #5856D6;
  border-radius: 10px;
  position: absolute;
  left: 50%;
  width: 100%;
  max-width: 440px;
  bottom: 0;
  padding-bottom: 60%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%); }

@media only screen and (max-width: 639px) {
  section.section-projects > .wrap > .content ol li.project-crypto-ux-handbook .project-visuals:before {
    max-width: calc(100% - 30px); } }

section.section-projects > .wrap > .content ol li.project-root .project-visuals:before {
  content: '';
  display: block;
  background-color: #ff5715;
  border-radius: 10px;
  position: absolute;
  left: 50%;
  width: 100%;
  max-width: 440px;
  bottom: 0;
  padding-bottom: 60%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%); }

@media only screen and (max-width: 639px) {
  section.section-projects > .wrap > .content ol li.project-root .project-visuals:before {
    max-width: calc(100% - 30px); } }

section.section-projects > .wrap > .content ol li.project-grin .project-visuals:before {
  content: '';
  display: block;
  background-color: #FFDD57;
  border-radius: 1000px;
  position: absolute;
  left: 50%;
  width: 100%;
  top: 50%;
  padding-bottom: 100%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }

@media only screen and (max-width: 639px) {
  section.section-projects > .wrap > .content ol li.project-grin .project-visuals:before {
    max-width: calc(100% - 30px);
    padding-bottom: calc(100% - 30px); } }

section.section-projects > .wrap > .content ol li.project-include-fitness .project-visuals:before {
  content: '';
  display: block;
  background-color: #f8f8f8;
  border-radius: 10px;
  position: absolute;
  left: 50%;
  width: 100%;
  max-width: 440px;
  bottom: 10%;
  padding-bottom: 70%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%); }

section.section-projects > .wrap > .content ol li.project-include-fitness .project-visuals .wrap {
  mix-blend-mode: multiply; }

@media only screen and (max-width: 639px) {
  section.section-projects > .wrap > .content ol li.project-include-fitness .project-visuals:before {
    max-width: calc(100% - 30px); } }

section.section-projects > .wrap > .content ol li.project-nars .project-visuals:before {
  content: '';
  display: block;
  background-color: #CC0001;
  border-radius: 1000px;
  position: absolute;
  left: 50%;
  width: 80%;
  top: 50%;
  padding-bottom: 80%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }

.project-info {
  position: relative;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
  margin-top: -25px;
  z-index: 2; }
  .project-info .pagination {
    position: absolute;
    left: 50%;
    top: 32px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%); }
    .project-info .pagination a {
      display: inline-block;
      position: relative;
      width: 20px;
      height: 20px;
      color: transparent;
      font-size: 0;
      opacity: 0.2; }
      .project-info .pagination a.-active {
        opacity: 1; }
      .project-info .pagination a:before {
        display: block;
        width: 8px;
        height: 8px;
        border-radius: 100px;
        background-color: black;
        content: '';
        position: absolute;
        left: 50%;
        top: 50;
        -webkit-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%); }
  .project-info .-icon svg {
    width: auto;
    height: 56px; }
  .project-info h3 {
    margin-top: 5px;
    font-size: calc(28.6850828729px + 1vw * 0.8839779006); }
    @media only screen and (min-width: 1024px) {
      .project-info h3 {
        font-size: 40px; } }
  .project-info h4 {
    font-size: 24px;
    font-weight: 300; }
  .project-info p {
    margin-top: 10px; }
  .project-info nav.-links {
    margin-top: 20px; }
    .project-info nav.-links a {
      display: inline-block;
      font-size: 14px;
      font-weight: 500; }
      .project-info nav.-links a:hover {
        color: #EB1B0A; }
      .project-info nav.-links a + a {
        margin-left: 20px; }
  .project-info > a {
    margin-top: 20px;
    display: inline-block;
    background-color: #222222;
    border-radius: 5px;
    padding: 0 15px;
    font-size: 16px;
    line-height: 36px;
    color: white;
    font-weight: 600; }
    .project-info > a svg {
      margin-left: 5px;
      width: 16px;
      height: 16px;
      fill: white;
      stroke: white;
      vertical-align: middle;
      -webkit-transform: translateY(-2px);
              transform: translateY(-2px); }
  @media only screen and (max-width: 639px) {
    .project-info {
      padding-left: 30px;
      padding-right: 30px; } }
.project-pagination {
  position: absolute;
  left: 50%;
  top: 30px;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  text-align: center; }
  .project-pagination a {
    display: inline-block;
    position: relative;
    width: 10px;
    height: 10px; }
    .project-pagination a:before {
      display: block;
      content: '';
      position: absolute;
      left: 50%;
      top: 50%;
      width: 8px;
      height: 8px;
      border-radius: 20px;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      background-color: black;
      opacity: 0.2;
      transition: all 150ms cubic-bezier(0.5, 0, 0.2, 1); }
    .project-pagination a:hover:before {
      background-color: #EB1B0A; }
    .project-pagination a.-active:before {
      opacity: 1; }
    .project-pagination a + a {
      margin-left: 10px; }

.project-phones > .phone {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transition: all 500ms cubic-bezier(0.5, 0, 0.2, 1); }
  .project-phones > .phone > .wrap {
    padding-bottom: 100%;
    position: relative; }
    .project-phones > .phone > .wrap:after {
      display: block;
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      background-image: url("../assets/projects/phone.png");
      background-size: contain;
      background-position: center center;
      background-repeat: no-repeat; }
      @media screen and (-webkit-min-device-pixel-ratio: 2), screen and (-moz-min-device-pixel-ratio: 2), screen and (min-device-pixel-ratio: 2), screen and (min-resolution: 192dpi), screen and (min-resolution: 2dppx) {
        .project-phones > .phone > .wrap:after {
          background-image: url("../assets/projects/phone@2x.png"); } }
      @media only screen and (min-width: 1281px) {
        .project-phones > .phone > .wrap:after {
          background-image: url("../assets/projects/phone@2x.png"); } }
    .project-phones > .phone > .wrap > .content {
      position: absolute;
      left: 31.2%;
      top: 9.7%;
      width: 37.4%;
      height: 82%;
      overflow: hidden; }
      .project-phones > .phone > .wrap > .content img {
        width: 100%;
        height: auto; }

.project-phones.-count-2 > .phone:nth-child(1) {
  -webkit-transform: translate(-60px, -20px);
          transform: translate(-60px, -20px);
  transition-delay: 150ms; }

.project-phones.-count-2 > .phone:nth-child(2) {
  -webkit-transform: translate(20px, 0px);
          transform: translate(20px, 0px); }

.project-phones.-count-2.-active .phone:nth-child(1) {
  -webkit-transform: translate(-60px, -20px);
          transform: translate(-60px, -20px); }

.project-phones.-count-2.-active .phone:nth-child(2) {
  -webkit-transform: translate(60px, 0px);
          transform: translate(60px, 0px); }

.project-screens > .wrap > .content {
  position: relative;
  height: 100%;
  padding-bottom: 100%; }
  .project-screens > .wrap > .content .screen {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100%;
    max-width: 200px;
    transition: all 350ms cubic-bezier(0.5, 0, 0.2, 1); }
    .project-screens > .wrap > .content .screen:nth-child(1) {
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
      z-index: 3;
      transition-delay: 100ms; }
    .project-screens > .wrap > .content .screen:nth-child(2) {
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
      z-index: 2;
      transition-delay: 50ms; }
    .project-screens > .wrap > .content .screen:nth-child(3) {
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
      z-index: 1; }
    .project-screens > .wrap > .content .screen .screen-content img {
      display: block;
      width: 100%;
      height: auto;
      margin: 0;
      border-top-left-radius: 3px;
      border-top-right-radius: 3px;
      box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.2); }

.project-screens.-active > .wrap > .content .screen:nth-child(1) {
  transition-delay: 200ms; }

.project-screens.-active > .wrap > .content .screen:nth-child(2) {
  transition-delay: 100ms; }

.project-screens.-tablet > .wrap > .content .screen .screen-content img {
  border-radius: 3px; }

.project-screens.-tablet.-count-1 > .wrap > .content .screen {
  max-width: calc(100% - 40px);
  top: 50%;
  left: 50%; }

.project-screens.-tablet.-count-2 > .wrap > .content .screen {
  max-width: calc(100% - 80px); }
  .project-screens.-tablet.-count-2 > .wrap > .content .screen:nth-child(1) {
    top: 110px;
    left: calc(50% - 50px); }
  .project-screens.-tablet.-count-2 > .wrap > .content .screen:nth-child(2) {
    top: 80px;
    left: calc(50% + 50px); }

.project-screens.-tablet.-count-2.-active > .wrap > .content .screen:nth-child(1) {
  left: calc(50% - 20px); }

.project-screens.-tablet.-count-2.-active > .wrap > .content .screen:nth-child(2) {
  left: calc(50% + 20px); }

.project-screens.-tablet.-count-3 > .wrap > .content .screen {
  max-width: calc(100% - 80px); }
  .project-screens.-tablet.-count-3 > .wrap > .content .screen:nth-child(1) {
    top: 160px;
    left: calc(50% - 30px); }
  .project-screens.-tablet.-count-3 > .wrap > .content .screen:nth-child(2) {
    top: 130px;
    left: calc(50%); }
  .project-screens.-tablet.-count-3 > .wrap > .content .screen:nth-child(3) {
    top: 100px;
    left: calc(50% + 30px); }

.project-screens.-tablet.-active > .wrap > .content .screen:nth-child(1) {
  top: 110px; }

.project-screens.-tablet.-active > .wrap > .content .screen:nth-child(2) {
  top: 80px; }

.project-screens.-tablet.-active > .wrap > .content .screen:nth-child(3) {
  top: 50px; }

.project-screens.-site > .wrap > .content .screen {
  max-width: 200px; }
  .project-screens.-site > .wrap > .content .screen:nth-child(1) {
    top: 150px;
    left: calc(50% - 50px); }
  .project-screens.-site > .wrap > .content .screen:nth-child(2) {
    top: 180px;
    left: calc(50% + 10px); }
  .project-screens.-site > .wrap > .content .screen:nth-child(3) {
    top: 230px;
    left: calc(50% + 50px); }

.project-screens.-site.-active > .wrap > .content .screen:nth-child(1) {
  top: 50px; }

.project-screens.-site.-active > .wrap > .content .screen:nth-child(2) {
  top: 80px; }

.project-screens.-site.-active > .wrap > .content .screen:nth-child(3) {
  top: 110px; }

.project-visuals {
  padding-bottom: 100%;
  position: relative;
  overflow: hidden; }
  .project-visuals > .wrap {
    position: relative;
    height: 100%; }
    .project-visuals > .wrap .project-visual {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      opacity: 0;
      transition: all 500ms cubic-bezier(0.5, 0, 0.2, 1); }
      .project-visuals > .wrap .project-visual.-has-pages {
        cursor: pointer; }
      .project-visuals > .wrap .project-visual.-pre {
        -webkit-transform: translateX(-20%);
                transform: translateX(-20%); }
      .project-visuals > .wrap .project-visual.-post {
        -webkit-transform: translateX(20%);
                transform: translateX(20%); }
      .project-visuals > .wrap .project-visual.-active {
        opacity: 1;
        -webkit-transform: translateX(0);
                transform: translateX(0); }

.project-image {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%; }
  .project-image > .wrap {
    padding-bottom: 100%;
    position: relative; }
    .project-image > .wrap > .content {
      position: absolute;
      width: 100%;
      max-width: 100%;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); }
      .project-image > .wrap > .content img {
        width: 100%;
        height: auto; }
