html,
body {
  width: 100%;
  margin: 0;
  padding: 0;
}

html {
  background: -webkit-linear-gradient(
    top,
    #20202f 0%,
    #273550 40%,
    #416081 100%
  );
  background: -webkit-linear-gradient(
    280deg,
    #20202f 0%,
    #273550 40%,
    #416081 100%
  );
  background: -o-linear-gradient(280deg, #20202f 0%, #273550 40%, #416081 100%);
  background: linear-gradient(170deg, #20202f 0%, #273550 40%, #416081 100%);
}
body {
  font-size: 16px;
  font-family: 'Karla', Helvetica, sans-serif;
}
input {
  font-family: 'Karla', Helvetica, sans-serif;
  font-size: 16px;
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*::-moz-selection {
  background: rgba(255, 255, 255, 0.1);
}
*::selection {
  background: rgba(255, 255, 255, 0.1);
}
*::-moz-selection {
  background: rgba(255, 255, 255, 0.1);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
.contain {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.hero {
  color: #fff;
  text-align: center;
}
.header {
  height: 80px;
  text-align: left;
  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;
}
.title,
.footer-branding {
  font-size: 2rem;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.logo {
  margin-right: 10px;
  width: 32px;
  height: 32px;
}
.nav-menu {
  float: right;
  display: none;
}
.nav-item {
  font-size: 18px;
  opacity: 0.8;
}
.nav-item,
.nav-item:hover,
.nav-item:active,
.nav-item:visited {
  color: #fff;
  text-decoration: none;
}
.nav-item:not(:last-child) {
  margin-right: 2rem;
}
@media only screen and (min-width: 500px) {
  .header {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .nav-menu {
    display: block;
  }
}
.hero-outer {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.hero-image-container {
  padding-bottom: 56.25%;
  position: relative;
  border-radius: 4px;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  max-width: 100%;
}
.hero-image:nth-of-type(1) {
  animation-name: fader;
  animation-delay: 4s;
  animation-duration: 1s;
  z-index: 20;
}
.hero-image:nth-of-type(2) {
  z-index: 10;
}
.hero-image:nth-of-type(n + 3) {
  display: none;
}
@keyframes fader {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.tagline {
  font-size: 32px;
  max-width: 600px;
  margin: 20px auto 20px auto;
  padding: 0 20px;
}
@media only screen and (min-width: 600px) {
  .tagline {
    font-size: 60px;
  }
}
.coming-soon {
  font-size: 24px;
  opacity: 0.8;
}
.features {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 30px 15px;
}
.feature {
  margin: 30px 15px;
  text-align: center;
  line-height: 24px;
  min-width: 31%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.feature-icon {
  width: 80px;
  max-width: 100%;
  margin: 0 0 15px 0;
}
.feature-icon-platforms {
  width: auto;
  max-width: 220px;
  margin: 0 0 15px 0;
}
.feature h3 {
  color: #f98673;
  margin-bottom: 10px;
}
.feature p {
  color: #fff;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .features {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    padding: 120px 15px;
  }
  .feature {
    margin: 0 15px;
  }
  .feature-icon {
    height: 80px;
  }
}
.footer {
  padding: 2rem 0;
  color: #fff;
  background: #1b2233;
  text-align: center;
}
.footer-inner {
  display: flex;
  flex-direction: column;
}
.footer-branding {
  justify-content: center;
}
.footer .copy {
  display: block;
}
@media only screen and (min-width: 768px) {
  .footer {
    padding: 3.5rem 0;
  }
  .footer-branding {
    margin-right: auto;
  }
  .footer-inner {
    flex-direction: row;
  }
  .footer .copy {
    text-align: right;
  }
  .social-link:last-of-type {
    margin-right: 0;
  }
}
.social-link {
  color: #fff;
  text-decoration: none;
  display: inline-block;
  margin: 1rem 1rem;
}
.social-link:hover {
  text-decoration: underline;
}
.social-link img {
  margin-right: 8px;
}
#download {
  display: block;
  margin: 2.5rem auto 3rem auto;
}
.download-btn {
  background: rgb(249, 134, 115);
  color: inherit;
  width: auto;
  min-width: 14rem;
  padding: 10px 3rem;
  height: 60px;
  font-size: 1.5rem;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.download-btn:not(:last-child) {
  margin-bottom: 2rem;
}
.download-btn:hover {
  filter: brightness(1.1);
}
.download-btn:active {
  filter: brightness(0.9);
}
.download-btn img {
  margin-right: 1rem;
}
@media only screen and (min-width: 768px) {
  .download-btn:not(:last-child) {
    margin-right: 1.5rem;
    margin-bottom: 0;
  }
}
.download-detail {
  left: 3.6rem;
  white-space: nowrap;
  font-size: 0.6rem;
  text-transform: none;
}
#mc_embed_signup {
  padding: 0 20px;
  margin: 40px 0;
  width: 100%;
}
#mc-embedded-subscribe.button {
  background: #f98673;
  letter-spacing: 1px;
  font-size: 18px;
}
#mc-embedded-subscribe.button:hover,
#mc-embedded-subscribe.button:active {
  background: rgb(214, 116, 99);
}
#mc_embed_signup form {
  text-align: center;
}
.mc-field-group {
  display: inline-block;
}
/* positions input field horizontally */
#mc_embed_signup input.email {
  border: 1px solid #abb0b2;
  border-radius: 3px;
  color: #343434;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 40px;
  padding: 0px 0.4em;
  display: inline-block;
  margin: 0;
  width: 350px;
  vertical-align: top;
}
#mc_embed_signup label {
  display: block;
  padding-bottom: 10px;
  font-weight: bold;
}
#mc_embed_signup .clear {
  display: inline-block;
}
/* positions button horizontally in line with input */
#mc_embed_signup .button {
  border: none;
  border-radius: 3px;
  color: #fff;
  height: 40px;
  line-height: 40px;
  padding: 0 18px;
  display: inline-block;
  margin: 0;
  -webkit-transition: all 0.23s ease-in-out 0s;
  -o-transition: all 0.23s ease-in-out 0s;
  transition: all 0.23s ease-in-out 0s;
}
#mc_embed_signup .button:hover {
  cursor: pointer;
}
#mc_embed_signup div#mce-responses {
  float: left;
  top: -1.4em;
  padding: 0em 0.5em 0em 0.5em;
  overflow: hidden;
  width: 90%;
  margin: 0 5%;
  clear: both;
}
#mc_embed_signup div.response {
  margin: 1em 0;
  padding: 1em 0.5em 0.5em 0;
  font-weight: bold;
  float: left;
  top: -1.5em;
  z-index: 1;
  width: 80%;
}
#mc_embed_signup #mce-error-response {
  display: none;
}
#mc_embed_signup #mce-success-response {
  color: #529214;
  display: none;
}
#mc_embed_signup label.error {
  display: block;
  float: none;
  width: auto;
  margin-left: 1.05em;
  text-align: left;
  padding: 0.5em 0;
}
@media only screen and (max-width: 768px) {
  #mc_embed_signup input.email {
    width: 100%;
    margin-bottom: 5px;
  }
  #mc_embed_signup .clear {
    display: block;
    width: 100%;
  }
  #mc_embed_signup .button {
    width: 100%;
    margin: 0;
  }
}
