h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0; }

h1 {
  font-size: 4em; }

h2 {
  font-size: 3em; }

h3 {
  font-size: 2.2em; }

h4 {
  font-size: 1.4em; }

h5 {
  font-size: 1em; }

.font-roboto {
  font-family: "Roboto", sans-serif;}

html,
body {
  margin: 0;
  padding: 0;
  font-size: 18px; }

body {
  min-height: 100%;
  font-family: "Roboto", sans-serif;
  background-color: #27253f;
  color: white;
  font-weight: 300;
  overflow-x: hidden; }

img {
  max-width: 100%;
  width: 100%;
  display: block; }

p {
  margin: 0;
  font-size: 0.9em;
  line-height: 1.6em; }

nav {
  display: flex;
    justify-content: center;
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 2px;
    padding: 1.5rem;
    font-family: "Roboto", sans-serif;
}
  nav a {
    display: inline-block;
    color: white;
    text-decoration: none;
    position: relative; }
    nav a:not(:last-child) {
      margin-right: 2rem; }
      @media only screen and (max-width: 770px) {
        nav a:not(:last-child) {
          margin-right: 0; } }
    nav a:before {
      transition: 0.5s all ease;
      position: absolute;
      left: 50%;
      right: 50%;
      bottom: -10px;
      opacity: 0;
      content: "";
      height: 2px;
      background-color: #c0b2fc; }
    nav a:hover {
      color: #c0b2fc; }
      nav a:hover:before {
        transition: 0.5s all ease;
        left: 0;
        right: 0;
        opacity: 1; }
  nav.fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: #27263ff2;
    transition: 0.3s; }

.nav--mobile {
  display: none; }

.nav--icon {
  border-radius: 100px;
  padding: 0.5rem;
  width: 25px;
  height: 25px;
  background-color: #38355a;
  text-align: right;
  font-size: 1rem;
  position: fixed;
  left: 50%;
  margin-left: -1.5rem;
  z-index: 100;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08); }
  .nav--icon:hover {
    transform: rotate(360deg);
    transition: all 0.3s ease-in-out;
    cursor: pointer; }

.mobile-list {
  display: none;
  z-index: 50;
  background-color: #3e3c65;
  padding: 6rem 1rem 1rem 1rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }
  .mobile-list .centered {
    display: flex;
    flex-direction: column;
    width: 50%;
    margin: auto;
    text-align: center; }
  .mobile-list a {
    margin-bottom: 1rem;
    font-size: 0.8rem; }
    .mobile-list a:not(:last-child) {
      margin-right: 0; }
  .mobile-list.show {
    display: block; }

.aligner {
  display: flex;
  justify-content: center; }

.aligner_item--top {
  align-self: flex-start; }

.aligner_item--bottom {
  align-self: flex-end; }

.flex--horizontal {
  display: flex;
  flex-direction: row; }

.flex--vertical {
  display: flex;
  flex-direction: column; }

section {
  max-width: 960px;
  margin: 0 auto; }

.section__title {
  margin: 0 auto 3rem auto;
  width: 80%;
  text-align: center; }
  .section__title h3 {
    margin-bottom: 1.5rem; }
  .section__title h2 {
    margin-bottom: 1.5rem;
    /* adds spacing between header and body */
  }

.section--hero {
  width: 100vw;
  height: 100vh;
  max-width: 100%;
  /* remove the 760px clamp */
  margin: 0;
  padding: 0;
  position: relative;
}

.section--about {
  margin-top: 4rem;
}

.section--features {
  opacity: 0;
}

.slide__container {
  width: 90%;
  margin: auto;
  position: relative; }

.slide__content {
  background-color: white;
  text-align: left;
  color: #575757;
  padding: 3rem;
  max-width: 250px;
  margin-top: 2rem;
  height: 200px; }
  .slide__content h4 {
    margin-bottom: 1rem;
    color: #27253f; }

.slide__image {
  width: 400px;
  height: 400px;
  margin-left: -1rem;
  box-shadow: 0 2px 11px 0 rgba(0, 0, 0, 0.3); }
  .slide__image img {
    object-fit: contain; }

.tns-outer {
  position: relative; }

.tns-controls {
  box-shadow: 0 2px 11px 0 rgba(0, 0, 0, 0.06);
  position: absolute;
  bottom: 40%;
  left: 85px;
  display: flex;
  flex-direction: column;
  z-index: 1; }
  .tns-controls > button {
    border: none;
    background-color: #e8e2f3;
    width: 40px;
    height: 40px;
    color: #6146d7;
    outline: 0; }
    .tns-controls > button:hover {
      background-color: #6146d7;
      color: white;
      transition: 0.3s; }
  .tns-controls > button:last-of-type {
    border-top: 1px solid #dfd7ef; }

.form-group {
  display: flex;
  align-items: stretch;
  max-width: 600px;
  margin: 2rem auto; }

.input {
  border: 1px solid #ced4da;
  flex: 1 1 auto;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  background-clip: padding-box;
  border-radius: 3px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.input-button {
  padding: 0.5rem 1rem;
  margin-left: -1px;
  border: none;
  font-size: 0.8rem;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
  background-color: #6146d7;
  color: white;
  width: 15%; }

.cta {
  background: #6146d7;
  border-radius: 3px;
  color: white;
  font-size: 0.9rem;
  padding: 0.45rem 0.6rem;
  outline: 0;
  width: 80%;
  max-width: 230px;
  text-align: left;
  cursor: pointer;
  transition: 0.2s;
  text-decoration: none;
  position: relative;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08); }
  .cta:after {
    position: absolute;
    content: "";
    background-image: url(/images/apple.png);
    right: 0.5rem;
    top: 20%;
    display: block;
    width: 30px;
    height: 30px;
    background-size: contain;
    background-repeat: no-repeat; }

.fadeIn {
  animation: fadeIn 1s ease-in-out;
  animation-fill-mode: forwards; }

.fadeInUp {
  animation: fadeInUp 1s ease-in-out;
  animation-fill-mode: forwards; }

.fadeInRight {
  animation: fadeInRight 1s ease-in-out;
  animation-fill-mode: forwards; }

.fadeInLeft {
  animation: fadeInLeft 1s ease-in-out;
  animation-fill-mode: forwards; }

@keyframes fadeIn {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 50px, 0); }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0); } }
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(100px, 0, 0); }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0); } }
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-100px, 0, 0); }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0); } }
@keyframes infiniteStats {
  0% {
    transform: translate3d(-1440px, 0, 0); }
  100% {
    transform: translate3d(0, 0, 0); } }
@media only screen and (max-width: 960px) {
  .stats__block {
    width: 80%;
    margin: 0 auto 1rem auto; }

  .tns-controls {
    right: 50%;
    left: auto; }

  .section--summary {
    border-radius: 0; }
    .section--summary:after {
      display: none; }

  .section--snippets {
    margin: 8rem auto;
    text-align: center; }
    .section--snippets > .flex--horizontal {
      flex-direction: column; }
    .section--snippets:before, .section--snippets:after {
      display: none; }
    .section--snippets .snippets__cards {
      transform: none;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: space-between; }
    .section--snippets .snippets__card {
      flex: 0.18;
      flex-direction: column; }
      .section--snippets .snippets__card p {
        margin-right: 0; }
      .section--snippets .snippets__card:hover {
        transform: translate3d(0px, -10px, 0px); }

  .snippets__description {
    column-count: 2;
    text-align: left; } }
@media only screen and (max-width: 770px) {
  .nav--desktop {
    display: none; }

  .section--snippets {
    margin: 3rem auto;
    text-align: center;
    padding-top: 0; }
    .section--snippets > .flex--horizontal {
      padding: 1.4rem; }
    .section--snippets:before, .section--snippets:after {
      display: none; }

  .section--hero .flex--horizontal {
    flex-direction: column;
    text-align: center;
    justify-content: center; }
  .section--hero .flex_child--horizontal:first-of-type {
    padding: 30% 2rem 2rem 2rem; }
    .section--hero .flex_child--horizontal:first-of-type h1 {
      margin-bottom: 30%; }
  .section--hero .flex_child--horizontal:last-of-type {
    max-width: 300px;
    margin: auto;
    display: none; }
  .section--hero .cta {
    margin: 1.4rem auto 0 auto; }

  .section--summary {
    border-radius: 0;
    margin-top: 0rem; }

  .section--features > .flex--horizontal {
    flex-direction: column;
    justify-content: center; }
  .section--features .features__image {
    align-self: center;
    margin-bottom: 2rem; }
  .section--features .features__left,
  .section--features .features__right {
    width: 80%;
    margin: auto;
    text-align: left; }
    .section--features .features__left object,
    .section--features .features__right object {
      margin-right: 0.7rem; }
    .section--features .features__left > .flex--vertical,
    .section--features .features__right > .flex--vertical {
      margin: 0.5rem 0;
      align-items: flex-start;
      display: flex;
      flex-direction: row; }
  .section--features .features__left {
    order: 2;
    padding-right: 0; }
  .section--features .features__right {
    order: 3;
    padding-left: 0; }

  .section--stats {
    margin: 5rem auto; }

  .section--integrations > .flex--horizontal {
    flex-wrap: wrap;
    justify-content: center; }
  .section--integrations .logo {
    max-width: 100px;
    margin: 1rem; }

  .section--customers {
    padding: 2rem 0; }
    .section--customers .tns-controls {
      right: 10%;
      top: 4.5rem;
      bottom: auto; }
    .section--customers .slide {
      flex-direction: column; }
    .section--customers .slide__content {
      margin: 0;
      max-width: 80%;
      height: max-content;
      justify-content: stretch;
      padding: 3rem 1.6rem; }
    .section--customers .slide__image {
      width: 100px;
      height: 100px;
      margin: 0 0 -2rem 1.2rem;
      order: -1;
      z-index: 1; } }
@media only screen and (max-width: 660px) {
  .snippets__cards {
    display: none; }

  .section--summary .summary__lists {
    text-align: center;
    padding: 2rem 0.5rem; }
  .section--summary .summary__list {
    padding: 0;
    flex-direction: column;
    border: 0; }
    .section--summary .summary__list img {
      align-self: center;
      margin-bottom: 0.5rem;
      margin-right: 0; }
    .section--summary .summary__list p {
      font-size: 0.8em;
      font-weight: 400;
      line-height: 1.4em; }
  .section--summary .flex_child--vertical:last-of-type {
    flex-direction: column;
    padding: 2rem; }
    .section--summary .flex_child--vertical:last-of-type p {
      text-align: center; }
    .section--summary .flex_child--vertical:last-of-type h2 {
      padding-left: 0;
      align-self: center;
      order: -1;
      margin-bottom: 1rem;
      text-align: center; } }
@media only screen and (max-width: 480px) {
  .snippets__description {
    column-count: 1;
    text-align: center; }

  .section--customers .tns-controls {
    right: 5%; }

  .input-button {
    width: 40%; }

  .section--contact {
    padding: 5rem 1rem; }

  .form-group {
    max-width: none;
    width: auto; } }

#section-hero,
.section--hero {
  width: 100vw;
  height: 1000px !important;
  /* force fixed height */
  max-width: 100% !important;
  margin: 0;
  padding: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

@media (max-width: 600px) {

  #section-hero,
  .section--hero {
    height: 400px !important;
    /* force shorter on phones */
    max-height: 400px !important;
  }
}

/* subtle dividers between content sections */
.js-section {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-items: center;
  /* centers if fewer than 3 in last row */
  margin-top: 3rem;
}

.feature__card {
  text-align: center;
  max-width: 300px;
}

.feature__card img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  margin-bottom: 1rem;
}

.section--media {
  max-width: 960px;
  margin: 4rem auto;
  text-align: center;
}

.media__trailer {
  margin-bottom: 3rem;
}

.media__screenshots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.media__shot img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* Hide the Lightbox caption */
.lb-data .lb-caption {
  display: none !important;
}

/* Hide the Lightbox counter ("Image 1 of X") */
.lb-data .lb-number {
  display: none !important;
}

/* Lock page scroll when Lightbox is open */
html.lb-disable-scrolling,
body.lb-disable-scrolling {
  overflow: hidden !important;
  height: 100%;
}

/* Center the Lightbox block in the viewport */
#lightbox {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  width: auto !important;
  /* let it shrink to content (image) */
  text-align: center;
  /* Lightbox uses this for inline centering */
}

/* Keep container + data area sized to the image, centered */
#lightbox .lb-outerContainer {
  margin: 0 auto !important;
}

#lightbox .lb-dataContainer {
  width: auto !important;
  /* prevents full-viewport width */
  margin: 6px auto 0 !important;
  /* centers the close button underneath */
}

/* (You already hid these; included for completeness) */
.lb-data .lb-caption,
.lb-data .lb-number {
  display: none !important;
}

#section-about .section__title {
  margin-bottom: 1rem;
  /* tighter than the default 3rem */
}

/*# sourceMappingURL=oasis.css.map */
