body:before {
  content: "smartphone";
  display: none;
  /* Prevent from displaying. */ }
  @media only screen and (min-width: 481px) {
    body:before {
      content: "XS"; } }
  @media only screen and (min-width: 721px) {
    body:before {
      content: "S"; } }
  @media only screen and (min-width: 988px) {
    body:before {
      content: "M"; } }
  @media only screen and (min-width: 1140px) {
    body:before {
      content: "L"; } }

html, body {
  margin: 0;
  padding: 0; }

.inset-container {
  margin: 0 auto;
  width: 320px; }
  @media only screen and (min-width: 721px) {
    .inset-container {
      width: 720px; } }
  @media only screen and (min-width: 988px) {
    .inset-container {
      width: 900px; } }
  @media only screen and (min-width: 1140px) {
    .inset-container {
      width: 988px; } }

/*--------------------------------*/
.content-block {
  background-color: white;
  padding: 40px 0;
  overflow: hidden; }
  @media only screen and (min-width: 721px) {
    .content-block {
      padding: 100px 0; } }
  .content-block.light-grey {
    background-color: #ededed; }
  .content-block.dark-grey {
    background-color: #323232;
    color: white; }
  .content-block.primary {
    padding-bottom: 0; }
  .content-block.message {
    background-color: #ff5b10;
    padding: 32px 0;
    color: white;
    text-align: center; }
    @media only screen and (min-width: 988px) {
      .content-block.message {
        padding: 56px 0; } }
    .content-block.message h1:only-child, .content-block.message h2:only-child, .content-block.message h3:only-child, .content-block.message h4:only-child, .content-block.message h5:only-child, .content-block.message h6:only-child {
      margin-bottom: 0; }
  .content-block.message {
    background-color: #ff5b10;
    padding: 24px 0;
    color: white;
    text-align: center; }
    .content-block.message.grey {
      background-color: #8d8d8d; }
    @media only screen and (min-width: 988px) {
      .content-block.message {
        padding: 32px 0; } }
    .content-block.message h1:only-child, .content-block.message h2:only-child, .content-block.message h3:only-child, .content-block.message h4:only-child, .content-block.message h5:only-child, .content-block.message h6:only-child {
      margin-bottom: 0; }
  .content-block.hero {
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    height: 480px;
    padding-bottom: 0; }
    .content-block.hero:before, .content-block.hero:after {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 290px;
      content: "";
      background-repeat: no-repeat;
      background-position: center top;
      background-size: auto 100%;
      z-index: 0; }
      @media only screen and (min-width: 721px) {
        .content-block.hero:before, .content-block.hero:after {
          height: 100%;
          background-position: center 460%;
          background-size: auto 103%; } }
      @media only screen and (min-width: 988px) {
        .content-block.hero:before, .content-block.hero:after {
          height: 100%;
          background-position: center 83%;
          background-size: auto 115%; } }
      @media only screen and (min-width: 1140px) {
        .content-block.hero:before, .content-block.hero:after {
          height: 100%;
          background-size: auto 126%; } }
    .content-block.hero:before {
      background-image: url("/img/hero-repeating-grey@2x.jpg");
      background-repeat: repeat-x; }
    @media only screen and (min-width: 721px) {
      .content-block.hero {
        height: 580px; } }
    @media only screen and (min-width: 988px) {
      .content-block.hero {
        height: 650px; } }
  .content-block.page-heading {
    background: -webkit-gradient(linear, left top, left bottom, from(#c7c7c7), to(#f4f4f4));
    background: linear-gradient(to bottom, #c7c7c7 0%, #f4f4f4 100%); }
    .content-block.page-heading h1 {
      font-size: 2em;
      padding: 0;
      margin: 2em 0 0; }
      @media only screen and (min-width: 988px) {
        .content-block.page-heading h1 {
          font-size: 3em; } }

.page--text-only .content-block {
  padding: 24px 0; }
  @media only screen and (min-width: 721px) {
    .page--text-only .content-block {
      padding: 48px 0; } }
  .page--text-only .content-block a {
    color: #000000;
    -webkit-transition: color 150ms ease;
    transition: color 150ms ease; }
    .page--text-only .content-block a:active {
      color: #ff5b10; }

html, body {
  height: 100%;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
  color: #323232;
  background-color: #2e2e2e; }

body:after {
  content: "";
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background-color: #fff;
  background-position: center top;
  background-repeat: no-repeat; }

.no-transition {
  -webkit-transition: none !important;
  transition: none !important; }

.no-transition--before:before {
  -webkit-transition: none !important;
  transition: none !important; }

.no-transition--after:before {
  -webkit-transition: none !important;
  transition: none !important; }

.no-scrolling {
  overflow: hidden !important; }

@media only screen and (max-width: 720px) {
  .no-scrolling--mobile-only {
    overflow: hidden !important; } }

.m-only {
  display: inherit; }
  @media only screen and (min-width: 721px) {
    .m-only {
      display: none; } }

.sd-only {
  display: none; }
  @media only screen and (min-width: 721px) {
    .sd-only {
      display: inherit; } }

.d-only {
  display: none; }
  @media only screen and (min-width: 988px) {
    .d-only {
      display: inherit; } }

.ld-only {
  display: none; }
  @media only screen and (min-width: 1140px) {
    .ld-only {
      display: inherit; } }

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 1em;
  padding: 0;
  font-weight: 300; }
  h1 strong, h1 b, h2 strong, h2 b, h3 strong, h3 b, h4 strong, h4 b, h5 strong, h5 b, h6 strong, h6 b {
    font-weight: 600; }

h1, h2 {
  font-size: 28px;
  line-height: 32px; }
  @media only screen and (min-width: 988px) {
    h1, h2 {
      font-size: 32px;
      line-height: 36px; } }

h3 {
  font-size: 24px;
  line-height: 28px; }

p {
  margin: 0 0 1em; }

a {
  color: #323232; }
  a:active {
    color: #ff5b10; }

hr {
  width: 100%;
  border: 0 none;
  height: 1px;
  background-color: #dbdbdb;
  padding: 0;
  margin: 40px 0; }
  @media only screen and (min-width: 988px) {
    hr {
      margin: 60px 0; } }

@media only screen and (max-width: 720px) {
  img {
    width: 100%;
    height: auto; } }

img {
  font-size: 12px; }

.text-color-brand {
  color: #ff5b10; }

.text-color-yellow {
  color: #ffb109; }

.text-color-blue {
  color: #1587d8; }

.text-color-green {
  color: #67bf3d; }

.text-color-violet,
.text-color-purple {
  color: #c85ac4; }

.text-color-grey {
  color: #8d8d8d; }

.text-color-grey-light {
  color: #dbdbdb; }

.text-color-grey-dark {
  color: #404040; }

/* ------------------------------------------------------ */
.video-wrapper {
  position: relative;
  background-color: #000000;
  width: 320px;
  height: 180px; }
  @media only screen and (min-width: 721px) {
    .video-wrapper {
      width: 480px;
      height: 270px; } }
  @media only screen and (min-width: 988px) {
    .video-wrapper {
      width: 640px;
      height: 360px; } }
  .video-wrapper .video-embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border: 0 none; }
  .video-wrapper .embed {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0; }
    .video-wrapper .embed iframe {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      overflow: hidden; }
  .video-wrapper .end-frame {
    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;
    background-color: rgba(237, 237, 237, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    -webkit-transition: opacity 850ms ease;
    transition: opacity 850ms ease;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 850ms ease, visibility 10ms linear 1000ms;
    transition: opacity 850ms ease, visibility 10ms linear 1000ms; }
    .video-wrapper .end-frame .content {
      position: relative;
      text-align: center;
      z-index: 1; }
      .video-wrapper .end-frame .content strong {
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase; }
      .video-wrapper .end-frame .content button,
      .video-wrapper .end-frame .content .button {
        position: relative;
        background-color: #323232;
        border: 0 none;
        color: white;
        margin-bottom: 8px;
        border-radius: 4px;
        text-align: left;
        width: auto; }
        .video-wrapper .end-frame .content button + button,
        .video-wrapper .end-frame .content button + .button,
        .video-wrapper .end-frame .content button + br + button,
        .video-wrapper .end-frame .content .button + button,
        .video-wrapper .end-frame .content .button + .button,
        .video-wrapper .end-frame .content .button + br + button {
          margin-left: 4px; }
        .video-wrapper .end-frame .content button + br ~ button,
        .video-wrapper .end-frame .content .button + br ~ button {
          margin-bottom: 0; }
        .video-wrapper .end-frame .content button:before,
        .video-wrapper .end-frame .content .button:before {
          position: relative;
          content: "";
          display: inline-block;
          width: 38px;
          height: 38px;
          vertical-align: middle;
          background-repeat: no-repeat;
          background-size: 100% auto; }
        .video-wrapper .end-frame .content button span,
        .video-wrapper .end-frame .content .button span {
          display: none; }
        .video-wrapper .end-frame .content button.replay,
        .video-wrapper .end-frame .content .button.replay {
          background-color: rgba(0, 0, 0, 0.7);
          color: white;
          width: 140px;
          text-align: center;
          line-height: 40px;
          margin: 0 auto 8px;
          display: block; }
          .video-wrapper .end-frame .content button.replay:before,
          .video-wrapper .end-frame .content .button.replay:before {
            top: -1px;
            background-image: url("/img/video-replay.svg"), url("/img/video-replay.svg"); }
          .video-wrapper .end-frame .content button.replay span,
          .video-wrapper .end-frame .content .button.replay span {
            display: inline-block;
            padding-right: 6px; }
          @media only screen and (min-width: 721px) {
            .video-wrapper .end-frame .content button.replay,
            .video-wrapper .end-frame .content .button.replay {
              margin-bottom: 16px; } }
        .video-wrapper .end-frame .content button[data-sharer=facebook],
        .video-wrapper .end-frame .content .button[data-sharer=facebook] {
          background-color: #3b5998; }
          .video-wrapper .end-frame .content button[data-sharer=facebook]:before,
          .video-wrapper .end-frame .content .button[data-sharer=facebook]:before {
            background-image: url("/img/social-facebook.svg"); }
        .video-wrapper .end-frame .content button[data-sharer=twitter],
        .video-wrapper .end-frame .content .button[data-sharer=twitter] {
          background-color: #00aced; }
          .video-wrapper .end-frame .content button[data-sharer=twitter]:before,
          .video-wrapper .end-frame .content .button[data-sharer=twitter]:before {
            background-image: url("/img/social-twitter.svg"); }
        .video-wrapper .end-frame .content button[data-sharer=linkedin],
        .video-wrapper .end-frame .content .button[data-sharer=linkedin] {
          background-color: #007AB5; }
          .video-wrapper .end-frame .content button[data-sharer=linkedin]:before,
          .video-wrapper .end-frame .content .button[data-sharer=linkedin]:before {
            background-image: url("/img/social-linkedin.svg"); }
        .video-wrapper .end-frame .content button[data-sharer=googleplus],
        .video-wrapper .end-frame .content .button[data-sharer=googleplus] {
          background-color: #CB2029; }
          .video-wrapper .end-frame .content button[data-sharer=googleplus]:before,
          .video-wrapper .end-frame .content .button[data-sharer=googleplus]:before {
            background-image: url("/img/social-googleplus.svg"); }
        .video-wrapper .end-frame .content button[data-sharer=reddit],
        .video-wrapper .end-frame .content .button[data-sharer=reddit] {
          background-color: #5f99cf; }
          .video-wrapper .end-frame .content button[data-sharer=reddit]:before,
          .video-wrapper .end-frame .content .button[data-sharer=reddit]:before {
            background-image: url("/img/social-reddit.svg"); }
        .video-wrapper .end-frame .content button[data-sharer=pinterest],
        .video-wrapper .end-frame .content .button[data-sharer=pinterest] {
          background-color: #DD4C39; }
          .video-wrapper .end-frame .content button[data-sharer=pinterest]:before,
          .video-wrapper .end-frame .content .button[data-sharer=pinterest]:before {
            background-image: url("/img/social-pinterest.svg"); }
        .video-wrapper .end-frame .content button[data-sharer=email],
        .video-wrapper .end-frame .content .button[data-sharer=email] {
          background-color: #696969; }
          .video-wrapper .end-frame .content button[data-sharer=email]:before,
          .video-wrapper .end-frame .content .button[data-sharer=email]:before {
            background-image: url("/img/social-email.svg"); }
  .video-wrapper .play-button,
  .video-wrapper .replay-button {
    width: 80px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    cursor: pointer;
    -webkit-transition: opacity 150ms ease;
    transition: opacity 150ms ease; }
    .video-wrapper .play-button:active,
    .video-wrapper .replay-button:active {
      opacity: 0.6; }
  .video-wrapper .play-button {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }
    .video-wrapper .play-button:before {
      content: "";
      display: block;
      width: 0;
      height: 0;
      position: absolute;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      border-top: 18px solid transparent;
      border-bottom: 18px solid transparent;
      border-left: 16px solid white; }
  .video-wrapper .poster {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    -webkit-transition: opacity 850ms ease;
    transition: opacity 850ms ease;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 850ms ease, visibility 10ms linear 0ms;
    transition: opacity 850ms ease, visibility 10ms linear 0ms; }
    .video-wrapper .poster img {
      width: 100%;
      height: auto; }
  .video-wrapper.playing .poster {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 850ms ease, visibility 10ms linear 1000ms;
    transition: opacity 850ms ease, visibility 10ms linear 1000ms; }
  .video-wrapper.ended .poster {
    opacity: 1;
    visibility: visible; }
    .video-wrapper.ended .poster .play-button {
      display: none; }
  .video-wrapper.ended .end-frame {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 850ms ease, visibility 10ms linear 0ms;
    transition: opacity 850ms ease, visibility 10ms linear 0ms; }

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 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;
  opacity: 0;
  visibility: hidden;
  z-index: -1;
  -webkit-transition: opacity 850ms ease, visibility 10ms linear 850ms, z-index 0ms linear 850ms;
  transition: opacity 850ms ease, visibility 10ms linear 850ms, z-index 0ms linear 850ms; }
  @media only screen and (max-width: 720px) {
    .overlay {
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: start; } }
  .overlay:before {
    content: "";
    position: fixed;
    top: -70px;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: -1; }
  .overlay.active {
    opacity: 1;
    visibility: visible;
    z-index: 10;
    -webkit-transition: opacity 850ms ease, visibility 10ms linear 0ms, z-index 0ms linear 0ms;
    transition: opacity 850ms ease, visibility 10ms linear 0ms, z-index 0ms linear 0ms;
    position: fixed;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; }
  .overlay.overlay--dark:before {
    background-color: rgba(0, 0, 0, 0.6); }
  .overlay.overlay--brand:before {
    background-color: rgba(255, 76, 0, 0.84); }
  .overlay.overlay--above-nav {
    z-index: 101; }
    @media only screen and (max-width: 720px) {
      .overlay.overlay--above-nav .dialog {
        margin: 40px 0; } }
  .overlay .dialog {
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: white;
    color: #323232;
    padding: 24px;
    border-top-left-radius: 16px;
    border-bottom-right-radius: 16px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
            box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    width: 320px;
    margin: 40px 0; }
    @media only screen and (max-width: 720px) {
      .overlay .dialog {
        margin-top: 100px; } }
    @media only screen and (min-width: 721px) {
      .overlay .dialog {
        width: 500px; } }
    .overlay .dialog.has-header {
      padding-top: 6em; }
    .overlay .dialog.dialog--small {
      width: 320px; }
      .overlay .dialog.dialog--small .button + .button {
        display: block;
        margin: 8px auto 0; }
    .overlay .dialog .corner-x {
      position: absolute;
      top: 0;
      right: 0;
      text-decoration: none;
      cursor: pointer;
      width: 56px;
      height: 65px;
      line-height: 56px;
      font-size: 40px; }
      @media only screen and (min-width: 721px) {
        .overlay .dialog .corner-x {
          width: 64px;
          height: 64px;
          line-height: 64px;
          font-size: 56px; } }
      .overlay .dialog .corner-x:active {
        color: #8d8d8d; }
    .overlay .dialog header {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 5em;
      background-color: #ff5b10;
      color: white;
      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; }
      .overlay .dialog header h1, .overlay .dialog header h2, .overlay .dialog header h3, .overlay .dialog header h4, .overlay .dialog header h5, .overlay .dialog header h6 {
        margin: 0;
        padding: 0 24px; }

@media only screen and (min-width: 721px) {
  .contact-confirmation .dialog.dialog--small {
    width: 400px;
    padding-top: 8em;
    padding-bottom: 3em; }
    .contact-confirmation .dialog.dialog--small header {
      height: 6em; }
    .contact-confirmation .dialog.dialog--small p {
      font-size: 20px;
      line-height: 24px;
      margin-bottom: 1em; } }

.social {
  position: relative;
  background-color: #404040;
  width: 24px;
  height: 24px;
  display: inline-block;
  border-radius: 1px;
  background-position: center center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  cursor: pointer; }
  .social:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 8px;
    top: -8px;
    left: -8px; }
  .flexgrid .col.social {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none; }
  .social.facebook {
    background-image: url("/img/social-facebook.svg"); }
  .social.googleplus {
    background-image: url("/img/social-googleplus.svg"); }
  .social.twitter {
    background-image: url("/img/social-twitter.svg"); }
  .social.linkedin {
    background-image: url("/img/social-linkedin.svg"); }

.social-wrapper {
  width: 108px; }

ul.arrow-list {
  list-style: none;
  margin-left: 0.66em;
  padding-left: 1em;
  text-indent: -1.66em; }
  ul.arrow-list li {
    margin-bottom: 8px; }
    ul.arrow-list li:before {
      color: #ff5b10;
      font-family: "Source Sans Pro", sans-serif;
      content: "\2192";
      padding-right: 1em; }

ul.stat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid #d1d1d1;
  margin-bottom: 32px; }
  ul.stat-list li {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    border-bottom: 1px solid #d1d1d1;
    line-height: 40px;
    height: 40px; }
    ul.stat-list li h2, ul.stat-list li h3, ul.stat-list li h4, ul.stat-list li h5, ul.stat-list li h6 {
      margin: 0;
      padding: 0;
      line-height: 40px; }
    @media only screen and (min-width: 988px) {
      ul.stat-list li {
        line-height: 56px;
        height: 56px;
        font-size: 24px; }
        ul.stat-list li h2, ul.stat-list li h3, ul.stat-list li h4, ul.stat-list li h5, ul.stat-list li h6 {
          line-height: 56px; } }
    ul.stat-list li.heading {
      background-color: #d1d1d1; }
    ul.stat-list li.up, ul.stat-list li.down {
      padding-left: 30px; }
      ul.stat-list li.up:before, ul.stat-list li.down:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 16px;
        background-image: url("/img/arrow_up.svg");
        background-repeat: no-repeat;
        background-position: center center;
        background-size: 12px auto; }
        @media only screen and (min-width: 988px) {
          ul.stat-list li.up:before, ul.stat-list li.down:before {
            background-size: 16px auto; } }
    ul.stat-list li.down:before {
      -webkit-transform: rotate(180deg);
              transform: rotate(180deg); }
  ul.stat-list.stat-list--paragraph {
    text-align: left; }
    ul.stat-list.stat-list--paragraph li {
      height: auto;
      min-height: 40px;
      line-height: 28px;
      overflow: visible;
      white-space: normal; }
  ul.stat-list.flex-pand {
    height: 100%;
    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;
    -ms-flex-line-pack: stretch;
        align-content: stretch;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch; }
    ul.stat-list.flex-pand li {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      ul.stat-list.flex-pand li.noflex {
        -webkit-box-flex: 0;
            -ms-flex: none;
                flex: none; }

.button,
button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-block;
  border: 2px solid #323232;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 37px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  color: #323232;
  background-color: rgba(255, 255, 255, 0);
  cursor: pointer;
  -webkit-transition: color 150ms ease, border-color 150ms ease, background-color 150ms ease;
  transition: color 150ms ease, border-color 150ms ease, background-color 150ms ease;
  width: 142px;
  height: 40px; }
  .button:active,
  button:active {
    background-color: rgba(50, 50, 50, 0.2); }
  .button.primary,
  button.primary {
    border-color: #ff5b10;
    color: #ff5b10; }
    .button.primary:active,
    button.primary:active {
      background-color: rgba(255, 91, 16, 0.2); }
  .button.white,
  button.white {
    border-color: white;
    color: white; }
    .button.white:active,
    button.white:active {
      background-color: rgba(255, 255, 255, 0.2); }
  .button + .button,
  .button + button,
  button + .button,
  button + button {
    margin-left: 1.4em; }

.cta {
  padding-top: 16px; }
  @media only screen and (min-width: 721px) {
    .cta {
      padding-top: 38px; } }

button {
  line-height: 33px;
  border-radius: 0; }

.content-block .message {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 32px 0 36px;
  background-color: transparent;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 76, 0, 0.84)), color-stop(30%, #ff5b10));
  background-image: linear-gradient(to bottom, rgba(255, 76, 0, 0.84) 0%, #ff5b10 30%);
  color: white;
  z-index: 1; }
  @media only screen and (min-width: 988px) {
    .content-block .message {
      background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 76, 0, 0.84)), color-stop(60%, #ff5b10));
      background-image: linear-gradient(to bottom, rgba(255, 76, 0, 0.84) 0%, #ff5b10 60%); } }
  @media only screen and (min-width: 1140px) {
    .content-block .message {
      background-color: rgba(255, 76, 0, 0.84);
      background-image: none; } }
  .content-block .message .inset-container {
    position: relative;
    z-index: 1; }
  .content-block .message h2 {
    font-size: 20px;
    line-height: 24px; }
    @media only screen and (min-width: 721px) {
      .content-block .message h2 {
        font-size: 28px;
        line-height: 32px; } }
  @media only screen and (min-width: 721px) and (min-width: 988px) {
    .content-block .message h2 {
      font-size: 32px;
      line-height: 36px; } }
  .content-block .message h3 {
    font-size: 16px;
    line-height: 20px; }
    @media only screen and (min-width: 721px) {
      .content-block .message h3 {
        font-size: 24px;
        line-height: 28px; } }
  .content-block .message h1, .content-block .message h2, .content-block .message h3, .content-block .message h4, .content-block .message h5, .content-block .message h6, .content-block .message p {
    margin: 0; }
  .content-block .message .col {
    padding-bottom: 1em; }
    .content-block .message .col:last-of-type {
      padding-bottom: 0; }
    @media only screen and (min-width: 721px) {
      .content-block .message .col {
        padding-bottom: 0; }
        .content-block .message .col:last-of-type {
          width: 40%;
          padding-left: 24px; } }
    @media only screen and (min-width: 1140px) {
      .content-block .message .col:last-of-type {
        width: auto;
        padding-left: 0; } }

.image-feature {
  border-top: 1px #ededed solid;
  padding: 40px 0; }
  @media only screen and (min-width: 721px) {
    .image-feature {
      padding: 60px 0; } }
  .image-feature:first-of-type {
    border-top: 0 none;
    padding-top: 0; }
  .image-feature .imagery img, .image-feature .imagery svg {
    width: 96px;
    height: auto;
    margin-right: 40px; }
    @media only screen and (max-width: 720px) {
      .image-feature .imagery img, .image-feature .imagery svg {
        margin-bottom: 1em; } }
    @media only screen and (min-width: 988px) {
      .image-feature .imagery img, .image-feature .imagery svg {
        width: 210px;
        height: auto;
        margin-right: 64px; } }

.flexgrid {
  display: block; }
  .flexgrid .col {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
    .flexgrid .col.u-1of2, .flexgrid .col.u-1of3, .flexgrid .col.u-2of3, .flexgrid .col.u-1of4 {
      -webkit-box-flex: 0 !important;
          -ms-flex: none !important;
              flex: none !important; }
    .flexgrid .col.u-1of2 {
      width: 50% !important; }
    .flexgrid .col.u-1of3 {
      width: 33.3333% !important; }
    .flexgrid .col.u-2of3 {
      width: 66.6666% !important; }
    .flexgrid .col.u-1of4 {
      width: 24% !important; }
  @media only screen and (min-width: 721px) {
    .flexgrid {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }
  .flexgrid.flexgrid--allMQ {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }

.flexgrid--gutters > .col {
  padding: 0 1em 0 0; }
  .flexgrid--gutters > .col:last-of-type {
    padding: 0; }

@media only screen and (min-width: 721px) {
  .flexgrid--gutters--not-mobile > .col {
    padding: 0 1em 0 0; }
    .flexgrid--gutters--not-mobile > .col:last-of-type {
      padding: 0; } }

@media only screen and (min-width: 988px) {
  .flexgrid--gutters-large-d-only > .col {
    padding: 0 4em 0 0; }
    .flexgrid--gutters-large-d-only > .col:last-of-type {
      padding: 0; } }

@media only screen and (min-width: 721px) {
  .flexgrid--gutters-large > .col {
    padding: 0 2em 0 0; }
    .flexgrid--gutters-large > .col:last-of-type {
      padding: 0; } }

@media only screen and (min-width: 988px) {
  .flexgrid--gutters-large > .col {
    padding: 0 4em 0 0; }
    .flexgrid--gutters-large > .col:last-of-type {
      padding: 0; } }

.flexgrid--space {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  .flexgrid--space .col {
    -webkit-box-flex: 0 !important;
        -ms-flex: none !important;
            flex: none !important; }

/* Base classes for all media */
.flexgrid--fit > .col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1; }

.flexgrid--full > .col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%; }

.flexgrid--1of2 > .col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%; }

.flexgrid--1of3 > .col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.3333%;
          flex: 0 0 33.3333%; }

.flexgrid--1of4 > .col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%; }

/* Small to medium screens */
@media only screen and (max-width: 720px) {
  [class^=".flexgrid-mobile--"],
  [class*=".flexgrid-mobile--"] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .flexgrid-mobile--fit > .col {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
  .flexgrid-mobile--full > .col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%; }
  .flexgrid-mobile--1of2 > .col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%; }
  .flexgrid-mobile--1of3 > .col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333%;
            flex: 0 0 33.3333%; }
  .flexgrid-mobile--1of4 > .col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%; }
  .flexgrid-mobile--u-1of2,
  .flexgrid-mobile--u-1of3,
  .flexgrid-mobile--u-2of3,
  .flexgrid-mobile--u-1of4,
  .flexgrid-mobile--u-full {
    -webkit-box-flex: 0 !important;
        -ms-flex: none !important;
            flex: none !important; }
  .flexgrid-mobile--u-1of2 {
    width: 50% !important; }
  .flexgrid-mobile--u-1of3 {
    width: 33.3333% !important; }
  .flexgrid-mobile--u-2of3 {
    width: 66.6666% !important; }
  .flexgrid-mobile--u-1of4 {
    width: 24% !important; }
  .flexgrid-mobile--u-full {
    width: 100% !important; } }

/* Tablet or larger */
@media only screen and (min-width: 721px) {
  .flexgrid-S--fit > .col {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
  .flexgrid-S--full > .col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%; }
  .flexgrid-S--1of2 > .col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%; }
  .flexgrid-S--1of3 > .col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333%;
            flex: 0 0 33.3333%; }
  .flexgrid-S--1of4 > .col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%; }
  .flexgrid-S--u-1of2,
  .flexgrid-S--u-1of3,
  .flexgrid-S--u-2of3,
  .flexgrid-S--u-1of4,
  .flexgrid-S--u-full {
    -webkit-box-flex: 0 !important;
        -ms-flex: none !important;
            flex: none !important; }
  .flexgrid-S--u-1of2 {
    width: 50% !important; }
  .flexgrid-S--u-1of3 {
    width: 33.3333% !important; }
  .flexgrid-S--u-2of3 {
    width: 66.6666% !important; }
  .flexgrid-S--u-1of4 {
    width: 24% !important; }
  .flexgrid-S--u-full {
    width: 100% !important; } }

@media only screen and (min-width: 988px) {
  .flexgrid-M--fit > .col {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
  .flexgrid-M--full > .col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%; }
  .flexgrid-M--1of2 > .col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%; }
  .flexgrid-M--1of3 > .col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333%;
            flex: 0 0 33.3333%; }
  .flexgrid-M--1of4 > .col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%; }
  .flexgrid-M--u-1of2,
  .flexgrid-M--u-1of3,
  .flexgrid-M--u-2of3,
  .flexgrid-M--u-1of4,
  .flexgrid-M--u-full {
    -webkit-box-flex: 0 !important;
        -ms-flex: none !important;
            flex: none !important; }
  .flexgrid-M--u-1of2 {
    width: 50% !important; }
  .flexgrid-M--u-1of3 {
    width: 33.3333% !important; }
  .flexgrid-M--u-2of3 {
    width: 66.6666% !important; }
  .flexgrid-M--u-1of4 {
    width: 24% !important; }
  .flexgrid-M--u-full {
    width: 100% !important; } }

@media only screen and (min-width: 1140px) {
  .flexgrid-L--fit > .col {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1; }
  .flexgrid-L--full > .col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%; }
  .flexgrid-L--1of2 > .col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%; }
  .flexgrid-L--1of3 > .col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.3333%;
            flex: 0 0 33.3333%; }
  .flexgrid-L--1of4 > .col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%; }
  .flexgrid-L--u-1of2,
  .flexgrid-L--u-1of3,
  .flexgrid-L--u-2of3,
  .flexgrid-L--u-1of4,
  .flexgrid-L--u-full {
    -webkit-box-flex: 0 !important;
        -ms-flex: none !important;
            flex: none !important; }
  .flexgrid-L--u-1of2 {
    width: 50% !important; }
  .flexgrid-L--u-1of3 {
    width: 33.3333% !important; }
  .flexgrid-L--u-2of3 {
    width: 66.6666% !important; }
  .flexgrid-L--u-1of4 {
    width: 24% !important; }
  .flexgrid-L--u-full {
    width: 100% !important; } }

.flexgrid .col.noflex {
  -webkit-box-flex: 0 !important;
      -ms-flex: none !important;
          flex: none !important; }

.sp-logo__dark-body {
  fill: #323232; }

.sp-logo__orange-body {
  fill: #ff5b10; }

.sp-logo__shadow {
  opacity: 0.1; }

.sp-logo__s {
  fill: white; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  font-weight: 400;
  line-height: 70px;
  height: 70px;
  padding: 0;
  background-color: white;
  -webkit-transition: background-color 850ms ease, padding 850ms ease;
  transition: background-color 850ms ease, padding 850ms ease;
  z-index: 100; }
  .site-header:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: rgba(0, 0, 0, 0.02);
    opacity: 1;
    -webkit-transition: opacity 100ms ease 0;
    transition: opacity 100ms ease 0; }
  .site-header + * {
    padding-top: 70px; }
    @media only screen and (min-width: 988px) {
      .site-header + * {
        padding-top: 100px; } }
  .site-header.at-top {
    background-color: rgba(255, 255, 255, 0); }
    @media only screen and (min-width: 988px) {
      .site-header.at-top {
        padding: 24px 0 6px; } }
    .site-header.at-top:after {
      opacity: 0;
      -webkit-transition: opacity 850ms ease 100ms;
      transition: opacity 850ms ease 100ms; }
  .site-header .inset-container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: justify;
        align-content: space-between; }
  .site-header .logo {
    position: relative;
    z-index: 10;
    display: block;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    height: 70px;
    background-position: top left;
    background-repeat: no-repeat;
    background-image: url("../img/header_logo.svg");
    background-size: 180px 70px; }
    .site-header .logo > a {
      display: block;
      width: 180px;
      height: 100%; }
    .site-header .logo h1 {
      padding: 0;
      margin: 0;
      display: none; }
  .site-header .navigation-wrapper {
    text-align: right;
    line-height: 60px; }
    @media only screen and (min-width: 988px) {
      .site-header .navigation-wrapper {
        text-align: left;
        line-height: inherit; } }
    .site-header .navigation-wrapper #mobile-menu-toggle {
      display: none; }
    .site-header .navigation-wrapper #mobile-menu-toggle:checked ~ nav {
      opacity: 1;
      visibility: visible;
      -webkit-transition: opacity 200ms ease, visibility 0 linear 0;
      transition: opacity 200ms ease, visibility 0 linear 0; }
      .site-header .navigation-wrapper #mobile-menu-toggle:checked ~ nav:before {
        opacity: 1;
        -webkit-box-shadow: 0 0 8px rgba(50, 50, 50, 0.3);
                box-shadow: 0 0 8px rgba(50, 50, 50, 0.3); }
    .site-header .navigation-wrapper .mobile-menu {
      position: relative;
      display: inline-block;
      width: 24px;
      height: 1px;
      background-color: #323232;
      cursor: pointer;
      -webkit-transition: background-color 200ms ease;
      transition: background-color 200ms ease;
      border-radius: 1px;
      z-index: 10; }
      .site-header .navigation-wrapper .mobile-menu:before, .site-header .navigation-wrapper .mobile-menu:after {
        content: "";
        position: absolute;
        display: block;
        width: 100%;
        height: 1px;
        background-color: #323232;
        -webkit-transition: top 50ms linear 200ms, -webkit-transform 200ms ease;
        transition: top 50ms linear 200ms, -webkit-transform 200ms ease;
        transition: transform 200ms ease, top 50ms linear 200ms;
        transition: transform 200ms ease, top 50ms linear 200ms, -webkit-transform 200ms ease;
        border-radius: 1px; }
      .site-header .navigation-wrapper .mobile-menu:before {
        top: -9px; }
      .site-header .navigation-wrapper .mobile-menu:after {
        top: 9px; }
      .site-header .navigation-wrapper .mobile-menu span {
        position: absolute;
        display: block;
        top: -23px;
        left: -12px;
        width: 48px;
        height: 48px; }
    .site-header .navigation-wrapper #mobile-menu-toggle:checked ~ .mobile-menu {
      background-color: transparent; }
      .site-header .navigation-wrapper #mobile-menu-toggle:checked ~ .mobile-menu:before, .site-header .navigation-wrapper #mobile-menu-toggle:checked ~ .mobile-menu:after {
        -webkit-transition: top 0ms linear 0ms, -webkit-transform 200ms ease;
        transition: top 0ms linear 0ms, -webkit-transform 200ms ease;
        transition: transform 200ms ease, top 0ms linear 0ms;
        transition: transform 200ms ease, top 0ms linear 0ms, -webkit-transform 200ms ease; }
      .site-header .navigation-wrapper #mobile-menu-toggle:checked ~ .mobile-menu:before {
        top: 0;
        -webkit-transform: rotate(45deg);
                transform: rotate(45deg); }
      .site-header .navigation-wrapper #mobile-menu-toggle:checked ~ .mobile-menu:after {
        top: 0;
        -webkit-transform: rotate(-45deg);
                transform: rotate(-45deg); }
    @media only screen and (min-width: 988px) {
      .site-header .navigation-wrapper .mobile-menu {
        display: none; } }
  .site-header nav {
    position: absolute;
    top: 0;
    right: 0;
    padding-top: 70px;
    font-size: 14px;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 200ms ease, visibility 0 linear 0ms;
    transition: opacity 200ms ease, visibility 0 linear 0ms; }
    @media only screen and (min-width: 721px) {
      .site-header nav {
        width: 264px; } }
    @media only screen and (min-width: 988px) {
      .site-header nav {
        visibility: visible; } }
    .site-header nav:before {
      content: "";
      position: absolute;
      top: 0;
      left: 50%;
      -webkit-transform: translatex(-50vw);
              transform: translatex(-50vw);
      width: 100vw;
      height: 100%;
      background-color: white;
      z-index: 0;
      padding-bottom: 11px;
      opacity: 0;
      -webkit-transition: opacity 200ms ease;
      transition: opacity 200ms ease; }
      @media only screen and (min-width: 721px) {
        .site-header nav:before {
          left: auto;
          right: -24px;
          -webkit-transform: translatex(0);
                  transform: translatex(0);
          width: 320px;
          border-top-left-radius: 16px; } }
    .site-header nav .menu-item {
      color: #323232;
      text-decoration: none;
      position: relative;
      display: block;
      text-transform: uppercase;
      line-height: 24px;
      z-index: 1;
      cursor: pointer;
      margin: 12px 0; }
      .site-header nav .menu-item > span {
        position: relative;
        display: inline-block; }
      .site-header nav .menu-item.selected > span:before {
        -webkit-transform: none;
                transform: none;
        opacity: 1;
        -webkit-transition-duration: .4s;
                transition-duration: .4s;
        background-color: #ff5b10; }
      .site-header nav .menu-item:hover > span:before {
        -webkit-transform: none;
                transform: none;
        opacity: 1;
        -webkit-transition-duration: .4s;
                transition-duration: .4s; }
      .site-header nav .menu-item > span:after {
        content: "";
        top: -8px;
        left: -15px;
        padding: 8px 15px;
        display: block;
        position: absolute;
        width: 100%;
        height: 100%; }
      .site-header nav .menu-item > span:before {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        left: 0;
        bottom: -0px;
        background: rgba(50, 50, 50, 0.2);
        -webkit-transform: translateY(6px);
                transform: translateY(6px);
        opacity: 0;
        -webkit-transition: 1.8s cubic-bezier(0.2, 1, 0.3, 1);
        transition: 1.8s cubic-bezier(0.2, 1, 0.3, 1);
        pointer-events: none; }
  @media only screen and (min-width: 988px) {
    .site-header nav {
      position: relative;
      top: auto;
      right: auto;
      width: auto;
      padding-top: 0;
      max-height: 100px;
      -webkit-transition: max-height 0ms linear;
      transition: max-height 0ms linear;
      opacity: 1; }
      .site-header nav:before {
        display: none; }
      .site-header nav .menu-item {
        display: inline-block;
        padding: 0;
        margin: 0;
        margin-right: 28px; }
        .site-header nav .menu-item:last-of-type {
          margin-right: 0; }
        .site-header nav .menu-item .hidden {
          display: none; } }

footer a {
  color: #b1b1b1;
  text-decoration: none;
  -webkit-transition: color 150ms ease;
  transition: color 150ms ease;
  cursor: pointer; }
  footer a:hover {
    color: white; }

footer .navigation {
  background-color: #323232;
  color: #b1b1b1;
  padding: 60px 0; }
  @media only screen and (min-width: 721px) {
    footer .navigation {
      font-size: 14px;
      line-height: 18px; } }
  footer .navigation small {
    display: inline-block;
    margin-bottom: 1em; }
  footer .navigation .social-wrapper {
    margin-left: auto; }
  footer .navigation nav {
    line-height: 28px; }
    @media only screen and (min-width: 721px) {
      footer .navigation nav {
        line-height: 24px; } }
    footer .navigation nav .menu-item {
      display: block; }
      footer .navigation nav .menu-item.selected {
        color: white; }
  footer .navigation .flexgrid {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
  @media only screen and (min-width: 721px) {
    footer .navigation > .flexgrid > .col:nth-child(1) {
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1; }
    footer .navigation > .flexgrid > .col:nth-child(2) {
      -webkit-box-ordinal-group: 5;
          -ms-flex-order: 4;
              order: 4; }
    footer .navigation > .flexgrid > .col:nth-child(3) {
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2; }
    footer .navigation > .flexgrid > .col:nth-child(4) {
      -webkit-box-ordinal-group: 4;
          -ms-flex-order: 3;
              order: 3; } }

footer .copyright {
  text-align: center;
  color: #696969;
  padding: 28px 0;
  font-size: 12px; }

form {
  width: 100%;
  margin: 0 auto; }
  @media only screen and (min-width: 721px) {
    form {
      width: 508px; } }

@media only screen and (min-width: 721px) {
  .overlay form {
    width: 100%; } }

.overlay form .field input[type=text],
.overlay form .field input[type=email],
.overlay form .field input[type=password],
.overlay form .field input[type=url],
.overlay form .field input[type=search],
.overlay form .field textarea {
  background-color: #ededed; }

.overlay form .field:last-of-type {
  margin-bottom: 0; }

.field {
  position: relative;
  margin-bottom: 20px;
  /*
	input:required:invalid,
	textarea:required:invalid {
		background-color: $orange-d-02;
	}
	
	input:focus:invalid,
	textarea:focus:invalid {
		background-color: white;
		box-shadow: 0 0 4px $orange-d-02;
	} */ }
  .field.submit {
    margin-top: 40px; }
    @media only screen and (min-width: 721px) {
      .field.submit {
        margin-top: 60px; } }
  .field input[type=text]::-webkit-input-placeholder,
  .field input[type=email]::-webkit-input-placeholder,
  .field input[type=password]::-webkit-input-placeholder,
  .field input[type=url]::-webkit-input-placeholder,
  .field input[type=search]::-webkit-input-placeholder,
  .field textarea::-webkit-input-placeholder {
    color: transparent; }
  .field input[type=text]:-ms-input-placeholder,
  .field input[type=email]:-ms-input-placeholder,
  .field input[type=password]:-ms-input-placeholder,
  .field input[type=url]:-ms-input-placeholder,
  .field input[type=search]:-ms-input-placeholder,
  .field textarea:-ms-input-placeholder {
    color: transparent; }
  .field input[type=text]::-ms-input-placeholder,
  .field input[type=email]::-ms-input-placeholder,
  .field input[type=password]::-ms-input-placeholder,
  .field input[type=url]::-ms-input-placeholder,
  .field input[type=search]::-ms-input-placeholder,
  .field textarea::-ms-input-placeholder {
    color: transparent; }
  .field input[type=text]::placeholder,
  .field input[type=email]::placeholder,
  .field input[type=password]::placeholder,
  .field input[type=url]::placeholder,
  .field input[type=search]::placeholder,
  .field textarea::placeholder {
    color: transparent; }
  .field input[type=text]:placeholder-shown + label, .field input[type=text].placeholder-shown + label,
  .field input[type=email]:placeholder-shown + label,
  .field input[type=email].placeholder-shown + label,
  .field input[type=password]:placeholder-shown + label,
  .field input[type=password].placeholder-shown + label,
  .field input[type=url]:placeholder-shown + label,
  .field input[type=url].placeholder-shown + label,
  .field input[type=search]:placeholder-shown + label,
  .field input[type=search].placeholder-shown + label,
  .field textarea:placeholder-shown + label,
  .field textarea.placeholder-shown + label {
    font-size: 14px;
    line-height: 50px; }
  .field input[type=text]:focus + label,
  .field input[type=email]:focus + label,
  .field input[type=password]:focus + label,
  .field input[type=url]:focus + label,
  .field input[type=search]:focus + label,
  .field textarea:focus + label {
    font-size: 10px;
    line-height: 22px; }
  .field label,
  .field input[type=text],
  .field input[type=email],
  .field input[type=password],
  .field input[type=url],
  .field input[type=search],
  .field select,
  .field textarea {
    padding-left: 12px;
    font-size: 14px;
    font-family: "Source Sans Pro", sans-serif;
    display: block;
    border: 0 none;
    width: 100%;
    border-radius: 1px; }
  .field label,
  .field input[type=text],
  .field input[type=email],
  .field input[type=password],
  .field input[type=url],
  .field input[type=search],
  .field select {
    line-height: 50px;
    height: 50px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
  .field label {
    position: absolute;
    top: 0;
    text-align: left;
    pointer-events: none;
    color: #323232;
    z-index: 1;
    -webkit-transition: font-size 200ms ease, line-height 200ms ease;
    transition: font-size 200ms ease, line-height 200ms ease;
    font-size: 10px;
    line-height: 22px; }
  .field textarea {
    resize: none;
    height: 160px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding-top: 16px; }

#form--get-the-demo .field.submit {
  margin-top: 2em;
  margin-bottom: 1em; }

#form--get-the-demo h3 {
  padding: 0 24px; }

#form--get-the-demo p:last-child {
  margin-bottom: 0; }

#contact-form {
  position: relative;
  text-align: center;
  background-image: url("/img/contact-form.jpg");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat; }
  #contact-form:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(50, 50, 50, 0.9); }
  #contact-form .inset-container {
    position: relative;
    z-index: 1; }
  #contact-form h2 {
    margin-bottom: 40px; }
    @media only screen and (min-width: 721px) {
      #contact-form h2 {
        margin-bottom: 50px; } }
