@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lobster&display=swap");
@font-face {
  font-family: "Monaco-Regular";
  src: url("/fonts/monaco-reg.ttf") format("truetype");
}
* {
  margin: 0;
  box-sizing: border-box;
}

html {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  width: 100%;
  height: 100%;
  overflow: scroll;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 1280px) {
  html {
    font-size: 16px;
  }
}

body.dark-bg {
  background-color: #040d21;
}

.container {
  margin: auto;
  max-width: 100%;
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (min-width: 576px) {
  .container {
    max-width: 576px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 1280px) {
  .container {
    max-width: 1242px;
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }
}

.text-highlight-dark {
  color: #121212;
  font-weight: 500;
}

.text-highlight-light {
  color: #fff;
  font-weight: 500;
}

.font-family-opensans {
  font-family: "Open Sans", sans-serif;
}

.font-family-poppins {
  font-family: "Poppins", sans-serif;
}

.font-family-lobster {
  font-family: "Lobster", cursive;
}

.font-family-proximanova {
  font-family: "Proxima Nova-Bold", Helvetica, Arial, serif;
}

.font-family-sourcesanspro {
  font-family: "Source Sans Pro", sans-serif;
}

.font-family-monaco {
  font-family: "Monaco-Regular", Helvetica, Arial, serif;
}

.navbar {
  position: sticky;
  width: 100%;
  z-index: 1000;
  transition: background 300ms ease, box-shadow 300ms ease;
  font-size: 1rem;
  margin-bottom: -80px;
  top: 0;
  padding-left: 1rem;
  padding-right: 1rem;
}
.navbar.navbar-expanded {
  background-color: #ffffff;
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  padding-left: 0;
  padding-right: 0;
  flex-wrap: wrap;
}

.navbar-toggler {
  border: none;
  background: none;
  font-size: 32px;
  color: #fff;
  display: flex;
  cursor: pointer;
}
@media (min-width: 1280px) {
  .navbar-toggler {
    display: none;
  }
}

.navbar-items {
  display: none;
  list-style: none;
  margin: 0;
  font-weight: 600;
  width: 100%;
  margin-bottom: 2rem;
  padding-left: 0;
  margin-top: 2rem;
}
.navbar-items.navbar-items-expanded {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1280px) {
  .navbar-items {
    width: auto;
    display: flex;
    flex-direction: row;
    margin-bottom: 0;
    margin-top: 0;
  }
  .navbar-items.navbar-items-expanded {
    display: flex;
    flex-direction: row;
  }
}

.navbar-item {
  padding-left: 1rem;
  padding-right: 1rem;
}
.navbar-item a {
  color: rgba(18, 18, 18, 0.6);
  text-decoration: none;
}
.navbar-item a:hover, .navbar-item a:focus {
  color: #121212;
}
.navbar-item.active a {
  color: #121212;
}
.navbar-item + .navbar-item {
  margin-top: 2rem;
}
@media (min-width: 1280px) {
  .navbar-item {
    padding-left: 0;
    padding-right: 0;
  }
  .navbar-item + .navbar-item {
    margin-top: 0rem;
    margin-left: 3.75rem;
  }
}

.navbar-dark {
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
}
.navbar-dark .navbar-toggler {
  color: #121212;
}

.navbar-light {
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
  margin-bottom: -81px;
}
.navbar-light .brand-logo svg path[fill="#121212"] {
  fill: #fff;
}
.navbar-light .navbar-item a {
  color: rgba(255, 255, 255, 0.6);
}
.navbar-light .navbar-item a:hover, .navbar-light .navbar-item a:focus {
  color: #fff;
}
.navbar-light .navbar-item.active a {
  color: #fff;
}

.brand-logo {
  display: flex;
  padding-top: 20px;
  padding-bottom: 20px;
}

.jumbotron {
  padding-top: 10.5rem;
  padding-bottom: 14.5rem;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
@media (min-width: 1980px) {
  .jumbotron {
    padding-top: 14.5rem;
    background-size: 200%;
  }
}

.jumbotron-dark-bg {
  background-color: #040d21;
}

.jumbotron-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
}
@media (min-width: 576px) {
  .jumbotron-title {
    font-size: 5.714rem;
    line-height: 0.9;
  }
}
@media (min-width: 768px) {
  .jumbotron-title {
    font-size: 8.75rem;
  }
}

.jumbotron-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.625rem;
  line-height: 1.5;
  margin-top: 3.75rem;
}
@media (min-width: 1280px) {
  .jumbotron-description {
    max-width: 848px;
  }
}

.jumbotron-scroll-indicator {
  display: inline-flex;
  color: #fff;
  font-size: 1.875rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  margin-top: 3.75rem;
}

.jumbotron-scroll-indicator-icon-container {
  display: flex;
  flex-direction: column;
  margin-left: 0.75rem;
  margin-top: -0.4rem;
  font-size: 2.5rem;
}
.jumbotron-scroll-indicator-icon-container .bottom {
  margin-top: -1.25rem;
}
.jumbotron-scroll-indicator-icon-container .top, .jumbotron-scroll-indicator-icon-container .bottom {
  opacity: 0.3;
}
.jumbotron-scroll-indicator-icon-container .active {
  opacity: 1;
}

.feature-section {
  padding-top: 3.75rem;
  padding-bottom: 7.5rem;
}
.feature-section + .feature-section {
  padding-top: 7.5rem;
}

.feature-section-body-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-section-counter {
  font-size: 2.5rem;
  line-height: 0.9;
  font-weight: 700;
  padding: 2rem;
  border-radius: 0.625rem;
  margin-bottom: 0.75rem;
}

.feature-section-title {
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 900;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to left, #0278ff, #6ae6cb);
}
@media (min-width: 768px) {
  .feature-section-title {
    font-size: 3rem;
  }
}
@media (min-width: 1280px) {
  .feature-section-title {
    font-size: 3.75rem;
    line-height: 1.25;
  }
}

.feature-section-description {
  margin-top: 0.75rem;
  max-width: 800px;
  font-size: 1.25rem;
  line-height: 1.9;
}

.feature-section-light {
  background-color: #040d21;
}
.feature-section-light .feature-section-counter {
  color: #fff;
  border: solid 1px rgba(255, 255, 255, 0.1);
}
.feature-section-light .feature-section-description {
  color: rgba(255, 255, 255, 0.6);
}
.feature-section-light .feature-section-divider {
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
}

.feature-section-dark {
  background-color: #ffffff;
}
.feature-section-dark .feature-section-counter {
  color: #121212;
  border: solid 1px rgba(0, 0, 0, 0.1);
}
.feature-section-dark .feature-section-description {
  color: rgba(18, 18, 18, 0.6);
}
.feature-section-dark .feature-section-divider {
  border-bottom: solid 1px rgba(0, 0, 0, 0.2);
}
.feature-section-dark + .feature-section-dark {
  border-top: solid 1px rgba(0, 0, 0, 0.1);
}

.feature-section-divider {
  width: 100%;
  height: 1px;
}

.feature-section-footer-divider {
  position: relative;
  z-index: 1;
  margin-bottom: -2.5rem;
}

.download-section {
  padding-top: 7.5rem;
  color: #fff;
  font-size: 1.875rem;
  line-height: 1.5;
  text-align: center;
}

.download-link {
  display: inline-block;
  -webkit-background-clip: text;
  font-size: 1.625rem;
  font-weight: 700;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(to left, #e9515a, #d13585);
  margin-top: 2.5rem;
}

.download-link-icon {
  margin-left: 0.25rem;
}

footer {
  background-color: #040d21;
  padding-top: 7.5rem;
}

.footer-brand-logo {
  max-width: 160px;
  max-height: 40px;
  width: auto;
  height: auto;
}

.footer-bottom {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  border-top: solid 1px rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 1280px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-top {
  display: flex;
  margin-bottom: 4.75rem;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 1280px) {
  .footer-top {
    flex-direction: row;
  }
}

.footer-top-left, .footer-top-right {
  flex: 1;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1280px) {
  .footer-nav {
    align-items: flex-start;
  }
}

.footer-nav-right {
  margin-top: 2rem;
}
@media (min-width: 1280px) {
  .footer-nav-right {
    margin-top: 0;
    align-items: flex-end;
  }
}

.footer-nav-caption {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
@media (min-width: 768px) {
  .footer-nav-caption {
    font-size: 1.5rem;
  }
}
@media (min-width: 1280px) {
  .footer-nav-caption {
    font-size: 1.875rem;
  }
}

.footer-nav-title {
  font-weight: 800;
  color: #fff;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .footer-nav-title {
    font-size: 2.28rem;
  }
}
@media (min-width: 1280px) {
  .footer-nav-title {
    font-size: 3.25rem;
    line-height: 1;
  }
}

.footer-nav-link {
  margin-top: 1rem;
  font-size: 1.625rem;
  font-weight: 700;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-nav-left .footer-nav-link {
  background-image: linear-gradient(to left, #e9515a, #d13585);
}
.footer-nav-left .footer-nav-link-icon {
  margin-right: 0.25rem;
}

.footer-nav-right .footer-nav-link {
  background-image: linear-gradient(to right, #e9515a, #d13585);
}
.footer-nav-right .footer-nav-link-icon {
  margin-left: 0.25rem;
}

.footer-nav-placeholder {
  display: none;
}
.footer-nav-placeholder img {
  width: 24.25rem;
}
@media (min-width: 1280px) {
  .footer-nav-placeholder {
    display: block;
  }
}

.footer-nav-placeholder-right {
  text-align: right;
}

.footer-social-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  margin-top: 2.5rem;
}
@media (min-width: 1280px) {
  .footer-social-links {
    margin-top: 0;
  }
}

.footer-social-link img {
  width: 1.5rem;
  height: 1.5rem;
}
.footer-social-link + .footer-social-link {
  margin-left: 1.25rem;
}
.footer-social-link a {
  display: flex;
  opacity: 0.6;
}
.footer-social-link a:hover, .footer-social-link a:focus {
  opacity: 1;
}

/**
 * Minified by jsDelivr using clean-css v4.2.3.
 * Original file: /npm/toastify-js@1.11.1/src/toastify.css
 *
 * Do NOT use SRI with dynamically generated files! More information: https://www.jsdelivr.com/using-sri-with-dynamic-files
 */
/*!
 * Toastify js 1.11.1
 * https://github.com/apvarun/toastify-js
 * @license MIT licensed
 *
 * Copyright (C) 2018 Varun A P
 */
.toastify {
  padding: 12px 20px;
  color: #fff;
  display: inline-block;
  box-shadow: 0 3px 6px -1px rgba(0, 0, 0, 0.12), 0 10px 36px -4px rgba(77, 96, 232, 0.3);
  background: -webkit-linear-gradient(315deg, #73a5ff, #5477f5);
  background: linear-gradient(135deg, #73a5ff, #5477f5);
  position: fixed;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  border-radius: 2px;
  cursor: pointer;
  text-decoration: none;
  max-width: calc(50% - 20px);
  z-index: 2147483647;
}

.toastify.on {
  opacity: 1;
}

.toast-close {
  opacity: 0.4;
  padding: 0 5px;
}

.toastify-right {
  right: 15px;
}

.toastify-left {
  left: 15px;
}

.toastify-top {
  top: -150px;
}

.toastify-bottom {
  bottom: -150px;
}

.toastify-rounded {
  border-radius: 25px;
}

.toastify-avatar {
  width: 1.5em;
  height: 1.5em;
  margin: -7px 5px;
  border-radius: 2px;
}

.toastify-center {
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  max-width: fit-content;
  max-width: -moz-fit-content;
}

@media only screen and (max-width: 360px) {
  .toastify-left, .toastify-right {
    margin-left: auto;
    margin-right: auto;
    left: 0;
    right: 0;
    max-width: fit-content;
  }
}
.icons-jumbotron {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTk4MCIgaGVpZ2h0PSI5MjAiIHZpZXdCb3g9IjAgMCAxOTgwIDkyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPG1hc2sgaWQ9Im1hc2swIiBtYXNrLXR5cGU9ImFscGhhIiBtYXNrVW5pdHM9InVzZXJTcGFjZU9uVXNlIiB4PSIwIiB5PSIwIiB3aWR0aD0iMTk4MCIgaGVpZ2h0PSI5MjAiPgo8cmVjdCB3aWR0aD0iMTk4MCIgaGVpZ2h0PSI5MjAiIGZpbGw9IiNDNEM0QzQiLz4KPC9tYXNrPgo8ZyBtYXNrPSJ1cmwoI21hc2swKSI+CjxwYXRoIGQ9Ik0xODQxLjgzIC0yMS4wMTA3QzEyODIuNSAxMTUxLjUgNDc4IDQzNi41IC00ODMgMTA1MkwtNTgzIC0xMS4wMTA3TDE4NDEuODMgLTIxLjAxMDdaIiBmaWxsPSJ1cmwoI3BhaW50MF9saW5lYXIpIi8+CjxwYXRoIGQ9Ik0xMTYzLjQ0IC0zNDBDMTkzLjAwNSA1MDQuMjQ5IDM3OS43MSAxMjAuOTY4IC0xOTguNDMxIDc1OC43NjhMLTU2NS44MzIgLTIxNC4yNDNMMTE2My40NCAtMzQwWiIgZmlsbD0idXJsKCNwYWludDFfbGluZWFyKSIvPgo8L2c+CjxkZWZzPgo8bGluZWFyR3JhZGllbnQgaWQ9InBhaW50MF9saW5lYXIiIHgxPSIxODQxLjgzIiB5MT0iLTIxLjAxMDciIHgyPSItNTgwLjQ5OSIgeTI9Ijc5Ny40OTkiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KPHN0b3Agc3RvcC1jb2xvcj0iI0U5NTFCRSIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiNEMTZEMzUiLz4KPC9saW5lYXJHcmFkaWVudD4KPGxpbmVhckdyYWRpZW50IGlkPSJwYWludDFfbGluZWFyIiB4MT0iMTE2My40NCIgeTE9Ii0zNDAiIHgyPSItNjYwLjI5MyIgeTI9Ijg5LjE3MTUiIGdyYWRpZW50VW5pdHM9InVzZXJTcGFjZU9uVXNlIj4KPHN0b3Agc3RvcC1jb2xvcj0iIzlFMUU3QiIvPgo8c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiNEMTZEMzUiLz4KPC9saW5lYXJHcmFkaWVudD4KPC9kZWZzPgo8L3N2Zz4K");
}

.icons-section-icons {
  margin-top: 3.75rem;
  display: flex;
  flex-wrap: wrap;
  width: 16.25rem;
  margin-left: auto;
  margin-right: auto;
  border-top: solid 1px rgba(255, 255, 255, 0.2);
  border-left: solid 1px rgba(255, 255, 255, 0.2);
  box-sizing: content-box;
}
@media (min-width: 576px) {
  .icons-section-icons {
    width: 24.375rem;
  }
}
@media (min-width: 768px) {
  .icons-section-icons {
    width: 48.75rem;
  }
}
@media (min-width: 1280px) {
  .icons-section-icons {
    width: 73.125rem;
  }
}

.icons-section-icon {
  width: 8.125rem;
  height: 8.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-right: solid 1px rgba(255, 255, 255, 0.2);
  border-bottom: solid 1px rgba(255, 255, 255, 0.2);
  cursor: pointer;
}

.icons-section-icon-glyph {
  color: #fff;
  font-size: 1.5rem;
}

.icons-section-icon-name {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.625rem;
  margin-top: 0.625rem;
}