html, body {
  overflow-x: hidden;
  color: #fff; }

body {
  background: linear-gradient(90deg, #496eaa, #944fa8, #a8804f, #496eaa);
  background-size: 1400% 300%;
  -webkit-animation: AnimationName 20s ease infinite;
  -moz-animation: AnimationName 20s ease infinite;
  animation: AnimationName 20s ease infinite; }

@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 0%; }
  50% {
    background-position: 50% 100%; }
  100% {
    background-position: 100% 0%; } }

@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 0%; }
  50% {
    background-position: 50% 100%; }
  100% {
    background-position: 100% 0%; } }

@keyframes AnimationName {
  0% {
    background-position: 0% 0%; }
  50% {
    background-position: 50% 100%; }
  100% {
    background-position: 100% 0%; } }

* {
  font-family: 'Open Sans', sans-serif; }

.company-footer {
  padding: 50px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: lighter;
  border-top: 1px solid rgba(255, 255, 255, 0.2); }
  .company-footer a {
    color: #fff;
    font-weight: 500; }

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 50px; }

.header {
  display: block;
  margin-top: 30%;
  padding: 20px; }
  .header .header-text {
    font-size: 3em;
    font-weight: lighter;
    letter-spacing: .1em; }
  .header .header-subtext {
    font-size: 1.4em;
    margin-top: 20px;
    opacity: 0.8;
    margin-bottom: 20px; }
    .header .header-subtext a {
      color: rgba(255, 255, 255, 0.5); }

a.header-link {
  color: #fff;
  text-decoration: none;
  padding: 30px;
  margin: 30px 20px;
  margin-bottom: 0;
  width: 120px;
  border-radius: 3px;
  max-width: 150px;
  margin-left: 0;
  font-weight: bold;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: inline-block;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer; }
  a.header-link:hover {
    color: rgba(0, 0, 0, 0.5); }
  a.header-link:hover {
    background-color: #fff;
    border-color: transparent;
    -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.15);
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.15); }

.pg-body {
  background-color: #fff;
  margin-top: 100px; }

.faq {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 50px;
  background-color: #fff;
  border-radius: 3px;
  padding: 50px;
  -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.15); }
  .faq .faq-header {
    font-size: 1.5em;
    font-weight: lighter;
    color: rgba(0, 0, 0, 0.3); }
  .faq .faq-item {
    margin: 30px 0; }
    .faq .faq-item .question {
      font-weight: lighter;
      font-size: 1.2em;
      margin-bottom: 10px;
      color: rgba(0, 0, 0, 0.5); }
    .faq .faq-item .answer {
      color: rgba(0, 0, 0, 0.8);
      line-height: 1.8em; }
      .faq .faq-item .answer b {
        opacity: 0.9; }

.bottom-call {
  text-align: center;
  font-size: 2em;
  margin-top: 100px;
  padding-bottom: 20px;
  font-weight: lighter; }

.docs-pg {
  background-color: #fff;
  color: rgba(0, 0, 0, 0.5); }

.docs-container {
  max-width: 900px;
  margin: auto;
  padding: 50px;
  line-height: 2em;
  padding-top: 100px; }
  .docs-container h1 {
    padding-bottom: 40px; }
  .docs-container h2 {
    margin-top: 60px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 20px; }
  .docs-container pre {
    margin: 40px 0;
    padding: 0; }
    .docs-container pre code.hljs {
      display: block;
      padding: 20px; }
  .docs-container h3 {
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 20px;
    display: inline-block; }
  .docs-container img {
    max-width: 100%;
    border-radius: 3px;
    margin: 20px;
    -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.15);
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.2); }
    .docs-container img[alt=eq] {
      padding: 10px 150px;
      box-shadow: none;
      border: none; }
  .docs-container .footnote {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 20px;
    margin-top: 100px; }

.pg-nav {
  padding: 10px 40px;
  padding-bottom: 20px; }
  .pg-nav .header-link {
    padding: 15px 20px;
    width: 100px;
    margin-top: 15px; }
  .pg-nav a.home-link {
    font-weight: bold;
    margin-right: 20px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    .pg-nav a.home-link:hover {
      color: #fff; }

.code-img {
  padding: 50px;
  background-color: #263238;
  display: inline-block;
  margin: 20px;
  border-radius: 3px;
  max-width: 600px;
  overflow: hidden;
  position: relative;
  max-height: 300px; }
  .code-img img {
    max-width: 100%;
    display: block; }
  .code-img:before {
    content: '';
    position: absolute;
    top: 200px;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to top, #fff, transparent);
    opacity: 1; }

.pg-body {
  padding-top: 50px;
  color: rgba(0, 0, 0, 0.8); }

.step {
  padding: 40px;
  padding-top: 15%; }
  .step .step-header {
    font-size: 1.5em;
    margin-bottom: 20px; }
  .step .step-desc {
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.5em; }

.hypermodel-img, .exp-img {
  max-width: 600px; }
  .hypermodel-img img, .exp-img img {
    max-width: 100%; }

.step-row {
  margin-bottom: 100px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 50px; }
  .step-row:last-child {
    border-bottom: none;
    padding-bottom: 0; }

.exp-img {
  border-radius: 3px;
  overflow: hidden;
  margin: 10px; }
  .exp-img:before {
    content: '';
    position: absolute;
    top: 300px;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(to top, #fff, transparent);
    opacity: 1; }

.embed-icon {
  width: 200px; }

.summary-row {
  text-align: center; }

.summary-item {
  display: inline-block;
  text-align: center; }
  .summary-item .summary-text {
    font-size: 1.2em; }

.summary-operator {
  display: inline-block;
  width: 80px;
  vertical-align: top;
  margin: 0 40px;
  margin-top: 80px; }

.beta-prompt {
  text-align: center;
  padding: 150px 20px; }
  .beta-prompt .try-prompt {
    font-size: 1.5em;
    font-weight: lighter;
    margin-bottom: 20px; }
  .beta-prompt a {
    color: #fff;
    text-decoration: none;
    display: inline-block;
    padding: 20px 50px;
    -webkit-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 5px 5px rgba(0, 0, 0, 0.15);
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.15);
    border-radius: 3px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease; }
    .beta-prompt a:hover {
      background-color: #fff;
      color: rgba(0, 0, 0, 0.5); }
