:root {
  --white: white;
  --black: black;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: #333;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

.regular-button {
  text-align: center;
  background-color: #0000;
  border: 1.5px solid #fff;
  border-radius: 40px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 170px;
  height: 48px;
  font-family: Larsseit, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 30px;
  display: inline-block;
  position: static;
}

.regular-button:hover {
  background-color: #8032ff;
}

.body {
  background-color: #000;
  flex-direction: column;
  line-height: 24px;
  display: flex;
}

.primary-button {
  text-align: center;
  background-color: #0000;
  border: 2px solid #fff;
  border-radius: 100px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 48px;
  margin: 10px;
  font-family: Larsseit, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  display: inline-block;
  position: static;
}

.primary-button:hover {
  color: #fff;
  background-color: #8032ff;
  border-width: 0;
}

.section {
  display: inline-block;
}

.hero-overlay {
  color: #fff;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  height: 90vh;
  max-height: 780px;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.centered-container {
  text-align: center;
  flex-flow: column;
  flex: 1;
  align-items: center;
  max-width: 1000px;
  height: 100%;
  max-height: none;
  margin-top: 100px;
  margin-left: 13%;
  margin-right: 25%;
  display: flex;
  position: static;
}

.final {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 140px;
  padding-bottom: 0;
  display: flex;
}

.footer-flex-container {
  color: #aeb3b7;
  text-align: left;
  justify-content: space-between;
  margin-bottom: 40px;
  font-family: Larsseit, sans-serif;
  font-weight: 300;
  display: inline-block;
}

.footer-logo-link {
  flex: 0 auto;
  min-width: auto;
  max-height: 60px;
}

.footer-image {
  float: none;
  object-fit: contain;
  object-position: 0% 50%;
  width: 80%;
  max-width: 100px;
  height: 100%;
  display: inline-block;
  position: static;
}

.footer-heading {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.5;
}

.footer-link {
  color: #aeb3b7;
  margin-bottom: 10px;
  text-decoration: none;
  display: block;
}

.footer-link:hover {
  text-decoration: underline;
}

.sticky-nav {
  z-index: 1;
  background-color: #000;
  padding: 20px;
  position: sticky;
  top: 0;
}

.nav-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content max-content max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  display: grid;
}

.nav-logo-link {
  height: 60px;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  display: block;
}

.nav-logo {
  object-fit: contain;
  object-position: 0% 50%;
  width: 100px;
  height: 100%;
  margin-left: 10px;
  margin-right: 10px;
}

.nav-link {
  color: #aeb3b7;
  margin-left: 0;
  margin-right: 0;
  padding: 10px 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 300;
  text-decoration: none;
  display: block;
  position: static;
}

.nav-link:hover {
  text-decoration: underline;
}

.feature-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.flex-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: row;
  flex: 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  display: block;
}

.feature-image-mask {
  width: 100%;
  margin-right: 40px;
}

.feature-image {
  object-fit: contain;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
}

.cards-section {
  padding-top: 40px;
  padding-bottom: 100px;
  display: block;
}

.cards-grid-container {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: none;
  display: grid;
}

.cards-image-mask {
  border-radius: 0%;
  width: 100%;
  padding-top: 0%;
  position: relative;
  overflow: hidden;
}

.cards-image {
  object-fit: contain;
  object-position: 50% 50%;
  width: 450px;
  max-width: none;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.call-to-action {
  text-align: center;
  background-color: #131517;
  margin-top: 60px;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  display: none;
}

.secondary-heading {
  float: none;
  color: #fff;
  text-align: left;
  letter-spacing: 0;
  justify-content: flex-start;
  align-items: center;
  width: 350px;
  margin-top: 142px;
  margin-bottom: 20px;
  margin-left: -9px;
  padding-top: 40px;
  padding-bottom: 0;
  font-family: Larsseit, sans-serif;
  font-size: 80px;
  font-weight: 500;
  line-height: 90px;
  display: flex;
  position: relative;
  overflow: visible;
}

.subheading {
  color: #fff;
  text-align: center;
  margin-bottom: 100px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.text-block {
  color: #fff;
  margin-bottom: 20px;
  font-family: Larsseit, sans-serif;
  font-size: 32px;
  font-weight: 500;
}

.paragraph-2 {
  color: #aeb3b7;
  text-align: left;
  margin-bottom: 40px;
  margin-left: auto;
  padding-left: 0;
  padding-right: 60px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
  font-weight: 300;
  display: block;
  position: absolute;
}

.heading-2 {
  color: #fff;
  letter-spacing: -0.5px;
  margin-top: 80px;
  margin-bottom: 20px;
  font-family: Larsseit, sans-serif;
  font-weight: 500;
}

.heading-3 {
  color: #fff;
  object-fit: fill;
  height: 30px;
  margin-top: 3px;
  margin-bottom: 0;
  font-family: Larsseit, sans-serif;
  font-size: 20px;
  font-weight: 400;
}

.secondary-button {
  text-align: center;
  background-color: #282b2d;
  border: 0 solid #282b2d;
  border-radius: 100px;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 48px;
  margin: 10px;
  font-family: Larsseit, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 30px;
  display: inline-block;
  position: static;
}

.secondary-button:hover {
  background-color: #484d51;
}

.list-item {
  margin-left: 10px;
}

.video {
  flex: 1;
  order: 1;
  justify-content: flex-start;
  align-self: center;
  display: flex;
}

.background-video {
  display: inline;
}

.container {
  max-width: 940px;
}

.content {
  text-align: center;
  flex: 1;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.background-video-2 {
  object-fit: fill;
  width: 1103px;
  height: 1200px;
  display: inline-block;
  overflow: visible;
}

.split-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  flex: 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: none;
  display: block;
}

.navbar {
  background-color: #000;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 20px;
  display: none;
}

.nav-link-2 {
  color: #aeb3b7;
  margin-right: 10px;
  font-family: Larsseit, sans-serif;
  font-size: 16px;
  font-weight: 300;
}

.nav-link-2:hover {
  color: #fff;
  text-decoration: underline;
}

.nav-link-2.w--current {
  color: #fff;
}

.nav-menu {
  align-items: center;
  display: flex;
}

.div-block {
  height: 300px;
}

.centered-co {
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: block;
}

.hero-image-mask {
  width: 100%;
  margin-left: 40px;
}

.hero-image {
  object-fit: cover;
  object-position: 50% 50%;
  flex: 0 0.5 auto;
  width: 100%;
  height: 100%;
}

.image {
  width: 230px;
  height: 634.766px;
  margin-top: 334px;
  margin-left: -93px;
  margin-right: -156px;
  position: relative;
}

.image-2 {
  width: 207px;
  height: 564.477px;
  margin-top: 97px;
  margin-left: 362px;
  margin-right: 145px;
  position: absolute;
}

.image-3 {
  width: 229px;
  height: 688.766px;
  margin-bottom: 346px;
  position: relative;
}

.paragraph-4 {
  margin-left: 450px;
}

.heading {
  float: none;
  color: #fff;
  text-align: center;
  letter-spacing: -5px;
  flex-direction: row;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  margin-top: 83px;
  margin-bottom: 60px;
  margin-left: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-family: Larsseit, sans-serif;
  font-size: 80px;
  font-weight: 500;
  line-height: 80px;
  display: block;
  overflow: visible;
}

.column {
  text-align: center;
  padding-left: 0;
  display: inline-block;
}

.grid {
  grid-template-areas: "Area";
}

.file {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 50px;
  display: flex;
}

.paragraph-5 {
  color: #aeb3b7;
  width: 468.422px;
  margin-bottom: 40px;
  font-family: Larsseit, sans-serif;
  font-size: 16px;
  font-weight: 300;
}

.container-3 {
  grid-column-gap: 36px;
  grid-row-gap: 16px;
  object-fit: contain;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-left: 56px;
  display: flex;
}

.subheading-2 {
  color: #aeb3b7;
  text-align: left;
  width: 320px;
  margin-bottom: 40px;
  font-family: Larsseit, sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 24px;
}

.image-4 {
  text-align: center;
}

.image-5 {
  clear: none;
  text-align: center;
  margin-right: 0;
  position: static;
}

.image-6 {
  width: 180px;
  height: 52px;
  margin-left: 0;
  margin-right: 0;
}

.block-1 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  height: auto;
  margin-right: 36px;
  display: flex;
}

.block-2 {
  margin-top: 135px;
  margin-left: -50px;
}

.block-4 {
  margin-top: -112px;
}

.html-embed {
  z-index: -10;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 80%;
  max-width: none;
  height: 100%;
  max-height: 100%;
  margin-bottom: 0;
  margin-left: 13%;
  margin-right: 0%;
  display: none;
  position: absolute;
  inset: 0% 0% auto;
}

.hero-overlay-2 {
  color: #fff;
  text-align: center;
  -webkit-text-fill-color: inherit;
  background-image: url("../images/NEW-HEADER.jpg");
  background-position: 50%;
  background-repeat: repeat;
  background-size: contain;
  background-attachment: fixed;
  background-clip: border-box;
  border: 1px solid #0000;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-bottom: 140px;
  padding-top: 125px;
  padding-bottom: 200px;
  display: none;
  position: relative;
  overflow: visible;
}

.background-video-3 {
  width: auto;
  display: none;
}

.columns {
  text-align: center;
  display: inline-block;
}

.heading-4 {
  font-size: 100px;
  line-height: 90px;
}

.button {
  background-color: #0000;
  border: 2px solid #fff;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 50px;
  font-family: Larsseit, sans-serif;
  font-size: 16px;
  display: flex;
}

.button:hover {
  background-color: #8032ff;
  border-style: none;
}

.link-block {
  order: -1;
  justify-content: flex-start;
  width: auto;
  height: auto;
  margin-right: 0;
  display: flex;
}

.image-7 {
  width: 429.984px;
  height: 285px;
  margin-left: -20px;
  padding-left: 0;
}

.image-8 {
  height: 263.984px;
  margin-bottom: 10px;
  margin-left: -20px;
}

.image-9,
.image-10 {
  margin-bottom: 10px;
  margin-left: -20px;
}

.icon-1 {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.div-block-6 {
  height: 120px;
}

.div-block-7 {
  border: 1px solid #0000;
  width: 20px;
  height: 80px;
}

.text-block-2 {
  color: #fff;
  margin-bottom: 20px;
  font-family: Larsseit, sans-serif;
  font-weight: 300;
}

.section-2 {
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  display: flex;
}

.image-11 {
  width: 180px;
  height: 52px;
  margin-right: 20px;
}

.image-12 {
  width: 100px;
  height: auto;
}

.text-block-3 {
  color: #aeb3b7;
  margin-bottom: 20px;
  font-family: Larsseit, sans-serif;
  font-weight: 300;
}

.button-2 {
  margin-bottom: 140px;
}

.div-block-8 {
  align-items: center;
  display: flex;
}

.container-4 {
  flex-direction: row;
  margin-bottom: 0;
  display: flex;
}

.linkedin {
  margin-left: 20px;
}

.twitter {
  margin-right: 0;
  padding-left: 20px;
}

.instagram,
.image-13,
.image-14 {
  width: 30px;
  height: 30px;
}

.container-5 {
  margin-bottom: 100px;
}

.container-6 {
  border: 1px solid #0000;
}

.section-3 {
  -webkit-text-fill-color: inherit;
  background-image: url("../images/HEADER-FINAL.png");
  background-position: 50%;
  background-repeat: repeat;
  background-size: 1748px;
  background-attachment: fixed;
  background-clip: border-box;
  flex-flow: column;
  place-content: stretch center;
  align-items: center;
  height: 700px;
  margin-bottom: 220px;
  display: flex;
}

.text-block-4 {
  color: #fff;
  text-align: center;
  margin-bottom: 203px;
  font-family: Larsseit, sans-serif;
  font-size: 100px;
  font-weight: 400;
  line-height: 90px;
}

.text-block-5 {
  color: #aeb3b7;
  text-align: center;
  margin-top: -128px;
  margin-bottom: 33px;
  font-family: Larsseit, sans-serif;
  font-size: 25px;
  font-weight: 300;
  line-height: 30px;
}

.image-15 {
  width: 300px;
  height: auto;
  margin-top: 60px;
}

.section-4 {
  object-fit: fill;
  background-color: #131517;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-16 {
  width: 1100px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.button-3 {
  background-color: #8032ff;
  border-color: #0000;
}

.image-17 {
  opacity: 0;
  width: 700px;
  margin-left: -203px;
}

.section-5 {
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  margin-top: 140px;
  margin-bottom: 60px;
  display: flex;
}

.image-18 {
  width: 700px;
  margin-right: -497px;
  display: block;
}

.div-block-9 {
  border: 1px solid #0000;
}

.div-block-10 {
  width: 20px;
  height: 60px;
}

.div-block-11 {
  margin-top: 25%;
}

.image-19 {
  width: 70px;
  height: auto;
  margin-bottom: 28px;
}

.link-block-2 {
  order: -1;
}

.image-20 {
  display: none;
}

.html-embed-2 {
  padding-top: 0;
  padding-bottom: 40px;
}

.div-block-12 {
  margin-bottom: 0;
  padding-bottom: 100px;
}

.start-asking {
  color: #fff;
  background-color: #0000;
  border: 2px solid #fff;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 50px;
  margin-top: 20px;
  font-family: Larsseit, sans-serif;
  font-size: 16px;
  display: flex;
}

.start-asking:hover {
  color: #fff;
  background-color: #8032ff;
  border-style: none;
  border-color: #0000;
}

.header {
  text-align: center;
  -webkit-text-fill-color: inherit;
  object-fit: fill;
  background-clip: border-box;
  flex-flow: column;
  place-content: stretch flex-start;
  align-items: center;
  width: 100%;
  height: 14%;
  margin-top: 60px;
  margin-bottom: 76px;
  font-family: Larsseit, sans-serif;
  display: flex;
  position: static;
}

.text-block-6 {
  color: #fff;
  text-align: center;
  margin-bottom: 30px;
  font-family: Larsseit, sans-serif;
  font-size: 80px;
  font-weight: 500;
  line-height: 90px;
}

.paragraph-6 {
  color: #aeb3b7;
  text-align: center;
  width: 1000px;
  margin-bottom: 40px;
  font-family: Larsseit, sans-serif;
  font-size: 18px;
  font-weight: 300;
  display: block;
}

.image-21 {
  object-fit: fill;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  display: block;
}

.body-2 {
  background-color: #000;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.image-23 {
  width: 24px;
  margin-right: 10px;
}

.heading-5 {
  color: #fff;
  width: 550px;
  margin-bottom: 20px;
  margin-left: 0;
  font-family: Larsseit, sans-serif;
  font-size: 50px;
  font-weight: 500;
  line-height: 60px;
}

.image-22 {
  width: auto;
  height: auto;
  max-height: 50%;
}

.columns-2 {
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 160px;
  display: flex;
  position: static;
}

.paragraph-7 {
  color: #aeb3b7;
  width: 500px;
  margin-bottom: 20px;
  margin-left: 0;
  font-family: Larsseit, sans-serif;
  font-size: 18px;
  font-weight: 300;
}

.column-4 {
  flex-direction: column;
  align-items: flex-start;
  padding-left: 28px;
  display: flex;
  position: relative;
}

.column-3 {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 140px;
  display: flex;
}

.text-block-7 {
  color: #fff;
  align-items: center;
  font-family: Larsseit, sans-serif;
  font-size: 18px;
  font-weight: 500;
  display: flex;
}

.section-11 {
  align-items: center;
  padding-bottom: 24px;
  display: flex;
}

.ask-answer-connect {
  -webkit-text-fill-color: inherit;
  background-image: url("../images/3_1.png");
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-clip: padding-box;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: auto;
  margin-bottom: 0;
  padding-top: 37px;
  padding-bottom: 49px;
  display: flex;
  position: static;
}

.heading-6 {
  color: #fff;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
  font-family: Larsseit, sans-serif;
  font-size: 44px;
  font-weight: 500;
  display: flex;
}

.button-4 {
  background-color: #8032ff;
  border-color: #0000;
}

.text-span-2 {
  color: #fff;
}

.grid-2 {
  grid-column-gap: 16px;
  grid-template-areas:
    "."
    "Area";
  grid-auto-flow: column;
  place-content: stretch;
  place-items: stretch center;
  width: 1000px;
  display: none;
}

.image-24 {
  width: 300px;
  padding-bottom: 20px;
}

.html-embed-3 {
  clear: both;
  object-fit: contain;
  justify-content: center;
  width: 100%;
  margin-bottom: 140px;
  display: flex;
}

.button-5 {
  color: #000;
  background-color: #fff;
  border-color: #0000;
}

.section-10 {
  clear: none;
  background-image: radial-gradient(circle, #b080ff, #efe5ff);
  border-radius: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
  height: 500px;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  display: flex;
  position: relative;
}

.text-block-8 {
  color: #fff;
  text-align: center;
  width: auto;
  margin-bottom: 40px;
  padding-left: 40px;
  font-family: Larsseit, sans-serif;
  font-size: 70px;
  line-height: 80px;
}

.navbar-2 {
  background-color: #0000;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
}

.columns-3 {
  justify-content: center;
  align-items: center;
  width: 1400px;
  display: flex;
}

.column-5 {
  align-items: center;
  display: flex;
}

.image-25 {
  width: 100px;
  margin-top: 20px;
}

.column-6 {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.columns-7 {
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 160px;
  display: flex;
  position: static;
}

.ask-answer-connect-2 {
  -webkit-text-fill-color: inherit;
  background-image: url("../images/people.png");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-clip: padding-box;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-bottom: 0;
  padding-top: 37px;
  padding-bottom: 49px;
  display: flex;
  position: static;
}

.section-12 {
  width: 100%;
}

.start-asking-copy {
  color: #fff;
  background-color: #0000;
  border: 2px solid #fff;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 50px;
  font-family: Larsseit, sans-serif;
  font-size: 16px;
  display: flex;
}

.start-asking-copy:hover {
  color: #fff;
  background-color: #8032ff;
  border-style: none;
  border-color: #0000;
}

.section-13 {
  margin-top: 0;
  padding-top: 60px;
  padding-bottom: 100px;
}

.text-block-9 {
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  font-family: Larsseit, sans-serif;
  font-size: 100px;
  font-weight: 400;
  line-height: 90px;
}

.text-block-10 {
  color: #aeb3b7;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Larsseit, sans-serif;
  font-size: 25px;
  font-weight: 300;
  line-height: 30px;
  display: none;
}

.columns-9 {
  justify-content: center;
  padding-bottom: 20px;
  display: flex;
}

.container-9 {
  background-color: #0000;
  border: 1px solid #0000;
  border-radius: 20px;
  flex-direction: column;
  flex: 0 auto;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
}

.none {
  filter: grayscale();
  cursor: auto;
  mix-blend-mode: normal;
  background-color: #0000;
  width: 250px;
}

.none:hover {
  filter: none;
  -webkit-text-fill-color: inherit;
  mix-blend-mode: normal;
  background-color: #0000;
  background-image: radial-gradient(circle closest-side, #707070, #0000);
  background-clip: border-box;
  width: 250px;
}

.heading-7 {
  color: #fff;
  text-align: center;
  width: 100%;
  margin-bottom: 0;
  margin-right: 0;
  padding-bottom: 5px;
  padding-left: 40px;
  padding-right: 40px;
  font-weight: 700;
}

.paragraph-8 {
  color: #aeb3b7;
  text-align: center;
  border: 1px solid #0000;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
}

.columns-8 {
  justify-content: center;
  margin-top: 20px;
  display: flex;
}

.plus-button {
  color: #c7c7c7;
  text-align: center;
  background-color: #383838;
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  width: 30px;
  height: 30px;
  padding: 4px 0 0;
  font-family: Larsseit, sans-serif;
  font-size: 24px;
  font-weight: 300;
  display: flex;
  position: static;
}

.plus-button:hover {
  color: #fff;
  background-color: #000;
  border: 2px solid #fff;
  width: 30px;
  height: 30px;
}

.popup-james-lo {
  z-index: 1;
  background-color: #000000d9;
  width: 100vw;
  height: 100vw;
  display: none;
  position: fixed;
}

.pop-up {
  background-color: #1a1c1e;
  border: 1px solid #fff;
  border-radius: 20px;
  width: 800px;
  height: auto;
  margin: 220px auto 0;
  padding: 40px;
  position: absolute;
  inset: 0% 0% auto;
}

.bio {
  color: #aeb3b7;
  margin-bottom: 30px;
  font-family: Larsseit, sans-serif;
  font-weight: 300;
}

.name {
  opacity: 0.1;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  font-family: Larsseit, sans-serif;
  font-size: 60px;
  text-decoration: none;
}

.headline {
  color: #32bbff;
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 0;
  font-family: Larsseit, sans-serif;
}

.close {
  cursor: pointer;
  justify-content: flex-end;
  padding: 20px;
  display: block;
  position: absolute;
  inset: 0% 0% auto auto;
}

.image-26,
.twitter-jake2 {
  width: 20px;
  height: 20px;
}

.twitter-jake {
  grid-column-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  width: 20px;
  height: 20px;
  display: flex;
}

.section-14 {
  grid-column-gap: 12px;
  display: flex;
}

.popup-bobby {
  z-index: 1;
  background-color: #000000d9;
  width: 100vw;
  height: 100vw;
  display: none;
  position: fixed;
}

.text-span-3 {
  color: #b7b6ae;
}

.link,
.link-2 {
  color: #33baff;
}

.popup-nikki,
.popup-raquel,
.popup-jake,
.popup-sophia,
.popup-salih {
  z-index: 1;
  background-color: #000000d9;
  width: 100vw;
  height: 100vw;
  display: none;
  position: fixed;
}

.team-grid {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.navbar-no-shadow-container {
  z-index: 5;
  background-color: #0000;
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

.container-regular {
  width: 100%;
  max-width: 1260px;
  min-height: 30px;
  margin-left: auto;
  margin-right: auto;
}

.navbar-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav-menu-2 {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
}

.nav-link-3 {
  color: #969696;
  letter-spacing: 0.25px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  font-family: Larsseit, sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-3:hover {
  color: #fff;
}

.nav-link-3:focus-visible,
.nav-link-3[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-dropdown {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-dropdown-toggle {
  letter-spacing: 0.25px;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle:hover {
  color: #1a1b1fbf;
}

.nav-dropdown-toggle:focus-visible,
.nav-dropdown-toggle[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-icon {
  margin-right: 10px;
}

.nav-dropdown-list {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-link {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
}

.nav-dropdown-link:focus-visible,
.nav-dropdown-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.mobile-margin-top-10 {
  list-style-type: none;
}

.nav-button-wrapper {
  margin-left: 120px;
}

.button-primary {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all 0.2s;
}

.button-primary:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary:active {
  background-color: #43464d;
}

.navbar-logo-center-container {
  z-index: 5;
  background-color: #0000;
  width: 1030px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

.navbar-logo-center-container.shadow-three {
  width: 100%;
  max-width: 1140px;
}

.container-10 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.navbar-wrapper-three {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.navbar-brand-three {
  z-index: 5;
  position: absolute;
}

.nav-menu-wrapper-three {
  width: 100%;
}

.nav-menu-three {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.nav-menu-block {
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.nav-link-accent {
  color: #1a1b1f;
  letter-spacing: 0.25px;
  margin-left: 5px;
  margin-right: 20px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
}

.nav-link-accent:hover {
  color: #1a1b1fbf;
}

.navbar-logo-left-container {
  z-index: 5;
  background-color: #0000;
  width: 1030px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 15px 20px;
}

.navbar-logo-left-container.shadow-three {
  width: 100%;
  max-width: 1140px;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

.nav-menu-two {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.nav-divider {
  background-color: #e4ebf3;
  width: 1px;
  height: 22px;
  margin-left: 15px;
  margin-right: 15px;
}

.popup-3 {
  z-index: 1;
  background-color: #000000d9;
  width: 100vw;
  height: 100vw;
  display: none;
  position: fixed;
}

.header-1 {
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  flex-flow: column;
  place-content: stretch center;
  align-items: center;
  height: 700px;
  margin-top: auto;
  margin-bottom: 220px;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.big-bubble {
  align-self: center;
  width: 400px;
  height: auto;
  margin-top: 0;
}

.copy-header {
  color: #fff;
  text-align: center;
  align-self: center;
  margin-top: -460px;
  margin-bottom: 20px;
  padding-top: 0;
  font-family: Larsseit, sans-serif;
  font-size: 90px;
  font-weight: 400;
  line-height: 90px;
}

.image-37 {
  display: none;
  position: relative;
}

.small-bubbles {
  width: 90vw;
  margin-top: -126px;
  padding-top: 0;
}

.container-20 {
  grid-column-gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
  display: flex;
}

.button-6 {
  background-color: #0000;
  border: 2px solid #fff;
  border-radius: 100px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 50px;
  font-family: Larsseit, sans-serif;
  font-size: 16px;
  display: flex;
}

.button-6:hover {
  color: #000;
  background-color: #e5d5ff;
  border-style: none;
  border-color: #0000;
}

.new-boton-copy-copy {
  color: #000;
  background-color: #fff;
  border-width: 0;
  border-color: #0000;
  border-radius: 100px;
}

.image-38 {
  display: none;
}

.column-9 {
  padding-left: 100px;
}

.button-7 {
  background-color: #0000;
  border: 2px solid #fff;
  border-radius: 100px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 50px;
  font-family: Larsseit, sans-serif;
  font-size: 16px;
  display: flex;
}

.button-7:hover {
  color: #000;
  background-color: #e5d5ff;
  border-style: none;
  border-color: #0000;
}

.test {
  object-fit: cover;
  object-position: 0% 50%;
  order: 1;
  width: 1516px;
  height: auto;
  display: block;
}

.heading-9 {
  color: #fff;
  width: 80%;
  margin-top: 0;
  margin-bottom: 20px;
  padding-bottom: 0;
  font-family: Larsseit, sans-serif;
  font-size: 45px;
  font-weight: 300;
  line-height: 60px;
}

.button-6-copy {
  color: #aeb3b7;
  background-color: #131517;
  border: 2px solid #282b2d;
  border-radius: 20px;
  height: 10%;
  margin-right: 10px;
  padding: 3px 15px 2px;
  font-family: Larsseit, sans-serif;
  font-weight: 400;
}

.block {
  align-items: center;
  margin-bottom: 140px;
  display: flex;
}

.column-10 {
  object-fit: fill;
  flex: 0 auto;
  align-items: stretch;
  height: 500px;
  display: flex;
}

.container-12 {
  grid-column-gap: 12px;
  flex-wrap: nowrap;
  margin-top: 20px;
  margin-bottom: 40px;
  padding-left: 0;
  display: block;
}

.paragraph-10 {
  color: #fff;
  width: 80%;
  padding-top: 20px;
  font-family: Larsseit, sans-serif;
  font-weight: 300;
}

.section-19 {
  background-color: #0000;
  background-image: url("../images/grey-block.png");
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  height: 13.2901%;
  margin: 0 100px;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.columns-10 {
  grid-column-gap: 0px;
  align-items: center;
  padding: 20px;
  display: flex;
}

.column-11 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-36 {
  width: 70%;
  height: 100%;
  margin-top: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}

.heading-14 {
  color: #fff;
  margin-top: auto;
  margin-bottom: 0;
  font-family: Larsseit, sans-serif;
  font-size: 45px;
  font-weight: 300;
}

.heading-15 {
  color: #aeb3b7;
  margin-top: 10px;
  margin-bottom: 20px;
  font-family: Larsseit, sans-serif;
  font-weight: 300;
}

.paragraph-13 {
  color: #fff;
  width: 80%;
  margin-bottom: auto;
  font-family: Larsseit, sans-serif;
  font-weight: 300;
}

.mentors-and-peers {
  background-image: url("../images/gradient.png");
  background-position: 50% 15%;
  background-repeat: no-repeat;
  background-attachment: scroll;
  flex-direction: column;
  align-items: center;
  height: auto;
  margin-top: 140px;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.heading-13 {
  color: #fff;
  text-align: center;
  margin-top: auto;
  font-family: Larsseit, sans-serif;
  font-weight: 300;
}

.paragraph-12 {
  color: #fff;
  text-align: center;
  width: 50%;
  margin-bottom: 40px;
  font-family: Larsseit, sans-serif;
  font-weight: 300;
}

.container-21 {
  grid-column-gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
  display: flex;
}

.uui-navbar07_menu-button {
  padding: 0;
}

.uui-logo_component {
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 2rem;
  display: flex;
}

.uui-navbar07_logo-link {
  padding-left: 0;
}

.uui-navbar07_dropdown-list {
  box-shadow: 0 12px 16px -4px #00000014, 0 4px 6px -2px #10182808;
}

.uui-navbar07_dropdown-list.w--open {
  background-color: #000;
  border: 1px #aeb3b7;
  border-radius: 0.75rem;
  width: 20rem;
  padding: 0.75rem;
  right: -100%;
  box-shadow: 10px 9px 16px 3px #ffffff14, -6px 2px 6px #ffffff08;
}

.uui-navbar07_container {
  flex: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.uui-navbar07_dropdown-link-list {
  grid-column-gap: 0px;
  grid-row-gap: 0.5rem;
  grid-template-rows: max-content;
  grid-template-columns: 1fr;
  grid-auto-rows: max-content;
  grid-auto-columns: 1fr;
  display: grid;
}

.uui-navbar07_link {
  color: #fff;
  align-items: center;
  padding: 0.75rem 1rem;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s;
}

.uui-navbar07_link:hover {
  color: #de76e4;
}

.uui-navbar07_link.w--current {
  color: #000;
}

.uui-navbar07_item-heading {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0.25rem;
  font-size: 15px;
  font-weight: 500;
}

.uui-logo_image {
  flex: none;
  width: auto;
  height: 100%;
  display: none;
}

.uui-navbar07_dropdown-toggle {
  color: #fff;
  align-items: center;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s;
  display: flex;
}

.uui-navbar07_dropdown-toggle:hover {
  color: #de76e4;
}

.uui-dropdown-icon {
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: 1rem;
  display: flex;
  position: absolute;
  inset: auto 0% auto auto;
}

.uui-navbar07_component {
  background-color: #0000;
  border: 1px #000;
  justify-content: space-between;
  align-items: center;
  min-width: 100%;
  max-width: 100%;
  min-height: 5rem;
  padding: 1rem 2rem;
  display: block;
}

.uui-navbar07_item-right {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-weight: 400;
  display: flex;
}

.uui-styleguide_logomark-bg {
  border: 1px #000;
  border-radius: 0;
  width: 60%;
  height: 2rem;
  display: block;
  position: absolute;
  inset: 0%;
}

.uui-text-size-small {
  color: #aeb3b7;
  letter-spacing: normal;
  font-size: 13px;
  line-height: 1.5;
}

.uui-navbar07_dropdown-link {
  grid-column-gap: 1rem;
  grid-row-gap: 0px;
  border-radius: 0.5rem;
  grid-template-rows: auto;
  grid-template-columns: max-content 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  padding: 0.75rem;
  text-decoration: none;
  transition: all 0.3s;
  display: grid;
}

.uui-navbar07_dropdown-link:hover {
  background-color: #131517;
}

.uui-logo_logomark {
  border: 0.1px #dae0e8;
  border-radius: 0;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 1px #1018280f, 0 1px 2px #1018281a;
}

.uui-logo_logotype {
  flex: none;
  width: auto;
  max-width: 50%;
  height: 100%;
  margin-left: 0;
}

.uui-navbar07_menu {
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  max-width: 83.8451%;
  margin-left: 1.5rem;
  display: flex;
  position: static;
}

.uui-navbar07_icon-wrapper {
  color: #7f56d9;
  flex: none;
}

.column-12 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 0;
  display: flex;
}

.html-embed-4 {
  padding-top: 20px;
  padding-bottom: 40px;
}

.column-13 {
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 700px;
  margin-bottom: 305px;
  padding-top: 26px;
  padding-left: 155px;
  display: flex;
}

.chatbot-header {
  z-index: 999;
  flex-direction: row;
  align-items: center;
  height: 2.83218%;
  display: flex;
  position: relative;
}

.paragraph-14 {
  color: #fff;
  max-width: 80%;
  margin-bottom: 0;
  padding-top: 40px;
  font-size: 25px;
  line-height: 35px;
}

.lottie-animation-4 {
  margin-top: -30px;
  margin-left: -129px;
  padding-top: 0;
  padding-left: 0;
  padding-right: 68px;
  position: sticky;
}

.image-39 {
  max-width: 200%;
}

.text-block-15-copy {
  color: #fff;
  font-weight: 500;
}

.paragraph-15 {
  color: #fff;
  width: 80%;
  margin-top: 0;
}

.paragraph {
  color: #aeb3b7;
  text-align: center;
  width: 80%;
  margin-bottom: 40px;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.div-block-3-hidden {
  background-color: #0000;
  border-radius: 10px;
  align-self: flex-end;
  margin-right: 20px;
  padding: 5px 10px;
}

.heading-16 {
  color: #fff;
  width: 60%;
  margin-top: 10px;
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 500;
}

.text-block-15-hidden {
  color: #0000;
  font-weight: 500;
}

.text-block-11 {
  color: #fff;
  text-align: center;
  height: 100%;
  margin-bottom: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 40px;
}

.heading-8 {
  color: #d9bfbf;
  text-align: center;
  margin-top: 0;
  font-size: 18px;
}

.menu-icon-copy {
  width: 10%;
  min-width: auto;
  padding: 5px;
}

.container-14 {
  background-color: #000;
  border: 1px #fff;
  border-radius: 20px;
  flex-direction: column;
  align-items: flex-start;
  max-width: 100%;
  min-height: 100%;
  padding: 20px 0 20px 20px;
  display: flex;
}

.menu-icon {
  object-fit: contain;
  width: 10%;
  min-width: auto;
  max-height: 60px;
  overflow: clip;
}

.our-products {
  background-color: #131517;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  margin-top: auto;
  margin-bottom: 100px;
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
}

.div-block-3 {
  background-color: #0000;
  background-image: linear-gradient(#2368f1, #2368f1);
  border-radius: 10px;
  align-self: flex-end;
  margin-right: 20px;
  padding: 5px 10px;
}

.grid-3 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas:
    ". ."
    ". Area";
  padding-left: 2rem;
  padding-right: 2rem;
}

.section-4-copy {
  object-fit: fill;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  margin-bottom: 8rem;
  display: flex;
}

.image-40 {
  width: 300px;
  height: auto;
  margin-top: 60px;
}

.image-41 {
  width: 1100px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.button-8 {
  background-color: #0000;
  border: 2px solid #fff;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 50px;
  font-size: 16px;
  display: flex;
}

.button-8:hover {
  background-color: #8032ff;
  border-style: none;
}

.button-9 {
  background-color: #8032ff;
  border-color: #0000;
}

.footer-dark {
  background-color: #000;
  border-top: 1px #6c6c6c;
  border-bottom: 1px #0000;
  max-width: 100%;
  padding: 20px 30px;
  position: relative;
}

.container-22 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.footer-wrapper {
  justify-content: center;
  align-items: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 20px;
  display: flex;
}

.image-42 {
  width: 25px;
}

.footer-copyright-center {
  color: #e0e0e0;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
}

.body-3 {
  background-color: #000;
}

.uui-navbar07_link-2 {
  color: #fff;
  align-items: center;
  padding: 0.75rem 1rem;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s;
}

.uui-navbar07_link-2:hover {
  color: #de76e4;
}

.uui-navbar07_link-2.w--current {
  color: #000;
}

.uui-navbar07_item-heading-2 {
  color: #fff;
  margin-top: 0;
  margin-bottom: 0.25rem;
  font-family: DM Sans, sans-serif;
  font-size: 15px;
  font-weight: 500;
}

.uui-navbar07_dropdown-toggle-2 {
  color: #fff;
  align-items: center;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s;
  display: flex;
}

.uui-navbar07_dropdown-toggle-2:hover {
  color: #de76e4;
}

.uui-text-size-small-2 {
  color: #aeb3b7;
  letter-spacing: normal;
  font-family: DM Sans, sans-serif;
  font-size: 13px;
  line-height: 1.5;
}

.column-14 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 0;
  display: flex;
}

.html-embed-5 {
  padding-top: 20px;
  padding-bottom: 40px;
}

.column-15 {
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 700px;
  margin-bottom: 305px;
  padding-top: 26px;
  padding-left: 155px;
  display: flex;
}

.paragraph-16 {
  color: #fff;
  max-width: 80%;
  margin-bottom: 0;
  padding-top: 40px;
  font-family: DM Sans, sans-serif;
  font-size: 25px;
  line-height: 35px;
}

.image-43 {
  max-width: 200%;
}

.text-block-15-copy-2 {
  color: #fff;
  font-family: DM Sans, sans-serif;
  font-weight: 500;
}

.paragraph-17 {
  color: #fff;
  width: 80%;
  margin-top: 0;
  font-family: DM Sans, sans-serif;
}

.paragraph-18 {
  color: #aeb3b7;
  text-align: center;
  width: 80%;
  margin-bottom: 40px;
  font-family: DM Sans, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
}

.heading-17 {
  color: #fff;
  width: 60%;
  margin-top: 10px;
  margin-bottom: 0;
  font-family: DM Sans, sans-serif;
  font-size: 28px;
  font-weight: 500;
  text-decoration: none;
}

.text-block-15-hidden-2 {
  color: #0000;
  font-family: DM Sans, sans-serif;
  font-weight: 500;
}

.text-block-12 {
  color: #fff;
  text-align: center;
  height: 100%;
  margin-bottom: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
  font-family: DM Sans, sans-serif;
  font-size: 40px;
}

.heading-18 {
  color: #d9bfbf;
  text-align: center;
  margin-top: 0;
  font-family: DM Sans, sans-serif;
  font-size: 18px;
}

.container-23 {
  background-color: #000;
  border: 1px #fff;
  border-radius: 20px;
  flex-direction: column;
  align-items: flex-start;
  max-width: 100%;
  min-height: 100%;
  padding: 20px 0 20px 20px;
  display: flex;
}

.div-block-13 {
  background-color: #0000;
  background-image: linear-gradient(#2368f1, #2368f1);
  border-radius: 10px;
  align-self: flex-end;
  margin-right: 20px;
  padding: 5px 10px;
}

.grid-4 {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas:
    ". ."
    ". Area";
  padding-left: 2rem;
  padding-right: 2rem;
}

.image-44 {
  width: 300px;
  height: auto;
  margin-top: 60px;
  font-family: DM Sans, sans-serif;
}

.image-45 {
  width: 1100px;
  padding-top: 60px;
  padding-bottom: 60px;
}

.button-10 {
  background-color: #0000;
  border: 2px solid #fff;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 50px;
  font-size: 16px;
  display: flex;
}

.button-10:hover {
  background-color: #8032ff;
  border-style: none;
}

.div-block-14 {
  width: 20px;
  height: 60px;
}

.container-24 {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

.image-46 {
  width: 25px;
}

.footer-copyright-center-2 {
  color: #e0e0e0;
  text-align: center;
  font-family: DM Sans, sans-serif;
  font-size: 14px;
  line-height: 16px;
}

.link-block-4 {
  font-family: DM Sans, sans-serif;
}

@media screen and (max-width: 991px) {
  .primary-button {
    text-align: center;
    flex-direction: row;
    place-content: stretch center;
    align-items: center;
    margin-right: 10px;
    display: inline-block;
  }

  .centered-container {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    text-align: center;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: auto;
    max-width: none;
    margin-top: -217px;
    margin-left: 0;
    margin-right: 0;
    display: flex;
  }

  .final {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-logo-link {
    display: flex;
  }

  .footer-image {
    width: 70%;
    height: auto;
  }

  .nav-logo-link {
    display: inline-block;
  }

  .cards-grid-container {
    grid-column-gap: 20px;
  }

  .call-to-action {
    text-align: center;
    display: none;
  }

  .secondary-heading {
    letter-spacing: normal;
    margin-top: auto;
    font-size: 60px;
    line-height: 70px;
  }

  .text-block {
    font-size: 28px;
  }

  .heading-3 {
    font-size: 18px;
  }

  .background-video-2 {
    object-fit: fill;
    width: 768px;
    height: 1000px;
    overflow: visible;
  }

  .nav-link-2 {
    text-align: center;
    flex-direction: column;
    flex: 0 auto;
    justify-content: center;
    align-self: center;
    align-items: center;
    width: auto;
    margin-left: 0;
    margin-right: 0;
    display: flex;
  }

  .icon {
    color: #fff;
  }

  .menu-button.w--open {
    background-color: #000;
  }

  .nav-menu {
    background-color: #000;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: block;
  }

  .image {
    width: 170px;
    height: auto;
    margin-top: 100px;
    margin-left: -90px;
    margin-right: 0;
    padding-bottom: 0;
  }

  .image-2 {
    width: 170px;
    height: auto;
    margin-top: 43px;
    margin-left: 207px;
  }

  .image-3 {
    object-fit: fill;
    width: 170px;
    height: auto;
    margin-top: -49px;
    margin-bottom: 146px;
    margin-left: -40px;
    padding-left: 0;
    display: block;
    overflow: visible;
  }

  .column {
    padding-right: 20px;
  }

  .container-2 {
    padding-left: 0;
  }

  .file {
    grid-column-gap: 20px;
    margin-top: 0;
    margin-left: 33px;
  }

  .paragraph-5 {
    font-size: 14px;
  }

  .container-3 {
    padding-left: 0;
  }

  .subheading-2 {
    width: 290px;
    font-size: 16px;
  }

  .image-5 {
    width: 145px;
    margin-bottom: 10px;
  }

  .image-6 {
    width: 150px;
    height: auto;
    margin-bottom: 0;
  }

  .html-embed {
    z-index: -10;
    display: none;
    position: absolute;
    top: 25%;
  }

  .hero-overlay-2 {
    margin-top: 0;
    padding-top: 100px;
  }

  .background-video-3 {
    z-index: auto;
    display: block;
  }

  .columns {
    justify-content: center;
    align-items: stretch;
    width: auto;
    display: flex;
  }

  .link-block {
    width: 150px;
    height: auto;
    margin-left: 0;
  }

  .image-7,
  .image-8 {
    width: 430px;
    height: auto;
  }

  .image-9,
  .image-10 {
    width: 430px;
  }

  .image-11 {
    width: 150px;
    margin-right: 0;
  }

  .div-block-8 {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 266px;
    margin-top: -16px;
    margin-left: 3px;
  }

  .instagram {
    width: 25px;
  }

  .image-13,
  .image-14 {
    width: 25px;
    height: auto;
  }

  .section-3 {
    -webkit-text-fill-color: inherit;
    object-fit: fill;
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: 800px;
    background-attachment: scroll;
    background-clip: border-box;
    width: auto;
    margin-bottom: 41px;
  }

  .text-block-4 {
    margin-top: -327px;
    margin-bottom: 0;
    font-size: 50px;
    line-height: 60px;
  }

  .text-block-5 {
    margin-top: 0;
    margin-bottom: 9px;
    padding-top: 3px;
    font-size: 16px;
    line-height: 22px;
  }

  .image-15 {
    width: 270px;
  }

  .section-4 {
    margin-top: -47px;
  }

  .image-16 {
    width: 600px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .image-17 {
    opacity: 0;
    margin-left: -3px;
    display: block;
  }

  .section-5 {
    width: 500px;
    height: auto;
    margin-top: 83px;
    margin-bottom: 49px;
    margin-left: 193px;
  }

  .image-18 {
    display: block;
  }

  .container-7 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .image-19 {
    width: 70px;
    height: auto;
    margin-bottom: 27px;
  }

  .link-block-2 {
    width: 150px;
    height: auto;
    margin-right: 10px;
    padding-right: 0;
  }

  .link-block-3 {
    width: 150px;
  }

  .container-8 {
    flex-direction: column;
    order: 0;
    justify-content: center;
    align-self: center;
    align-items: center;
    padding-left: 0;
    display: flex;
  }

  .section-6,
  .section-7 {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .image-20 {
    display: none;
  }

  .html-embed-2 {
    width: 150px;
    padding-top: 0;
    display: block;
  }

  .div-block-12 {
    display: none;
  }

  .header {
    -webkit-text-fill-color: inherit;
    object-fit: fill;
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: 800px;
    background-attachment: scroll;
    background-clip: border-box;
    width: auto;
    margin-bottom: 41px;
  }

  .text-block-6 {
    margin-top: -327px;
    margin-bottom: 0;
    font-size: 50px;
    line-height: 60px;
  }

  .section-13 {
    padding-top: 0;
    padding-bottom: 10px;
  }

  .text-block-9 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 50px;
    line-height: 60px;
  }

  .text-block-10 {
    margin-top: 0;
    margin-bottom: 9px;
    padding-top: 3px;
    font-size: 16px;
    line-height: 22px;
  }

  .nav-menu-wrapper {
    background-color: #0000;
  }

  .nav-menu-2 {
    background-color: #000;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    padding-left: 0;
    display: flex;
  }

  .nav-link-3 {
    padding-left: 5px;
    padding-right: 5px;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: absolute;
  }

  .nav-button-wrapper {
    width: 100%;
    margin-left: 0;
  }

  .menu-button-2 {
    padding: 12px;
  }

  .menu-button-2.w--open {
    color: #fff;
    background-color: #000;
  }

  .container-10 {
    max-width: 728px;
  }

  .navbar-wrapper-three {
    justify-content: space-between;
  }

  .navbar-brand-three {
    position: relative;
  }

  .nav-menu-wrapper-three {
    background-color: #0000;
    top: 70px;
  }

  .nav-menu-three {
    background-color: #fff;
    border-radius: 50px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding: 20px;
    display: flex;
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-menu-two {
    background-color: #fff;
    border-radius: 50px;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
    padding: 20px;
    display: flex;
    box-shadow: 0 8px 50px #0000000d;
  }

  .header-1 {
    -webkit-text-fill-color: inherit;
    object-fit: fill;
    background-image: none;
    background-clip: border-box;
    width: auto;
    height: auto;
    margin-bottom: 220px;
  }

  .copy-header {
    margin-top: -327px;
    margin-bottom: 0;
    font-size: 50px;
    line-height: 60px;
  }

  .column-9 {
    padding-right: 0;
  }

  .uui-navbar07_menu-button.w--open {
    background-color: #0000;
  }

  .uui-logo_component {
    justify-content: center;
  }

  .uui-navbar07_dropdown-list {
    position: static;
    overflow: hidden;
  }

  .uui-navbar07_dropdown-list.w--open {
    box-shadow: none;
    border-style: none;
    border-color: #0000;
    width: auto;
    padding: 0;
  }

  .uui-navbar07_container {
    justify-content: center;
    margin-left: 0;
    margin-right: 0;
  }

  .menu-icon_component {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-right: -0.5rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .uui-navbar07_dropdown-link-list {
    padding: 1rem;
  }

  .uui-navbar07_menu-dropdown {
    width: 100%;
    position: relative;
  }

  .uui-navbar07_menu-left {
    grid-column-gap: 0px;
    grid-row-gap: 0.5rem;
    color: #101828;
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .menu-icon_line-bottom {
    background-color: #fff;
    border-radius: 1rem;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .uui-navbar07_link {
    color: #fff;
    width: 100%;
    padding: 0.75rem 0;
    font-size: 1.125rem;
  }

  .uui-navbar07_link:hover {
    color: #de76e4;
  }

  .menu-icon_line-top {
    background-color: #fff;
    border-radius: 1rem;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .menu-icon_line-middle {
    background-color: #fff;
    border-radius: 1rem;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
  }

  .uui-navbar07_dropdown-toggle {
    color: #fff;
    align-items: center;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 0;
    font-size: 1.125rem;
    display: flex;
  }

  .uui-navbar07_dropdown-toggle:hover {
    color: #de76e4;
  }

  .uui-dropdown-icon {
    color: #667085;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
    inset: auto 0% auto auto;
  }

  .menu-icon_line-middle-inner {
    width: 4px;
    height: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .uui-navbar07_dropdown-link {
    padding-left: 0;
    padding-right: 0;
  }

  .uui-navbar07_dropdown-link:hover {
    background-color: #0000;
  }

  .uui-navbar07_menu {
    -webkit-text-fill-color: inherit;
    background-color: #000;
    background-clip: border-box;
    border-top: 1px #f2f4f7;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    align-items: flex-start;
    height: 100vh;
    margin-left: 0;
    padding: 1.5rem 2rem 5rem;
    position: absolute;
    overflow: auto;
  }

  .html-embed-4 {
    width: 150px;
    padding-top: 0;
    display: block;
  }

  .column-13 {
    padding-left: 2rem;
  }

  .chatbot-header {
    justify-content: space-between;
  }

  .text-block-11 {
    line-height: 40px;
  }

  .our-products {
    padding-left: 20px;
    padding-right: 20px;
  }

  .grid-3 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-columns: 1fr 1fr;
  }

  .section-4-copy {
    margin-top: -47px;
  }

  .image-40 {
    width: 270px;
  }

  .image-41 {
    width: 600px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .container-22 {
    max-width: 728px;
  }

  .uui-navbar07_link-2 {
    color: #fff;
    width: 100%;
    padding: 0.75rem 0;
    font-size: 1.125rem;
  }

  .uui-navbar07_link-2:hover {
    color: #de76e4;
  }

  .uui-navbar07_dropdown-toggle-2 {
    color: #fff;
    align-items: center;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    padding-left: 0;
    font-size: 1.125rem;
    display: flex;
  }

  .uui-navbar07_dropdown-toggle-2:hover {
    color: #de76e4;
  }

  .html-embed-5 {
    width: 150px;
    padding-top: 0;
    display: block;
  }

  .column-15 {
    padding-left: 2rem;
  }

  .text-block-12 {
    line-height: 40px;
  }

  .grid-4 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    grid-template-columns: 1fr 1fr;
  }

  .image-44 {
    width: 270px;
  }

  .image-45 {
    width: 600px;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .container-24 {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .primary-button {
    margin-right: 10px;
    display: inline-block;
  }

  .hero-overlay {
    padding: 40px 20px;
  }

  .centered-container {
    text-align: center;
    flex-direction: column;
    height: auto;
    margin-top: -128px;
    margin-left: 0;
    display: flex;
    position: static;
  }

  .final {
    padding: 3px 20px 22px;
  }

  .footer-image {
    object-fit: contain;
  }

  .sticky-nav {
    position: relative;
  }

  .nav-grid {
    text-align: center;
  }

  .feature-section {
    padding: 40px 20px;
  }

  .flex-container {
    flex-direction: column;
  }

  .feature-image-mask {
    margin-right: 0;
  }

  .feature-image {
    margin-left: auto;
    margin-right: auto;
  }

  .cards-section {
    margin-top: 42px;
    padding: 40px 20px;
  }

  .cards-grid-container {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    align-self: stretch;
    max-width: none;
  }

  .call-to-action {
    padding: 40px 20px;
  }

  .secondary-heading {
    text-align: left;
    width: auto;
    margin: 19px 0 20px;
    padding-top: 0;
    padding-left: 0;
    line-height: 70px;
    display: block;
  }

  .subheading {
    position: relative;
    bottom: 0;
  }

  .background-video-2 {
    width: 568px;
  }

  .navbar {
    background-image: url("../images/NEW-HEADER_4.jpg");
    background-position: 0 0;
    background-size: auto;
    margin-bottom: 0;
  }

  .centered-co {
    padding: 40px 20px;
  }

  .hero-image-mask {
    order: -1;
    margin-left: 0;
    margin-right: 0;
  }

  .image {
    width: 160px;
  }

  .image-2 {
    width: 160px;
    margin-top: 15px;
    margin-left: 180px;
  }

  .image-3 {
    width: 160px;
  }

  .heading {
    text-align: center;
    margin-bottom: 20px;
    margin-left: 10px;
    margin-right: 10px;
    line-height: 100px;
    position: relative;
    inset: 0% 0% 0;
  }

  .column {
    order: -1;
    margin-top: 40px;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .container-2 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .file {
    flex-direction: column;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    align-self: stretch;
    max-width: none;
  }

  .paragraph-5 {
    text-align: center;
    padding-top: 11px;
    line-height: 20px;
  }

  .container-3 {
    margin-top: 77px;
    padding-right: 0;
  }

  .subheading-2 {
    align-self: auto;
    padding-left: 33px;
    padding-right: 0;
    font-size: 14px;
  }

  .image-5 {
    width: 175px;
  }

  .image-6 {
    width: 1750px;
    margin-top: 18px;
  }

  .block-1 {
    justify-content: center;
    align-items: center;
    margin-right: 0;
  }

  .block-2 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    margin-left: 0;
    display: flex;
  }

  .block-4 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 0;
    display: flex;
  }

  .div-block-5 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .html-embed {
    top: 40%;
  }

  .hero-overlay-2 {
    padding: 0 20px;
  }

  .columns {
    flex-direction: column;
    order: 1;
    justify-content: flex-start;
    align-self: auto;
    align-items: stretch;
    display: flex;
  }

  .link-block {
    width: 175px;
    margin-left: 0;
  }

  .section-2 {
    flex-direction: column;
  }

  .image-11 {
    margin-right: 0;
    padding-bottom: 13px;
  }

  .div-block-8 {
    flex-direction: column;
    order: 1;
    justify-content: center;
    margin-top: -2px;
    margin-left: 0;
    display: flex;
  }

  .section-3 {
    background-image: none;
    flex-flow: column;
    justify-content: center;
    width: auto;
    height: 500px;
    margin-top: 0;
    margin-bottom: 88px;
    display: flex;
  }

  .text-block-4 {
    margin-top: -1px;
    margin-bottom: 0;
    font-size: 40px;
    line-height: 45px;
  }

  .text-block-5 {
    padding-top: 14px;
    font-size: 14px;
    line-height: 20px;
  }

  .image-15 {
    width: 250px;
  }

  .section-4 {
    margin-top: 8px;
  }

  .image-16 {
    width: 500px;
  }

  .section-5 {
    margin-left: 65px;
  }

  .link-block-2 {
    margin-right: 0;
  }

  .column-2 {
    flex-direction: column;
    align-items: center;
    margin-top: 26px;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .image-20 {
    width: auto;
    height: 280px;
    margin-top: 22px;
    display: block;
  }

  .header {
    background-image: none;
    flex-flow: column;
    justify-content: center;
    width: auto;
    height: 500px;
    margin-top: 0;
    margin-bottom: 88px;
    display: flex;
  }

  .text-block-6,
  .text-block-9 {
    margin-top: -1px;
    margin-bottom: 0;
    font-size: 40px;
    line-height: 45px;
  }

  .text-block-10 {
    padding-top: 14px;
    font-size: 14px;
    line-height: 20px;
  }

  .navbar-no-shadow-container {
    padding-bottom: 20px;
  }

  .navbar-brand {
    padding-left: 0;
  }

  .nav-menu-2 {
    flex-direction: column;
    padding-bottom: 30px;
    padding-left: 0;
  }

  .nav-link-3 {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .nav-dropdown-toggle {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .mobile-margin-top-10 {
    margin-top: 10px;
  }

  .navbar-brand-three {
    padding-left: 0;
  }

  .nav-menu-three {
    border-radius: 20px;
    flex-direction: column;
    padding-bottom: 30px;
  }

  .nav-menu-block {
    flex-direction: column;
  }

  .nav-link-accent {
    margin-right: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .navbar-logo-left-container {
    max-width: 100%;
  }

  .nav-menu-two {
    border-radius: 20px;
    flex-direction: column;
    padding-bottom: 30px;
  }

  .nav-divider {
    width: 200px;
    max-width: 100%;
    height: 1px;
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .header-1 {
    background-image: none;
    flex-flow: column;
    justify-content: center;
    width: auto;
    height: auto;
    max-height: 50%;
    margin-top: 140px;
    margin-bottom: 140px;
    padding-top: 20px;
    display: flex;
  }

  .big-bubble {
    height: auto;
    display: none;
    overflow: auto;
  }

  .copy-header {
    margin-top: -1px;
    margin-bottom: 0;
    font-size: 40px;
    line-height: 45px;
  }

  .small-bubbles {
    margin-top: auto;
  }

  .column-9 {
    padding-left: 20px;
  }

  .section-19 {
    margin-left: auto;
    margin-right: auto;
  }

  .paragraph-12 {
    width: 100%;
    padding-left: 40px;
    padding-right: 40px;
  }

  .uui-navbar07_container {
    justify-content: center;
    margin-left: 0;
    margin-right: 0;
  }

  .uui-navbar07_dropdown-link-list {
    grid-row-gap: 0.5rem;
    max-width: none;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .uui-navbar07_link,
  .uui-navbar07_dropdown-toggle {
    font-size: 1rem;
  }

  .uui-navbar07_component {
    min-height: 4.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .uui-navbar07_menu {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .text-block-11 {
    white-space: normal;
    line-height: 40px;
  }

  .grid-3 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .section-4-copy {
    margin-top: 8px;
  }

  .image-40 {
    width: 250px;
  }

  .image-41 {
    width: 500px;
  }

  .footer-dark {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .uui-navbar07_link-2,
  .uui-navbar07_dropdown-toggle-2 {
    font-size: 1rem;
  }

  .text-block-12 {
    white-space: normal;
    line-height: 40px;
  }

  .grid-4 {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
  }

  .image-44 {
    width: 250px;
  }

  .image-45 {
    width: 500px;
  }
}

@media screen and (max-width: 479px) {
  .primary-button {
    object-fit: fill;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 0;
    display: inline-block;
  }

  .centered-container {
    text-align: center;
    height: auto;
    margin-top: auto;
    margin-left: 10px;
    margin-right: 10px;
    display: inline-block;
  }

  .final {
    text-align: left;
    max-width: 100%;
    padding: 60px 20px 0;
  }

  .footer-flex-container {
    flex-direction: column;
  }

  .footer-logo-link {
    height: 60px;
  }

  .footer-heading {
    margin-top: 20px;
  }

  .sticky-nav {
    padding: 0;
  }

  .nav-grid {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: 100px;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
  }

  .nav-logo-link {
    border-top: 1px #c4c4c4;
    display: inline-block;
  }

  .nav-link {
    border-top: 1px solid #c4c4c4;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .cards-section {
    margin-left: 10px;
    margin-right: 10px;
  }

  .cards-grid-container {
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .secondary-heading {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: auto;
    font-size: 50px;
    line-height: 60px;
    display: inline;
  }

  .subheading {
    margin-left: 20px;
    margin-right: 20px;
    position: relative;
  }

  .text-block {
    text-align: center;
    font-size: 24px;
    line-height: 28px;
  }

  .paragraph-2 {
    margin-bottom: 40px;
  }

  .heading-3 {
    text-align: center;
    margin-bottom: 0;
    line-height: 22px;
  }

  .secondary-button {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .content {
    text-align: left;
  }

  .background-video-2 {
    width: auto;
    height: auto;
  }

  .split-container {
    text-align: left;
  }

  .nav-link-2 {
    font-family: Larsseit, sans-serif;
    font-weight: 300;
  }

  .icon {
    color: #fff;
  }

  .menu-button,
  .menu-button.w--open {
    background-color: #000;
  }

  .nav-menu {
    background-color: #000;
    display: block;
  }

  .div-block {
    height: auto;
  }

  .image {
    width: 110px;
    max-width: 50%;
    margin-top: 0;
    display: block;
  }

  .image-2 {
    width: 110px;
    margin-top: -9px;
    margin-left: 136px;
    display: block;
  }

  .image-3 {
    width: 110px;
    height: 300px;
    margin-bottom: 0;
    display: block;
  }

  .heading {
    text-align: center;
    padding-top: 0;
    font-size: 70px;
    line-height: 90px;
    position: relative;
    inset: 0% 0% auto;
  }

  .column {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: row;
    flex: 0 auto;
    order: -1;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: flex-start;
    align-self: flex-start;
    align-items: flex-start;
    margin-top: -591px;
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 73px;
    display: flex;
  }

  .container-2 {
    text-align: left;
    justify-content: center;
    align-self: center;
    display: flex;
  }

  .file {
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .paragraph-5 {
    width: 300px;
    padding-top: 0;
    font-size: 14px;
  }

  .container-3 {
    margin-top: -200px;
    padding-left: 33px;
    transition: opacity 0.2s;
  }

  .subheading-2 {
    text-align: center;
    padding-left: 0;
    font-size: 16px;
  }

  .image-5 {
    margin-bottom: 10px;
  }

  .image-6 {
    width: 150px;
    margin-top: auto;
    margin-bottom: 10px;
    margin-left: 0;
  }

  .html-embed {
    width: 100%;
    height: 20%;
    display: none;
    position: sticky;
    top: 0%;
    overflow: visible;
  }

  .hero-overlay-2 {
    width: auto;
  }

  .background-video-3 {
    z-index: -10;
    display: block;
  }

  .columns {
    flex-direction: column;
    margin-top: 614px;
    display: block;
  }

  .link-block {
    justify-content: center;
    align-self: center;
    align-items: center;
  }

  .text-block-2 {
    text-align: center;
  }

  .section-2 {
    max-width: 100%;
  }

  .text-block-3 {
    text-align: center;
  }

  .div-block-8 {
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .section-3 {
    margin-bottom: -228px;
  }

  .text-block-4 {
    font-size: 30px;
    line-height: 40px;
  }

  .image-15 {
    width: 200px;
  }

  .image-16 {
    width: 320px;
  }

  .image-17 {
    opacity: 0;
    margin-left: 217px;
  }

  .section-5 {
    width: 280px;
    margin-left: 0;
  }

  .image-18 {
    opacity: 1;
    margin-right: -497px;
  }

  .column-2 {
    justify-content: center;
    padding-left: 15px;
    display: block;
  }

  .image-20 {
    height: auto;
    margin-top: -31px;
  }

  .html-embed-2 {
    margin-bottom: 31px;
    padding-bottom: 10px;
  }

  .start-asking {
    display: flex;
    overflow: visible;
  }

  .header {
    justify-content: flex-start;
    height: auto;
    margin-top: 60px;
    margin-bottom: 0;
  }

  .text-block-6 {
    margin-top: 0;
    padding-bottom: 20px;
    font-size: 40px;
    line-height: 40px;
  }

  .paragraph-6 {
    width: auto;
    margin-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 16px;
  }

  .image-21 {
    object-fit: cover;
    object-position: 50% 50%;
    width: auto;
    height: 250px;
    display: block;
    overflow: visible;
  }

  .heading-5 {
    justify-content: flex-start;
    width: auto;
    font-size: 24px;
    line-height: 30px;
    display: flex;
  }

  .image-22 {
    width: 100%;
    margin-bottom: 0;
    padding-top: 60px;
    display: none;
  }

  .columns-2 {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-top: 0;
  }

  .paragraph-7 {
    width: auto;
    font-size: 14px;
    line-height: 20px;
  }

  .column-4 {
    align-items: flex-start;
    padding-left: 20px;
    padding-right: 20px;
  }

  .column-3 {
    align-items: flex-start;
    margin-bottom: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .text-block-7 {
    font-size: 12px;
    line-height: 18px;
  }

  .ask-answer-connect {
    margin-top: -100px;
  }

  .heading-6 {
    font-size: 38px;
  }

  .html-embed-3 {
    margin-bottom: 20px;
  }

  .section-10 {
    border-radius: 32px;
    flex-direction: column;
    width: auto;
    height: auto;
    margin-top: -90px;
    margin-left: 28px;
    margin-right: 28px;
    padding-top: 40px;
    padding-bottom: 40px;
    padding-left: 0;
  }

  .text-block-8 {
    justify-content: center;
    width: auto;
    margin-bottom: 0;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 20px;
    line-height: 30px;
    display: flex;
  }

  .column-5 {
    justify-content: center;
  }

  .column-6 {
    display: none;
  }

  .columns-7 {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    margin-top: 0;
  }

  .ask-answer-connect-2 {
    margin-top: -100px;
  }

  .section-12 {
    overflow: hidden;
  }

  .section-13 {
    max-width: 100%;
    padding-top: 40px;
  }

  .text-block-9 {
    font-size: 30px;
    line-height: 40px;
  }

  .columns-9 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 52.4052%;
    display: flex;
  }

  .container-9 {
    align-items: center;
    display: flex;
  }

  .none {
    mix-blend-mode: normal;
    width: 200px;
    max-width: 200px;
    height: 200px;
  }

  .heading-7 {
    width: 250px;
  }

  .paragraph-8 {
    width: 100%;
  }

  .columns-8 {
    flex-direction: column;
    align-items: center;
  }

  .popup-james-lo {
    z-index: 1;
    clear: none;
    -webkit-text-fill-color: inherit;
    background-color: #0000;
    background-clip: border-box;
    align-self: auto;
    width: 0;
    max-width: 31%;
    height: 100vh;
    display: none;
    position: absolute;
    inset: 0% auto auto 0%;
  }

  .pop-up {
    flex-direction: column;
    width: 90%;
    display: flex;
    top: -10%;
  }

  .name {
    text-align: center;
    width: auto;
    height: auto;
    font-size: 40px;
    line-height: 40px;
    overflow: visible;
  }

  .close,
  .twitter-jake2 {
    display: block;
  }

  .section-14 {
    display: flex;
  }

  .popup-bobby {
    background-color: #0000;
    max-width: 100%;
    display: none;
    position: absolute;
    top: 394px;
  }

  .popup-nikki {
    background-color: #0000;
    max-width: 100%;
    display: none;
    position: absolute;
    top: 740px;
  }

  .popup-raquel {
    background-color: #0000;
    max-width: 100%;
    height: 100vh;
    display: none;
    position: absolute;
    inset: 128% 0% 0%;
  }

  .column-7 {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: block;
  }

  .popup-jake {
    background-color: #0000;
    max-width: 100%;
    display: none;
    position: absolute;
    top: 1553px;
  }

  .popup-sophia {
    background-color: #0000;
    max-width: 100%;
    display: none;
    position: absolute;
    top: 1877px;
  }

  .popup-salih {
    background-color: #0000;
    max-width: 100%;
    position: absolute;
    top: 2308px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .nav-menu-2 {
    background-color: #000;
    flex-direction: column;
  }

  .nav-button-wrapper {
    width: auto;
  }

  .menu-button-2.w--open {
    background-color: #000;
  }

  .container-10 {
    max-width: none;
  }

  .nav-menu-three,
  .nav-menu-two {
    flex-direction: column;
  }

  .popup-james-2 {
    position: absolute;
  }

  .popup-3 {
    background-color: #0000;
    display: none;
    position: absolute;
  }

  .twiter-icon {
    display: none;
  }

  .header-1 {
    justify-content: flex-start;
    align-items: center;
    max-width: 410px;
    height: 50vh;
    margin-top: 0;
    margin-bottom: 60px;
  }

  .big-bubble {
    width: 260px;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .copy-header {
    z-index: 1;
    margin-top: -270px;
    padding-top: 0;
    font-size: 40px;
    font-weight: 300;
    line-height: 40px;
    position: relative;
  }

  .image-37 {
    flex: 0 auto;
    margin-top: -199px;
    padding-top: 0;
    display: none;
  }

  .small-bubbles {
    z-index: auto;
    object-fit: scale-down;
    object-position: 50% 50%;
    width: auto;
    margin-top: 0;
    display: block;
    position: static;
    overflow: visible;
  }

  .container-20 {
    max-width: 100%;
  }

  .new-boton-copy-copy {
    margin-bottom: 20px;
  }

  .image-38 {
    display: block;
  }

  .column-9 {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
  }

  .test {
    object-fit: fill;
    object-position: 0% 50%;
    display: none;
  }

  .heading-9 {
    width: 100%;
    font-size: 25px;
    line-height: 40px;
  }

  .button-6-copy {
    margin-top: 10px;
  }

  .block {
    flex-direction: column;
    margin-bottom: 60px;
  }

  .column-10 {
    flex-direction: column;
    order: -1;
    align-items: center;
    height: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .container-12 {
    margin-top: 0;
  }

  .paragraph-10 {
    width: 100%;
    padding-top: 0;
  }

  .section-19 {
    flex-direction: column;
    align-items: center;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 10px;
    display: flex;
  }

  .columns-10 {
    flex-direction: column;
  }

  .column-11 {
    padding-left: 0;
    padding-right: 0;
  }

  .image-36 {
    width: 90%;
  }

  .heading-14 {
    font-size: 30px;
  }

  .heading-15 {
    font-size: 25px;
  }

  .paragraph-13 {
    width: 100%;
  }

  .mentors-and-peers {
    background-position: 50% 0;
    max-width: 100%;
    height: auto;
    max-height: none;
    margin-top: 100px;
    padding: 20px 10px;
  }

  .heading-13 {
    margin-top: 10px;
    font-size: 30px;
  }

  .paragraph-12 {
    width: auto;
    margin-bottom: 40px;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 100;
  }

  .container-21 {
    max-width: 100%;
  }

  .uui-logo_component {
    justify-content: center;
  }

  .uui-navbar07_container {
    flex: 1;
    justify-content: center;
    margin-left: 0;
    margin-right: 0;
  }

  .menu-icon_line-bottom {
    background-color: #fff;
    border: 1px #000;
  }

  .menu-icon_line-top {
    background-color: #fff;
    border: 1px #fff;
  }

  .menu-icon_line-middle {
    background-color: #fff;
  }

  .uui-navbar07_component {
    justify-content: space-between;
    min-width: 100%;
  }

  .uui-styleguide_logomark-bg {
    background-image: none;
  }

  .uui-navbar07_dropdown-link {
    padding-left: 0;
  }

  .uui-logo_logotype {
    max-width: 40%;
  }

  .html-embed-4 {
    margin-bottom: 31px;
    padding-bottom: 10px;
  }

  .column-13 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 200px;
    margin-bottom: 40px;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .chatbot-header {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 100%;
  }

  .paragraph-14 {
    margin-top: 0;
    margin-bottom: 10px;
    padding-top: 20px;
    font-size: 14px;
    line-height: 20px;
  }

  .lottie-animation-4 {
    width: 300vw;
    max-width: 100vw;
    margin-left: 0;
    padding-right: 0;
  }

  .image-39 {
    width: 80%;
    display: block;
  }

  .paragraph {
    width: 500.789vw;
    max-width: 80%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-16 {
    font-size: 24px;
    line-height: 30px;
  }

  .text-block-11 {
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 80%;
    max-width: 80%;
    margin-bottom: 10px;
    font-size: 35px;
    line-height: 40px;
    display: flex;
  }

  .menu-icon-copy {
    min-width: 30px;
  }

  .container-14 {
    flex-flow: column wrap;
    place-content: stretch flex-start;
    align-items: flex-start;
    max-width: 100%;
    max-height: 100%;
    margin-bottom: 0;
  }

  .menu-icon {
    min-width: 30px;
  }

  .our-products {
    max-width: 100vw;
    margin-top: 0;
    margin-bottom: 40px;
    padding-top: 40px;
    overflow: hidden;
  }

  .grid-3 {
    grid-column-gap: 5px;
    grid-row-gap: 16px;
    flex-flow: column;
    flex: 0 auto;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    place-content: stretch center;
    place-items: center;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .image-40 {
    width: 200px;
  }

  .image-41 {
    width: 320px;
  }

  .footer-dark {
    width: 248.516vw;
    max-width: 100vw;
  }

  .container-22 {
    max-width: none;
  }

  .html-embed-5 {
    margin-bottom: 31px;
    padding-bottom: 10px;
  }

  .column-15 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 200px;
    margin-bottom: 40px;
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .paragraph-16 {
    margin-top: 0;
    margin-bottom: 10px;
    padding-top: 20px;
    font-size: 14px;
    line-height: 20px;
  }

  .image-43 {
    width: 80%;
    display: block;
  }

  .paragraph-18 {
    width: 500.789vw;
    max-width: 80%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .heading-17 {
    font-size: 24px;
    line-height: 30px;
  }

  .text-block-12 {
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 80%;
    max-width: 80%;
    margin-bottom: 10px;
    font-size: 35px;
    line-height: 40px;
    display: flex;
  }

  .container-23 {
    flex-flow: column wrap;
    place-content: stretch flex-start;
    align-items: flex-start;
    max-width: 100%;
    max-height: 100%;
    margin-bottom: 0;
  }

  .grid-4 {
    grid-column-gap: 5px;
    grid-row-gap: 16px;
    flex-flow: column;
    flex: 0 auto;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    place-content: stretch center;
    place-items: center;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

  .image-44 {
    width: 200px;
  }

  .image-45 {
    width: 320px;
  }

  .container-24 {
    max-width: none;
  }
}

#w-node-_732e2b49-69af-8a4d-e47c-30364c566f08-16784fa7,
#w-node-_732e2b49-69af-8a4d-e47c-30364c566f0f-16784fa7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_07e56bef-0426-2e8f-ffea-632546b101bd-b25828a8 {
  grid-area: Area;
}

#w-node-_07e56bef-0426-2e8f-ffea-632546b101be-b25828a8,
#w-node-_07e56bef-0426-2e8f-ffea-632546b101bf-b25828a8,
#w-node-_07e56bef-0426-2e8f-ffea-632546b101c0-b25828a8,
#w-node-_07e56bef-0426-2e8f-ffea-632546b101c1-b25828a8,
#w-node-_07e56bef-0426-2e8f-ffea-632546b101c2-b25828a8,
#w-node-_9d9a8dad-af19-9677-a173-155ca25eb913-125bcc28,
#w-node-_9d9a8dad-af19-9677-a173-155ca25eb91d-125bcc28,
#w-node-_9d9a8dad-af19-9677-a173-155ca25eb924-125bcc28,
#w-node-_9d9a8dad-af19-9677-a173-155ca25eb92b-125bcc28,
#w-node-_9d9a8dad-af19-9677-a173-155ca25eb935-125bcc28,
#w-node-_9d9a8dad-af19-9677-a173-155ca25eb93c-125bcc28,
#w-node-_9d9a8dad-af19-9677-a173-155ca25eb943-125bcc28 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 767px) {
  #w-node-_732e2b49-69af-8a4d-e47c-30364c566f12-16784fa7,
  #w-node-_732e2b49-69af-8a4d-e47c-30364c566f14-16784fa7,
  #w-node-_09532e38-998f-1aa7-80de-2c85124184a0-16784fa7,
  #w-node-_09532e38-998f-1aa7-80de-2c85124184a2-16784fa7 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_732e2b49-69af-8a4d-e47c-30364c566f08-16784fa7,
  #w-node-_732e2b49-69af-8a4d-e47c-30364c566f0f-16784fa7,
  #w-node-_09532e38-998f-1aa7-80de-2c8512418496-16784fa7,
  #w-node-_09532e38-998f-1aa7-80de-2c851241849d-16784fa7 {
    grid-column: span 1 / span 1;
  }

  #w-node-_9d9a8dad-af19-9677-a173-155ca25eb914-125bcc28 {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: auto;
  }
}

@font-face {
  font-family: "Larsseit";
  src: url("../fonts/Larsseit-ThinItalic.otf") format("opentype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Larsseit";
  src: url("../fonts/Larsseit-Bold.otf") format("opentype"),
    url("../fonts/Larsseit-ExtraBold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Larsseit";
  src: url("../fonts/Larsseit-ExtraBoldItalic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Larsseit";
  src: url("../fonts/Larsseit-MediumItalic.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Larsseit";
  src: url("../fonts/Larsseit-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Larsseit";
  src: url("../fonts/Larsseit-LightItalic.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Larsseit";
  src: url("../fonts/Larsseit-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Larsseit";
  src: url("../fonts/Larsseit-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Larsseit";
  src: url("../fonts/Larsseit-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
