@import url(https://fonts.googleapis.com/css?family=Open+Sans:300italic,400italic,600italic,700italic,800italic,400,300,600,700,800);
@import url(https://fonts.googleapis.com/css?family=Merriweather:400,300,400italic,300italic,700,700italic);
@import url(https://fonts.googleapis.com/css?family=Nunito:400,300,700);
/* ==========================================================================
Typography
========================================================================== */
p {
  font-size: 15px;
  line-height: 29px;
  color: rgba(28, 54, 83, 0.6);
  padding-bottom: 20px; }

h1 {
  font-size: 60px; }

h2 {
  font-size: 40px;
  font-weight: 300;
  color: #3D4351; }

h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #3D4351; }

h4 {
  font-size: 18px; }

h5 {
  font-size: 15px;
  color: #3D4351;
  text-transform: uppercase;
  font-weight: 500; }

.btn {
  font-size: 13px;
  border: solid 2px;
  border-radius: 40px;
  display: inline-block;
  text-transform: uppercase; }

.btn:hover, .btn:focus {
  color: #fff;
  border-color: #ff9a00;
  background-color: #ff9a00; }

.btn-white {
  font-size: 13px;
  border: solid 2px;
  border-radius: 40px;
  display: inline-block;
  border-color: #fff; }

.btn-white:hover, .btn-white:focus {
  color: #ff9a00;
  border-color: #ff9a00; }

.btn-fill {
  color: #fff;
  border: solid 2px #ff9a00;
  border-radius: 40px;
  display: inline-block;
  text-transform: uppercase;
  background-color: #ff9a00; }

.btn-fill:hover, .btn-fill:focus {
  color: #fff;
  background-color: #cc7b00;
  border-color: #cc7b00; }

.btn-small {
  padding: 8px 40px; }

.btn-large {
  padding: 15px 40px; }

.btn-margin-right {
  margin-right: 20px; }

section.intro, section.features-extra, section.sign-up {
  background: #fff; }

section.features, section.blog-intro, section.blog {
  background: #F3F4F8; }

/* ==========================================================================
Global Styles
========================================================================== */
.group:after {
  content: "";
  display: table;
  clear: both;
  display: block; }

.no-padding {
  padding: 0; }

.no-margin {
  margin: 0; }

a {
  color: #ff9a00;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: 200ms;
  transition-duration: 200ms;
  -webkit-transition-property: color, border-color, background-color;
  transition-property: color, border-color, background-color; }

a:hover, a:focus {
  color: #cc7b00;
  text-decoration: none; }

body {
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  color: rgba(28, 54, 83, 0.6);
  -webkit-text-size-adjust: 100%; }

ul, ol {
  margin: 0;
  padding: 0; }

ul li {
  list-style: none; }

.section-padding {
  padding: 100px 0; }

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: normal;
  line-height: 1.4;
  visibility: visible;
  filter: alpha(opacity=0);
  opacity: 0; }

.tooltip.in {
  filter: alpha(opacity=90);
  opacity: .9; }

.tooltip.top {
  padding: 5px 0;
  margin-top: -3px; }

.tooltip.right {
  padding: 0 5px;
  margin-left: 3px; }

.tooltip.bottom {
  padding: 5px 0;
  margin-top: 3px; }

.tooltip.left {
  padding: 0 5px;
  margin-left: -3px; }

.tooltip-inner {
  max-width: 200px;
  padding: 3px 8px;
  color: #fff;
  text-align: center;
  text-decoration: none;
  text-transform: capitalize;
  background-color: #000;
  border-radius: 4px; }

/* ==========================================================================
Animations
========================================================================== */
.pulse2 {
  animation-name: pulse2;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear; }

@keyframes pulse2 {
  0% {
    transform: scale(1.1); }
  50% {
    transform: scale(0.8); }
  100% {
    transform: scale(1); } }

.floating-arrow {
  animation-name: floating-arrow;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out; }

@keyframes floating-arrow {
  from {
    transform: translate(-50%, 0); }
  65% {
    transform: translate(-50%, 15px); }
  to {
    transform: translate(-50%, 0); } }

/* ==========================================================================
Waypoinsts
========================================================================== */
.wp1, .wp2, .wp3, .wp4, .wp5, .wp6, .wp7, .wp8, .wp9 {
  visibility: hidden; }

.wp2 {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s; }

.bounceInLeft, .bounceInRight, .fadeInUp, .fadeInUpDelay, .fadeInDown, .fadeInUpD, .fadeInLeft, .fadeInRight, .bounceInDown {
  visibility: visible; }

/* ==========================================================================
Navigation
========================================================================== */
.header-nav.open {
  visibility: visible;
  opacity: 0.9;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s; }

.nav-toggle {
  position: absolute;
  top: 0;
  right: 15px;
  z-index: 999999;
  padding: 10px 35px 16px 0;
  cursor: pointer; }

.nav-toggle:focus {
  outline: none; }

.nav-toggle span, .nav-toggle span:before, .nav-toggle span:after {
  content: "";
  position: absolute;
  display: block;
  width: 35px;
  height: 3px;
  -moz-border-radius: 1px;
  -webkit-border-radius: 1px;
  border-radius: 1px;
  background: #fff;
  cursor: pointer; }

.nav-toggle span:before {
  top: -10px; }

.nav-toggle span:after {
  bottom: -10px; }

.nav-toggle span, .nav-toggle span:before, .nav-toggle span:after {
  -moz-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out; }

.nav-toggle.active span {
  background-color: transparent; }

.nav-toggle.active span:before, .nav-toggle.active span:after {
  top: 0; }

.nav-toggle.active span:before {
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg); }

.nav-toggle.active span:after {
  top: 10px;
  -moz-transform: translatey(-10px) rotate(-45deg);
  -ms-transform: translatey(-10px) rotate(-45deg);
  -o-transform: translatey(-10px) rotate(-45deg);
  -webkit-transform: translatey(-10px) rotate(-45deg);
  transform: translatey(-10px) rotate(-45deg); }

.navicon {
  position: absolute;
  height: 26px;
  right: 10px;
  top: 48px;
  visibility: hidden;
  transition: all 300ms ease-in-out; }

/* ==========================================================================
Hero
========================================================================== */
.hero {
  min-height: 750px;
  background: url("../img/hero.jpg") center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  position: relative; }
  .hero .down-arrow a {
    color: #fff; }
  .hero h1 {
    color: #fff;
    margin-bottom: 40px; }
    .hero h1 span {
      font-size: .5em;
      opacity: .6; }
  .hero p.intro {
    color: #fff;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 80px; }
  .hero .hero-content {
    padding-top: 26%; }

.navigation {
  transition: all 300ms ease-in-out;
  position: fixed;
  width: 100%;
  z-index: 999; }

.fixed {
  position: fixed;
  background-color: rgba(35, 38, 48, 0.99);
  z-index: 999;
  width: 100%;
  box-shadow: 0px 0px 1px 0px rgba(0, 0, 0, 0.5); }

header {
  padding: 50px 0;
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
  position: relative;
  width: 1170px;
  margin: 0 auto;
  transition: padding 300ms ease-in-out; }
  header a {
    color: #fff;
    text-transform: uppercase;
    font-size: 13px; }
    header a.login {
      margin-right: 20px; }
  header .logo {
    display: inline-block; }
  header ul.primary-nav {
    margin: 0 0 0 75px;
    padding: 0; }
    header ul.primary-nav li {
      display: inline; }
      header ul.primary-nav li a {
        color: #fff;
        padding-right: 25px; }
        header ul.primary-nav li a:hover {
          color: #ff9a00; }
      header ul.primary-nav li:last-child a {
        padding-right: 0px; }
  header ul.member-actions li {
    display: inline; }
    header ul.member-actions li a {
      color: #fff; }
      header ul.member-actions li a:hover {
        color: #ff9a00; }
  header .header-nav {
    display: inline-block; }
  header .member-actions {
    position: absolute;
    right: 0;
    top: 41px;
    transition: all 300ms ease-in-out; }

.down-arrow {
  color: #fff;
  font-size: 30px;
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%); }

/* ==========================================================================
Intro
========================================================================== */
.intro span.icon {
  font-size: 40px;
  color: #ff9a00;
  font-weight: bold; }

.intro-icon {
  display: inline-block;
  vertical-align: top;
  padding: 6px 0 0 0;
  margin-right: 20px;
  width: 40px; }

.intro-content {
  display: inline-block;
  width: 80%; }

/* ==========================================================================
Features-stack
========================================================================== */
.features {
  position: relative; }
  .features p {
    margin-bottom: 0;
    padding-bottom: 0; }
  .features h3 {
    margin: 0 0 20px 0; }
  .features span.icon {
    font-size: 35px;
    color: #ff9a00;
    font-weight: bold; }
  .features .feature-icon {
    display: inline-block;
    vertical-align: top;
    padding: 6px 0 0 0;
    margin-right: 20px;
    width: 35px; }
  .features .feature-content {
    display: inline-block;
    width: 75%; }
  .features .intro-icon {
    display: inline-block;
    vertical-align: top;
    padding: 6px 0 0 0;
    margin-right: 20px; }
  .features .intro-content {
    display: inline-block;
    width: 80%; }
  .features ul.features-stack {
    margin-top: 50px; }
  .features ul.features-stack li {
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: solid 1px #E6E9EA; }
  .features ul.features-stack li:last-child {
    padding-bottom: 0px;
    border-bottom: none; }
  .features .ipad-wrap {
    width: 706px;
    height: 1002px;
    background: url("../img/ipad-device.png") no-repeat center center;
    z-index: 1; }
  .features .fill-wrap {
    width: 640px;
    height: 992px;
    background: url("../img/fill-design.jpg") no-repeat center center;
    z-index: 1; }
  .features .icon-wrap {
    width: 900px;
    height: 1360px;
    background: url("../img/exodus-icon-set.png") no-repeat center center;
    z-index: 1;
    background-size: contain; }
  .features .iphone-wrap {
    width: 304px;
    height: 620px;
    background: url("../img/iphone6.png") no-repeat center center;
    position: absolute;
    left: 530px;
    bottom: 129px;
    z-index: 2; }
  .features .device-showcase {
    position: absolute;
    bottom: -400px;
    right: 50%; }

.features .responsive-feature-img, .features-extra .responsive-feature-img {
  display: none; }

.devices {
  position: relative; }

/* ==========================================================================
.features-extra
========================================================================== */
.features-extra {
  position: relative;
  z-index: 3; }
  .features-extra .btn {
    margin-top: 20px; }
  .features-extra .macbook-wrap {
    position: absolute;
    width: 916px;
    height: 540px;
    background: url("../img/macbook-pro-all.jpg") no-repeat center center;
    background-size: cover;
    top: 114px;
    z-index: 4;
    left: 50%; }

/* ==========================================================================
.avatar-strip
========================================================================== */
.avatar-strip {
  background: #333844 url("../img/code-bg.jpg") no-repeat center center;
  background-size: cover;
  position: relative;
  padding: 50px 0 60px 0; }
  .avatar-strip i {
    font-family: "Nunito", sans-serif;
    font-weight: 300;
    font-size: 25px;
    color: #F69D52;
    vertical-align: top;
    margin-left: -8px;
    font-style: normal; }
  .avatar-strip h2 {
    color: #fff;
    margin: 0 0 8px 0; }
  .avatar-strip h3 {
    color: #fff;
    margin: 8px 0 8px 0; }
  .avatar-strip h4 {
    color: #fff;
    opacity: .5;
    margin: 8px 0 16px 0;
    font-weight: 100; }
  .avatar-strip p {
    color: #ACB1B4;
    padding: 0; }
  .avatar-strip p.avatar-details {
    color: #ACB1B4;
    padding: 0 48px; }
  .avatar-strip .fa-heart {
    color: #ff415c;
    margin: 0 2px; }
  .avatar-strip .avatar-profile {
    width: 150px;
    height: 150px;
    border-radius: 100%;
    border: 2px solid #999;
    display: inline-block;
    margin-top: 32px; }
  .avatar-strip #avatar-dc {
    background: url("../img/profiles/dc-profile-square.jpg") no-repeat center center;
    background-size: contain; }
  .avatar-strip #avatar-jp {
    background: url("../img/profiles/jp-profile-square.jpg") no-repeat center center;
    background-size: contain; }

/* ==========================================================================
.hero-strip
========================================================================== */
.hero-strip {
  margin-top: 120px;
  background: #333844 url("../img/polygonal-bg.jpg") no-repeat center center;
  padding-bottom: 190px;
  position: relative; }
  .hero-strip i {
    font-family: "Nunito", sans-serif;
    font-weight: 300;
    font-size: 25px;
    color: #F69D52;
    vertical-align: top;
    margin-left: -8px;
    font-style: normal; }
  .hero-strip h2 {
    color: #fff;
    margin: 0 0 20px 0; }
  .hero-strip p {
    color: #ACB1B4; }
  .hero-strip .btn {
    margin-top: 10px; }
  .hero-strip .logo-placeholder {
    width: 230px;
    height: 230px;
    position: absolute;
    bottom: -285px;
    left: 50%;
    transform: translateX(-50%); }
  .hero-strip .coin-placeholder {
    width: 1600px;
    height: 130px;
    position: absolute;
    bottom: -180px;
    left: 50%;
    transform: translateX(-50%);
    background: url("../img/asset-list-12-28-2017@2x.png") no-repeat center center;
    background-size: contain; }

/* ==========================================================================
.blog
========================================================================== */
.blog {
  padding-bottom: 120px; }
  .blog img {
    width: 100%;
    height: auto;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out; }
  .blog h2 {
    font-size: 18px;
    color: #ACB1B4;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 35px; }
  .blog .btn {
    margin-top: 20px; }
  .blog .blog-img-wrap {
    position: relative;
    overflow: hidden; }
    .blog .blog-img-wrap .overlay {
      position: absolute;
      width: 100%;
      height: 100%;
      background-color: rgba(255, 255, 255, 0.5);
      -moz-transition: all 300ms ease-in-out;
      -o-transition: all 300ms ease-in-out;
      -webkit-transition: all 300ms ease-in-out;
      transition: all 300ms ease-in-out;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
      filter: alpha(opacity=0);
      opacity: 0; }
    .blog .blog-img-wrap i {
      color: #fff;
      font-size: 20px;
      position: absolute;
      width: 20px;
      height: 20px;
      top: 25px;
      right: 35px; }
  .blog .blog-img-wrap:hover img, .blog .blog-img-wrap:focus img {
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1); }
  .blog .blog-img-wrap:hover .overlay, .blog .blog-img-wrap:focus .overlay {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=1)";
    filter: alpha(opacity=1);
    opacity: 1;
    z-index: 9; }
  .blog figcaption i {
    margin-left: 5px;
    font-size: 15px; }
  .blog figcaption a.blog-post-title {
    color: rgba(28, 54, 83, 0.6); }
  .blog figcaption a.blog-post-title:hover, .blog figcaption a.blog-post-title:focus {
    color: #3D4351; }

/* ==========================================================================
Sign up form
========================================================================== */
.sign-up .signup-form .sign-up-btn {
  padding: 15px 0;
  border-radius: 3px;
  width: 80%;
  font-size: 13px; }

.sign-up .signup-form .form-input-group {
  width: 80%;
  height: 55px;
  margin: 0 auto 10px;
  border-radius: 5px;
  border: solid 1px #E6E9EA;
  text-align: left;
  position: relative; }
  .sign-up .signup-form .form-input-group i {
    color: #ff9a00;
    font-size: 14px; }
  .sign-up .signup-form .form-input-group i:after {
    content: "";
    height: 30px;
    width: 1px;
    border-right: solid 1px #E6E9EA;
    position: absolute;
    top: 50%;
    left: 30px;
    transform: translateY(-50%); }
  .sign-up .signup-form .form-input-group i.fa-lock {
    font-size: 18px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 20px; }
  .sign-up .signup-form .form-input-group i.fa-envelope {
    font-size: 14px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 20px; }
  .sign-up .signup-form .form-input-group input {
    padding-left: 68px;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    border: none; }
  .sign-up .signup-form .form-input-group input::-webkit-input-placeholder {
    color: #BCC1C3; }
  .sign-up .signup-form .form-input-group input:-moz-placeholder {
    color: #BCC1C3; }
  .sign-up .signup-form .form-input-group input::-moz-placeholder {
    color: #BCC1C3; }
  .sign-up .signup-form .form-input-group input:-ms-input-placeholder {
    color: #BCC1C3; }

/* ==========================================================================
To top
========================================================================== */
.to-top {
  height: 60px;
  background-color: #495061; }
  .to-top .to-top-wrap {
    height: 60px;
    width: 70px;
    position: absolute;
    right: 0;
    text-align: center; }
    .to-top .to-top-wrap a {
      display: block;
      width: 100%;
      height: 100%;
      color: #fff;
      background-color: rgba(0, 0, 0, 0.15); }
    .to-top .to-top-wrap a:hover, .to-top .to-top-wrap a:focus {
      background-color: rgba(0, 0, 0, 0.4); }
    .to-top .to-top-wrap i {
      font-size: 30px;
      line-height: 55px; }
  .to-top .row {
    position: relative; }

/* ==========================================================================
Footer
========================================================================== */
footer {
  background-color: #3D4351;
  position: relative; }
  footer p {
    color: #ACB1B4;
    font-size: 13px; }
  footer a {
    color: #fff; }
  footer a:hover {
    color: #ff9a00; }
  footer ul.footer-group {
    border-top: solid 1px #4E566C;
    padding-top: 25px;
    margin-bottom: 45px; }
  footer ul.footer-group li {
    display: inline-block; }
  footer ul.footer-group li a {
    font-size: 13px;
    text-transform: uppercase; }
  footer ul.footer-group li a:hover {
    color: #ff9a00; }
  footer ul.footer-group li {
    margin-right: 30px; }
  footer ul.footer-group li:last-child {
    margin-right: 0; }
  footer span.fa-heart {
    color: #ff415c;
    font-size: 15px;
    margin: 0 2px; }
  footer .social-share {
    position: absolute;
    background-color: #373D4A;
    right: 0;
    width: 40%;
    height: 100%;
    padding: 142px 0 0 70px; }
    footer .social-share p {
      color: #fff;
      text-transform: uppercase;
      padding-bottom: 10px; }
    footer .social-share a.twitter-share {
      height: 60px;
      width: 60px;
      background-color: #1AB4EF;
      border-radius: 3px;
      font-size: 22px;
      display: inline-block;
      text-align: center;
      margin-right: 20px; }
    footer .social-share a.twitter-share:hover, footer .social-share a.twitter-share:focus {
      background-color: #1590BF; }
    footer .social-share a.facebook-share:hover, footer .social-share a.facebook-share:focus {
      background-color: #324C85; }
    footer .social-share a.facebook-share {
      height: 60px;
      width: 60px;
      background-color: #3B5898;
      border-radius: 3px;
      font-size: 22px;
      display: inline-block;
      text-align: center; }
    footer .social-share a {
      color: #fff; }
    footer .social-share a:hover {
      color: #fff; }
    footer .social-share a i {
      margin-top: 20px; }
  footer .footer-links {
    margin: 120px 0 120px 0; }

/* ==========================================================================
Icon font (http://www.elegantthemes.com/blog/freebie-of-the-week/free-line-style-icons)
========================================================================== */
@font-face {
  font-family: 'et-line';
  src: url("../fonts/et-line.eot");
  src: url("../fonts/et-line.eot?#iefix") format("embedded-opentype"), url("../fonts/et-line.woff") format("woff"), url("../fonts/et-line.ttf") format("truetype"), url("../fonts/et-line.svg#et-line") format("svg");
  font-weight: normal;
  font-style: normal; }

/* Use the following CSS code if you want to use data attributes for inserting your icons */
[data-icon]:before {
  font-family: 'et-line';
  content: attr(data-icon);
  speak: none;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block; }

/* Use the following CSS code if you want to have a class per icon */
/*
Instead of a list of all class selectors,
you can use the generic selector below, but it's slower:
[class*="icon-"] {
*/
.icon-mobile, .icon-laptop, .icon-desktop, .icon-tablet, .icon-phone, .icon-document, .icon-documents, .icon-search, .icon-clipboard, .icon-newspaper, .icon-notebook, .icon-book-open, .icon-browser, .icon-calendar, .icon-presentation, .icon-picture, .icon-pictures, .icon-video, .icon-camera, .icon-printer, .icon-toolbox, .icon-briefcase, .icon-wallet, .icon-gift, .icon-bargraph, .icon-grid, .icon-expand, .icon-focus, .icon-edit, .icon-adjustments, .icon-ribbon, .icon-hourglass, .icon-lock, .icon-megaphone, .icon-shield, .icon-trophy, .icon-flag, .icon-map, .icon-puzzle, .icon-basket, .icon-envelope, .icon-streetsign, .icon-telescope, .icon-gears, .icon-key, .icon-paperclip, .icon-attachment, .icon-pricetags, .icon-lightbulb, .icon-layers, .icon-pencil, .icon-tools, .icon-tools-2, .icon-scissors, .icon-paintbrush, .icon-magnifying-glass, .icon-circle-compass, .icon-linegraph, .icon-mic, .icon-strategy, .icon-beaker, .icon-caution, .icon-recycle, .icon-anchor, .icon-profile-male, .icon-profile-female, .icon-bike, .icon-wine, .icon-hotairballoon, .icon-globe, .icon-genius, .icon-map-pin, .icon-dial, .icon-chat, .icon-heart, .icon-cloud, .icon-upload, .icon-download, .icon-target, .icon-hazardous, .icon-piechart, .icon-speedometer, .icon-global, .icon-compass, .icon-lifesaver, .icon-clock, .icon-aperture, .icon-quote, .icon-scope, .icon-alarmclock, .icon-refresh, .icon-happy, .icon-sad, .icon-facebook, .icon-twitter, .icon-googleplus, .icon-rss, .icon-tumblr, .icon-linkedin, .icon-dribbble {
  font-family: 'et-line';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block; }

.icon-mobile:before {
  content: "\e000"; }

.icon-laptop:before {
  content: "\e001"; }

.icon-desktop:before {
  content: "\e002"; }

.icon-tablet:before {
  content: "\e003"; }

.icon-phone:before {
  content: "\e004"; }

.icon-document:before {
  content: "\e005"; }

.icon-documents:before {
  content: "\e006"; }

.icon-search:before {
  content: "\e007"; }

.icon-clipboard:before {
  content: "\e008"; }

.icon-newspaper:before {
  content: "\e009"; }

.icon-notebook:before {
  content: "\e00a"; }

.icon-book-open:before {
  content: "\e00b"; }

.icon-browser:before {
  content: "\e00c"; }

.icon-calendar:before {
  content: "\e00d"; }

.icon-presentation:before {
  content: "\e00e"; }

.icon-picture:before {
  content: "\e00f"; }

.icon-pictures:before {
  content: "\e010"; }

.icon-video:before {
  content: "\e011"; }

.icon-camera:before {
  content: "\e012"; }

.icon-printer:before {
  content: "\e013"; }

.icon-toolbox:before {
  content: "\e014"; }

.icon-briefcase:before {
  content: "\e015"; }

.icon-wallet:before {
  content: "\e016"; }

.icon-gift:before {
  content: "\e017"; }

.icon-bargraph:before {
  content: "\e018"; }

.icon-grid:before {
  content: "\e019"; }

.icon-expand:before {
  content: "\e01a"; }

.icon-focus:before {
  content: "\e01b"; }

.icon-edit:before {
  content: "\e01c"; }

.icon-adjustments:before {
  content: "\e01d"; }

.icon-ribbon:before {
  content: "\e01e"; }

.icon-hourglass:before {
  content: "\e01f"; }

.icon-lock:before {
  content: "\e020"; }

.icon-megaphone:before {
  content: "\e021"; }

.icon-shield:before {
  content: "\e022"; }

.icon-trophy:before {
  content: "\e023"; }

.icon-flag:before {
  content: "\e024"; }

.icon-map:before {
  content: "\e025"; }

.icon-puzzle:before {
  content: "\e026"; }

.icon-basket:before {
  content: "\e027"; }

.icon-envelope:before {
  content: "\e028"; }

.icon-streetsign:before {
  content: "\e029"; }

.icon-telescope:before {
  content: "\e02a"; }

.icon-gears:before {
  content: "\e02b"; }

.icon-key:before {
  content: "\e02c"; }

.icon-paperclip:before {
  content: "\e02d"; }

.icon-attachment:before {
  content: "\e02e"; }

.icon-pricetags:before {
  content: "\e02f"; }

.icon-lightbulb:before {
  content: "\e030"; }

.icon-layers:before {
  content: "\e031"; }

.icon-pencil:before {
  content: "\e032"; }

.icon-tools:before {
  content: "\e033"; }

.icon-tools-2:before {
  content: "\e034"; }

.icon-scissors:before {
  content: "\e035"; }

.icon-paintbrush:before {
  content: "\e036"; }

.icon-magnifying-glass:before {
  content: "\e037"; }

.icon-circle-compass:before {
  content: "\e038"; }

.icon-linegraph:before {
  content: "\e039"; }

.icon-mic:before {
  content: "\e03a"; }

.icon-strategy:before {
  content: "\e03b"; }

.icon-beaker:before {
  content: "\e03c"; }

.icon-caution:before {
  content: "\e03d"; }

.icon-recycle:before {
  content: "\e03e"; }

.icon-anchor:before {
  content: "\e03f"; }

.icon-profile-male:before {
  content: "\e040"; }

.icon-profile-female:before {
  content: "\e041"; }

.icon-bike:before {
  content: "\e042"; }

.icon-wine:before {
  content: "\e043"; }

.icon-hotairballoon:before {
  content: "\e044"; }

.icon-globe:before {
  content: "\e045"; }

.icon-genius:before {
  content: "\e046"; }

.icon-map-pin:before {
  content: "\e047"; }

.icon-dial:before {
  content: "\e048"; }

.icon-chat:before {
  content: "\e049"; }

.icon-heart:before {
  content: "\e04a"; }

.icon-cloud:before {
  content: "\e04b"; }

.icon-upload:before {
  content: "\e04c"; }

.icon-download:before {
  content: "\e04d"; }

.icon-target:before {
  content: "\e04e"; }

.icon-hazardous:before {
  content: "\e04f"; }

.icon-piechart:before {
  content: "\e050"; }

.icon-speedometer:before {
  content: "\e051"; }

.icon-global:before {
  content: "\e052"; }

.icon-compass:before {
  content: "\e053"; }

.icon-lifesaver:before {
  content: "\e054"; }

.icon-clock:before {
  content: "\e055"; }

.icon-aperture:before {
  content: "\e056"; }

.icon-quote:before {
  content: "\e057"; }

.icon-scope:before {
  content: "\e058"; }

.icon-alarmclock:before {
  content: "\e059"; }

.icon-refresh:before {
  content: "\e05a"; }

.icon-happy:before {
  content: "\e05b"; }

.icon-sad:before {
  content: "\e05c"; }

.icon-facebook:before {
  content: "\e05d"; }

.icon-twitter:before {
  content: "\e05e"; }

.icon-googleplus:before {
  content: "\e05f"; }

.icon-rss:before {
  content: "\e060"; }

.icon-tumblr:before {
  content: "\e061"; }

.icon-linkedin:before {
  content: "\e062"; }

.icon-dribbble:before {
  content: "\e063"; }

/* ==========================================================================
EXODUS Styles
========================================================================== */
#hero-feature {
  margin-top: 128px; }

.social-share-boxes {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap; }
  .social-share-boxes .line-break {
    width: 100%; }
  .social-share-boxes a {
    margin: 0 8px;
    transition-duration: 500ms;
    background-color: none;
    border-radius: 8px; }
    .social-share-boxes a:hover {
      background-color: #495061; }

#hero-reason {
  line-height: 1.5em; }

#context-description {
  padding: 32px 0;
  font-size: 28px;
  font-weight: 500;
  color: #ff9a00;
  text-transform: none; }

#welcome-banner {
  position: absolute;
  top: 142px;
  width: 100%;
  background-color: #1c242e;
  height: 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  /* Extra Small Devices, Phones */ }
  @media only screen and (max-width: 480px) {
    #welcome-banner {
      display: none; } }
  #welcome-banner .banner-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center; }
    #welcome-banner .banner-content img {
      width: 64px; }
    #welcome-banner .banner-content .welcome-message {
      font-size: 20px;
      color: #c8c8c8;
      font-weight: 300;
      margin-left: 16px; }

#screenshots {
  padding-bottom: 48px; }

#design {
  overflow: hidden;
  padding: 80px 0; }

#moreinfo {
  padding: 32px 0; }

#features {
  padding: 48px 0; }

#quote {
  padding: 64px 0 118px 0; }

#assets {
  padding: 64px 0 0 0; }
  #assets h2 {
    font-size: 2.5em; }
  #assets p {
    margin: 0; }
  #assets .asset-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    justify-items: center;
    grid-gap: 32px;
    justify-content: space-evenly; }
    #assets .asset-grid .asset {
      text-align: center;
      display: block;
      width: 100%;
      padding: 16px;
      border: 1px solid rgba(39, 41, 50, 0.2); }
      #assets .asset-grid .asset.exch {
        background: url(../img/2018/exch-200.png);
        background-repeat: no-repeat;
        background-size: 18px 18px;
        background-position: 4px 4px;
        border-radius: 16px 0 0 0; }
    #assets .asset-grid .symbol {
      opacity: 0.7;
      font-size: 0.9em; }
    #assets .asset-grid .name {
      font-size: 1.1em;
      line-height: 1.2em;
      font-weight: 400; }
    #assets .asset-grid .logo {
      background: url(../img/2018/assets30.jpg);
      display: inline-block;
      height: 30px;
      width: 30px;
      background-position: -300px -300px;
      background-size: 360px 360px; }
    #assets .asset-grid #ZRX {
      background-position: 0px 0px; }
    #assets .asset-grid #ANT {
      background-position: -30px 0px; }
    #assets .asset-grid #REP {
      background-position: -60px 0px; }
    #assets .asset-grid #BNT {
      background-position: -90px 0px; }
    #assets .asset-grid #BAT {
      background-position: -120px 0px; }
    #assets .asset-grid #BNB {
      background-position: -90px -90px; }
    #assets .asset-grid #BTC {
      background-position: -150px 0px; }
    #assets .asset-grid #BCH {
      background-position: -180px 0px; }
    #assets .asset-grid #BTG {
      background-position: -210px 0px; }
    #assets .asset-grid #CVC {
      background-position: -240px 0px; }
    #assets .asset-grid #DASH {
      background-position: -270px 0px; }
    #assets .asset-grid #DCR {
      background-position: -300px 0px; }
    #assets .asset-grid #DGB {
      background-position: -210px -60px; }
    #assets .asset-grid #DGB2 {
      background-position: -180px -240px; }
    #assets .asset-grid #DNT {
      background-position: 0px -30px; }
    #assets .asset-grid #EDG {
      background-position: -30px -30px; }
    #assets .asset-grid #ETC {
      background-position: -120px -30px; }
    #assets .asset-grid #ETH {
      background-position: -90px -30px; }
    #assets .asset-grid #ETH2 {
      background-position: -240px -240px; }
    #assets .asset-grid #GNO {
      background-position: -150px -30px; }
    #assets .asset-grid #GNT {
      background-position: -180px -30px; }
    #assets .asset-grid #RLC {
      background-position: -210px -30px; }
    #assets .asset-grid #LTC {
      background-position: -240px -30px; }
    #assets .asset-grid #GUP {
      background-position: -270px -30px; }
    #assets .asset-grid #NMR {
      background-position: -330px -30px; }
    #assets .asset-grid #OMG {
      background-position: -300px -30px; }
    #assets .asset-grid #RCN {
      background-position: 0px -60px; }
    #assets .asset-grid #SALT {
      background-position: -30px -60px; }
    #assets .asset-grid #SNT {
      background-position: -60px -60px; }
    #assets .asset-grid #STORJ {
      background-position: -90px -60px; }
    #assets .asset-grid #VTC {
      background-position: -60px -240px; }
    #assets .asset-grid #TRST {
      background-position: -120px -60px; }
    #assets .asset-grid #WINGS {
      background-position: -150px -60px; }
    #assets .asset-grid #ZEC {
      background-position: -180px -60px; }
    #assets .asset-grid #ADT {
      background-position: -240px -60px; }
    #assets .asset-grid #ARN {
      background-position: -270px -60px; }
    #assets .asset-grid #AE {
      background-position: -300px -60px; }
    #assets .asset-grid #AION {
      background-position: -330px -60px; }
    #assets .asset-grid #AST {
      background-position: 0px -90px; }
    #assets .asset-grid #AMB {
      background-position: -30px -90px; }
    #assets .asset-grid #APPC {
      background-position: -60px -90px; }
    #assets .asset-grid #BRD {
      background-position: -120px -90px; }
    #assets .asset-grid #LINK {
      background-position: -150px -90px; }
    #assets .asset-grid #CND {
      background-position: -180px -90px; }
    #assets .asset-grid #DAI {
      background-position: -210px -90px; }
    #assets .asset-grid #MANA {
      background-position: -240px -90px; }
    #assets .asset-grid #DENT {
      background-position: -270px -90px; }
    #assets .asset-grid #DCN {
      background-position: -300px -90px; }
    #assets .asset-grid #DGD {
      background-position: -330px -90px; }
    #assets .asset-grid #DRGN {
      background-position: 0px -120px; }
    #assets .asset-grid #ETHOS {
      background-position: -30px -120px; }
    #assets .asset-grid #ONEST {
      background-position: -60px -120px; }
    #assets .asset-grid #FUN {
      background-position: -90px -120px; }
    #assets .asset-grid #GVT {
      background-position: -120px -120px; }
    #assets .asset-grid #ICX {
      background-position: -150px -120px; }
    #assets .asset-grid #ICN {
      background-position: -180px -120px; }
    #assets .asset-grid #KIN {
      background-position: -210px -120px; }
    #assets .asset-grid #KCS {
      background-position: -240px -120px; }
    #assets .asset-grid #KNC {
      background-position: -270px -120px; }
    #assets .asset-grid #LRC {
      background-position: -300px -120px; }
    #assets .asset-grid #LUN {
      background-position: -330px -120px; }
    #assets .asset-grid #MKR {
      background-position: 0px -150px; }
    #assets .asset-grid #MDS {
      background-position: -30px -150px; }
    #assets .asset-grid #MLN {
      background-position: -60px -150px; }
    #assets .asset-grid #MTL {
      background-position: -90px -150px; }
    #assets .asset-grid #MITH {
      background-position: -90px -240px; }
    #assets .asset-grid #MCO {
      background-position: -120px -150px; }
    #assets .asset-grid #PLR {
      background-position: -150px -150px; }
    #assets .asset-grid #POE {
      background-position: -180px -150px; }
    #assets .asset-grid #POLY {
      background-position: -210px -150px; }
    #assets .asset-grid #PPT {
      background-position: -240px -150px; }
    #assets .asset-grid #POWR {
      background-position: -270px -150px; }
    #assets .asset-grid #QASH {
      background-position: -300px -150px; }
    #assets .asset-grid #QTUM {
      background-position: -330px -150px; }
    #assets .asset-grid #QSP {
      background-position: 0px -180px; }
    #assets .asset-grid #RDN {
      background-position: -30px -180px; }
    #assets .asset-grid #RHOC {
      background-position: -60px -180px; }
    #assets .asset-grid #REQ {
      background-position: -90px -180px; }
    #assets .asset-grid #R {
      background-position: -120px -180px; }
    #assets .asset-grid #RVT {
      background-position: -150px -180px; }
    #assets .asset-grid #SAN {
      background-position: -180px -180px; }
    #assets .asset-grid #SNGLS {
      background-position: -210px -180px; }
    #assets .asset-grid #STORM {
      background-position: -240px -180px; }
    #assets .asset-grid #SUB {
      background-position: -270px -180px; }
    #assets .asset-grid #TAAS {
      background-position: -300px -180px; }
    #assets .asset-grid #USDT {
        background-position: -30px -240px; }
    #assets .asset-grid #PAY {
      background-position: -330px -180px; }
    #assets .asset-grid #TNB {
      background-position: 0px -210px; }
    #assets .asset-grid #TRX {
      background-position: -30px -210px; }
    #assets .asset-grid #VEN {
      background-position: -60px -210px; }
    #assets .asset-grid #VERI {
      background-position: -90px -210px; }
    #assets .asset-grid #VIB {
      background-position: -120px -210px; }
    #assets .asset-grid #WTC {
      background-position: -150px -210px; }
    #assets .asset-grid #WAX {
      background-position: -180px -210px; }
    #assets .asset-grid #TUSD {
      background-position: -150px -240px; }
    #assets .asset-grid #TUSD2 {
      background-position: -120px -240px; }
    #assets .asset-grid #XLM {
      background-position: -210px -240px; }
    #assets .asset-grid #XRP {
      background-position: -270px -210px; }

#download {
  margin: 32px 0 48px 0; }

#download-exodus-button {
  width: 360px;
  height: 48px;
  padding-top: 12px;
  text-align: center;
  text-transform: uppercase; }

.pulse-heart {
  fill: red;
  position: relative;
  top: 2px;
  width: 24px;
  -webkit-animation: pulse 1s ease infinite;
  animation: pulse 1s ease infinite; }

.social {
  background-image: url("../img/spritesheet-trans.png");
  background-repeat: no-repeat;
  display: inline; }

/*==========  Non-Mobile First Method  ==========*/
/* Large Devices, Wide Screens */
@media only screen and (max-width: 1200px) {
  .hero-content {
    padding-top: 32% !important; } }

/* Medium Devices, Desktops */
/* Small Devices, Tablets */
/* Extra Small Devices, Phones */
/* Custom, iPhone Retina */
