:root {
  --neutrals--night: #121010;
  --haldi--default: #ffc208;
  --neel--lightest: #e2e5f9;
  --haldi--color: #e31c79;
  --neutrals--night-light: #494949;
  --green--default: #2ea843;
  --namak--default: white;
  --color: white;
  --neutrals--night-lighter: #595250;
  --neutrals--night-lightest: #8e837f;
  --neutrals--stone-lighter: #f3f2f2;
  --neutrals--night-night: #272222;
  --neutrals--stone-dark: #baada9;
  --neutrals--stone: #d1c8c5;
  --neutrals--stone-light: #e8e4e2;
  --neutrals--stone-lightest: #f7f6f5;
}

.w-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.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;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

h1 {
  color: #fff;
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Roboto Serif, sans-serif;
  font-size: 88px;
  font-weight: 300;
  line-height: 104px;
}

.navbar-no-shadow {
  z-index: 10000;
  background-color: var(--neutrals--night);
  justify-content: space-between;
  align-items: center;
  min-width: 100%;
  position: fixed;
}

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

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

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

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

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

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

.nav-link:focus-visible {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-link[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: .25px;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 20px;
}

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

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

.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 {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

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

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

.button-primary {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  pointer-events: auto;
  color: var(--neutrals--night);
  letter-spacing: 0;
  text-transform: capitalize;
  cursor: pointer;
  background-color: #fff;
  border-radius: 4px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-self: center;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: all .2s;
  display: block;
}

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

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

.button-primary.form {
  text-align: center;
  width: 100%;
  margin-top: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 16px;
}

.menu-button {
  display: none;
}

.body {
  border: 1px none var(--haldi--default);
  background-color: var(--neutrals--night);
  color: var(--neel--lightest);
  text-transform: capitalize;
  font-family: Roboto, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.body.overflow-hidden {
  overflow: hidden;
}

.hero-text-span {
  text-align: left;
  font-family: Roboto Serif, sans-serif;
  font-size: 96px;
  font-style: italic;
  font-weight: 400;
}

.h1 {
  letter-spacing: -4px;
  font-weight: 200;
  position: relative;
}

.text-span-2, .text-span-3 {
  font-style: italic;
  font-weight: 500;
}

.quick-stack {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  object-fit: fill;
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
}

.cell {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
}

.cell-2 {
  justify-content: flex-end;
  align-items: flex-start;
}

.text-block {
  color: var(--neel--lightest);
}

.text-eyebrow-gradient {
  background-image: linear-gradient(225deg, var(--haldi--default), var(--haldi--color));
  -webkit-text-fill-color: transparent;
  mix-blend-mode: multiply;
  -webkit-background-clip: text;
  background-clip: text;
  margin-left: 8em;
  font-size: 24px;
  line-height: 28px;
}

.cell-3 {
  justify-content: flex-start;
  align-items: center;
}

.cell-4, .cell-5 {
  justify-content: center;
  align-items: flex-end;
}

.container {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.button {
  color: #eeebdc;
  text-align: center;
  letter-spacing: .03rem;
  background-color: #000;
  border: .15em solid #0000;
  border-radius: 999rem;
  padding: 1.2rem 1.7rem;
  font-size: 1rem;
  font-weight: 600;
}

.button.is-bright {
  color: #000;
  background-color: #eeebdc;
}

.button.is-bright.is-secondary {
  color: #eeebdc;
  background-color: #0000;
  border-color: #eeebdc;
  font-size: 1rem;
}

.button.is-bright.is-secondary.is-large {
  color: #eee;
}

.section-after-intro-text {
  z-index: 4;
  border: 0px none var(--neutrals--night);
  background-color: var(--neutrals--night);
  color: #eeebdc;
  min-height: 100svh;
  margin-top: 21vh;
  padding-top: 10em;
  padding-bottom: 7.5em;
  position: relative;
  overflow: clip;
}

.page-intro-title-wrapper {
  grid-column-gap: 1vh;
  grid-row-gap: 1vh;
  flex-flow: wrap;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  display: flex;
}

.page-intro-splitscreen-wrapper {
  z-index: 1;
  pointer-events: none;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.page-intro-text-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 100%;
  max-width: none;
  margin-top: -5vh;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.copy-medium {
  font-size: 1.25rem;
  line-height: 1.4;
}

.image-placeholder {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 1.8em;
  width: 100%;
}

.page-intro-splitscreen-top {
  background-color: var(--neutrals--night);
  width: 100%;
  height: 0%;
}

.page-padding {
  color: var(--haldi--default);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.heading-style-h3 {
  letter-spacing: -.005em;
  text-transform: none;
  font-size: 3rem;
  line-height: 1.1;
}

.h2 {
  color: #eee;
  text-align: center;
  letter-spacing: -.01em;
  -webkit-text-stroke-color: #eee;
  text-transform: none;
  margin-bottom: 0;
  font-family: Roboto Serif, sans-serif;
  font-size: 56px;
  font-style: normal;
  font-weight: 200;
  line-height: 1.2;
}

.h2.tips {
  background-image: linear-gradient(315deg, var(--haldi--default), var(--haldi--color));
  text-align: left;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 10rem;
  font-style: italic;
  line-height: 1;
}

.h2.center {
  text-align: center;
  margin-bottom: 0;
  font-size: 56px;
}

.h2.percentage {
  text-align: right;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 5rem;
  font-style: italic;
  line-height: 1;
}

.h2.left {
  text-align: center;
  margin-bottom: 24px;
}

.h2.clones, .h2.static {
  background-image: linear-gradient(315deg, var(--haldi--default), var(--haldi--color));
  text-align: left;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 10rem;
  font-style: italic;
  line-height: 1;
}

.container-small {
  flex-flow: column;
  width: 100%;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  overflow: visible;
}

.heading-style-h6 {
  color: #eee;
  letter-spacing: .02em;
  -webkit-text-stroke-color: #eee;
  text-transform: uppercase;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.1;
}

.spacer-sm-start {
  min-width: 100%;
  min-height: 100%;
  padding-top: 2.25rem;
}

.spacer-sm-start.spacer-sm-end {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.page-intro-wrapper {
  z-index: 0;
  border: 0px none var(--neutrals--night);
  -webkit-text-fill-color: inherit;
  background-image: linear-gradient(#0000 64%, #fff), url('../images/noise-bg.png');
  background-position: 0 0, 0 0;
  background-repeat: repeat, repeat-y;
  background-size: auto, cover;
  background-clip: border-box;
  justify-content: center;
  align-items: center;
  height: 100svh;
  padding-top: 5em;
  padding-bottom: 5em;
  display: flex;
  position: sticky;
  top: 0;
}

.section-page-intro {
  border-top-style: none;
  border-top-width: 1px;
  border-top-color: var(--neutrals--night);
  border-right-style: none;
  border-right-width: 1px;
  border-right-color: var(--neutrals--night);
  border-bottom-style: none;
  border-bottom-width: 1px;
  border-bottom-color: var(--neutrals--night);
  border-left-style: none;
  border-left-width: 1px;
  border-left-color: var(--neutrals--night);
  background-color: #eee;
  justify-content: center;
  align-items: center;
  min-height: 100svh;
  overflow: clip;
}

.h1-hero {
  color: var(--neutrals--night);
  letter-spacing: -5px;
  text-transform: capitalize;
  margin-left: 1em;
  font-size: 96px;
  font-weight: 300;
  line-height: 1;
}

.h1-hero.is-webdesign {
  margin-left: 1.16em;
  font-size: 7vw;
}

.h1-hero.is-the-great-burnout {
  margin-left: 1em;
}

.h1-hero.is-skills {
  margin-left: .89em;
  font-size: 7vw;
}

.h1-hero.is-state-of-ai-during {
  margin-left: .5em;
}

.h1-hero.is-in-healthcare {
  margin-left: 3em;
}

.made-in-webflow-brand {
  max-width: 2.3em;
}

.page-intro-content {
  z-index: 0;
  max-width: 1140px;
  display: block;
  position: relative;
}

.page-intro-title-small {
  color: var(--neutrals--night);
  text-align: left;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin-left: auto;
  font-size: 16px;
  font-weight: 400;
}

.page-intro-title-small.is-made-in-webflow {
  grid-column-gap: .8em;
  grid-row-gap: .8em;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  margin-right: 5.6em;
  display: flex;
}

.page-intro-title-small.is-best-in-class {
  align-self: flex-start;
  margin-left: 7.9em;
}

.text-align-center {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  text-align: center;
  justify-content: center;
  align-items: center;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.text-align-center.money-pits {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

.spacer-xl-start {
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 2rem;
  display: flex;
}

.page-intro-splitscreen-bottom {
  background-color: var(--neutrals--night);
  width: 100%;
  height: 0%;
}

.text-span-4 {
  text-transform: capitalize;
  font-family: Roboto Serif, sans-serif;
  font-style: italic;
  font-weight: 900;
}

.text-block-2 {
  color: var(--neutrals--night);
  text-align: left;
  text-transform: capitalize;
  line-height: 2vw;
}

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

.text-block-4 {
  color: var(--neutrals--night);
  text-align: left;
  letter-spacing: 0;
  text-transform: none;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}

.gradient-sphere {
  z-index: -1000;
  background-image: linear-gradient(90deg, var(--haldi--default), var(--haldi--color));
  opacity: .59;
  filter: blur(40px);
  border-radius: 50%;
  width: 560px;
  height: 560px;
  position: absolute;
  bottom: auto;
  left: auto;
  transform: translate(0);
}

.gradient-sphere._1 {
  z-index: -100;
  background-image: linear-gradient(90deg, var(--haldi--default), var(--haldi--color));
  opacity: .48;
  filter: blur(32px);
  border-radius: 50%;
  width: 480px;
  height: 480px;
  bottom: -156px;
  left: 400px;
}

.gradient-sphere._2 {
  background-image: linear-gradient(90deg, var(--haldi--default), var(--haldi--default));
  opacity: .5;
  bottom: -59px;
  left: 98px;
}

.gradient-sphere._2-copy {
  z-index: -99;
  background-image: linear-gradient(90deg, var(--haldi--default), var(--haldi--default));
  opacity: .5;
  filter: blur(32px);
  width: 480px;
  height: 480px;
  bottom: -111px;
  left: 56px;
}

.gradient-sphere.for-provider {
  width: 200px;
  height: 200px;
  position: static;
}

.gradient-sphere._3 {
  opacity: .8;
  width: 160px;
  height: 160px;
  bottom: -56px;
  left: 109px;
}

.image {
  z-index: -97;
  max-height: 240px;
  display: none;
  position: absolute;
  bottom: -64px;
  left: 217px;
}

.div-block {
  z-index: -100;
  position: absolute;
  top: 152px;
  bottom: 0;
  left: 158px;
}

.div-block-2 {
  border: 1px solid #000;
  width: 720px;
  height: 720px;
}

.image-2 {
  z-index: -999;
  min-height: 720px;
  position: absolute;
  bottom: -200px;
  left: 240px;
}

.image-2.mobile {
  -webkit-text-fill-color: transparent;
  mix-blend-mode: multiply;
  -webkit-background-clip: text;
  background-clip: text;
  max-width: 880px;
  min-height: 400px;
  max-height: 880px;
  bottom: -83px;
  left: 40px;
}

.image-3 {
  z-index: -98;
  filter: blur(1.5px);
  mix-blend-mode: color-burn;
  position: absolute;
  top: 41px;
  left: 24px;
}

.image-4 {
  position: absolute;
  top: 64px;
  bottom: 0;
  left: 120px;
}

.bold-text {
  background-image: linear-gradient(225deg, var(--haldi--default), var(--haldi--color));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Roboto, sans-serif;
  font-style: normal;
  font-weight: 700;
}

.cursor-wrapper {
  z-index: 9999;
  background-color: #210e2c00;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
  position: relative;
}

.cursor {
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  transition: opacity .3s;
  display: flex;
  position: relative;
}

.dot-white {
  z-index: 20;
  filter: blur(3px);
  background-color: #fff;
  border-radius: 50px;
  width: 20px;
  height: 20px;
  position: absolute;
}

.glow-white {
  z-index: 9;
  filter: brightness(141%) blur(7px);
  background-color: #fff;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  position: absolute;
  inset: auto;
}

.glow-purple {
  z-index: 0;
  background-color: var(--haldi--color);
  filter: brightness(188%) blur(15px);
  background-image: radial-gradient(circle, #8258a4 72%, #fff);
  border-radius: 50%;
  width: 48px;
  height: 40px;
  margin-top: -9px;
  margin-left: -8px;
  transition: transform .2s;
  position: absolute;
  inset: auto;
  transform: rotate(360deg);
}

.glow-blue {
  z-index: 0;
  background-image: radial-gradient(circle farthest-corner at 50% 50%, var(--haldi--default), var(--haldi--color) 33%, white);
  filter: brightness(200%) blur(15px);
  border-radius: 50%;
  width: 51px;
  height: 60px;
  margin-bottom: -8px;
  margin-right: -6px;
  position: absolute;
  inset: auto;
  transform: rotate(360deg);
}

.text-block-5 {
  text-transform: uppercase;
  display: inline-block;
}

.html-embed {
  width: 20px;
  height: 20px;
}

.hero-image_wrapper {
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.text-block-6 {
  margin-left: 8px;
}

.headline-magic-cursor-outlines {
  z-index: 10;
  color: #fff0;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #7125ff85;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 10vw;
  line-height: 10vw;
  position: absolute;
  inset: -5% auto auto -2%;
}

.button-clone-dark {
  color: #fff;
  background-color: #2553f8;
  border-radius: 100px;
  padding: 11px 17px 10px;
  font-weight: 400;
  text-decoration: none;
  transition: all .2s;
}

.button-clone-dark:hover {
  background-color: #3560f8;
}

.button-text-wrapper {
  display: flex;
}

.headline-magic-cursor {
  z-index: 11;
  color: #fff;
  margin-bottom: 30px;
  font-size: 10vw;
  font-weight: 800;
  line-height: 10vw;
  display: block;
  position: relative;
}

.heading-wrapper {
  z-index: 80;
  padding-top: 100px;
  padding-left: 60px;
  display: none;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.hero-circle-bubble-ani {
  background-image: radial-gradient(circle at 50% 0, #8f31fe, #2553f8 15%, #060606 40%);
  border-radius: 50%;
  width: 90vw;
  height: 90vw;
  position: absolute;
  inset: 15vw auto auto -20vw;
  box-shadow: 35px 35px 60px 6px #ffffff40;
}

.hero-circle-bubble-ani.ani-floating-element {
  z-index: 1;
}

.hero-circle-bubble-ani.ani-floating-element.contact {
  background-image: radial-gradient(circle at 50% 0, #b576ff, #1539b894 17%, #060606 33%);
  inset: auto auto -60vw -38vw;
  box-shadow: -40px -29px 60px 16px #aa76f8a1;
}

.hero-circle-bubble-ani.ani-floating-element.contact.small {
  box-shadow: none;
  filter: blur(15px);
  background-image: linear-gradient(151deg, #b576ff00, #1539b800 25%, #944effa1);
  width: 25vw;
  height: 25vw;
  bottom: 25vw;
  left: 74vw;
}

.headline-wrapper {
  position: relative;
}

.label-only-desktop {
  background-color: #fff;
  width: auto;
  height: 40px;
  display: none;
}

.hero-image_wrapper-small {
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.section-2 {
  background-image: url('../images/hero-img.jpg');
  background-position: 0 0;
  background-size: cover;
  min-height: 100vh;
  display: block;
  position: relative;
  overflow: hidden;
}

.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;
}

.navbar {
  background-color: #ddd0;
}

.brand {
  box-sizing: border-box;
  object-fit: fill;
  height: 100%;
  margin-top: -4px;
}

.image-5 {
  height: 100%;
  padding-top: 12px;
}

.grid {
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
}

.image-6 {
  max-width: 80%;
  font-size: 14px;
}

.v-button {
  z-index: 1;
  color: var(--neutrals--night-light);
  text-align: center;
  -webkit-text-stroke-color: var(--neutrals--night);
  cursor: pointer;
  background-color: #fff0;
  align-self: center;
  min-width: 80px;
  margin-bottom: 10svh;
  margin-left: auto;
  margin-right: auto;
  font-family: Material Symbols Rounded, sans-serif;
  font-size: 40px;
  font-weight: 400;
  line-height: 80px;
  transition: flex-grow .2s;
  position: fixed;
  inset: auto auto 0%;
}

.v-button:hover {
  color: var(--neutrals--night);
  border-radius: 50%;
  max-width: 40px;
  font-size: 48px;
}

.v-button.w--current {
  transition-property: none;
}

.h2-text-span {
  background-color: var(--neel--lightest);
  background-image: linear-gradient(225deg, var(--haldi--default), var(--haldi--color));
  color: var(--haldi--default);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Roboto Serif, sans-serif;
  font-style: italic;
  font-weight: 500;
}

.h2-text-span.max {
  background-image: linear-gradient(180deg, var(--green--default), var(--haldi--default)), linear-gradient(225deg, var(--haldi--default), var(--haldi--color));
  font-size: 104px;
}

.provider-body {
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  min-height: 200px;
}

.cell-6, .cell-7, .cell-8, .cell-9 {
  justify-content: center;
  align-items: center;
}

.provider-sphere {
  z-index: -1000;
  background-color: var(--namak--default);
  opacity: 1;
  filter: blur(5px);
  background-image: none;
  border: 0 #000;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  position: static;
  bottom: -120px;
  left: 337px;
  transform: translate(0);
}

.provider-sphere._1 {
  z-index: -100;
  background-image: linear-gradient(90deg, var(--haldi--default), var(--haldi--color));
  opacity: .48;
  border-radius: 50%;
  bottom: -118px;
  left: 386px;
}

.provider-sphere._2 {
  background-image: linear-gradient(90deg, var(--haldi--default), var(--haldi--default));
  opacity: .5;
  bottom: -59px;
  left: 98px;
}

.provider-sphere._2-copy {
  z-index: -99;
  background-image: linear-gradient(90deg, var(--haldi--default), var(--haldi--default));
  opacity: .5;
  bottom: -59px;
  left: 184px;
}

.provider-sphere.for-provider {
  width: 200px;
  height: 200px;
  position: static;
}

.provider-sphere.unactivated {
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: var(--neel--lightest);
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: var(--neel--lightest);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: var(--neel--lightest);
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: var(--neel--lightest);
  filter: none;
  background-color: #0000;
  background-image: none;
}

.provider-sphere.animated {
  aspect-ratio: auto;
  opacity: 1;
  filter: blur(12px);
  background-image: none;
  border: 2px dashed #fff;
}

.quick-stack-2 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  text-align: left;
  max-width: 100%;
}

.provider-sphere-copy {
  z-index: -1000;
  border-top-style: dashed;
  border-top-width: 1px;
  border-top-color: var(--neel--lightest);
  border-right-style: dashed;
  border-right-width: 1px;
  border-right-color: var(--neel--lightest);
  border-bottom-style: dashed;
  border-bottom-width: 1px;
  border-bottom-color: var(--neel--lightest);
  border-left-style: dashed;
  border-left-width: 1px;
  border-left-color: var(--neel--lightest);
  opacity: .8;
  background-color: #0000;
  background-image: none;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  position: absolute;
  bottom: auto;
  left: auto;
  transform: translate(0);
}

.provider-sphere-copy._1 {
  z-index: -100;
  background-image: linear-gradient(90deg, var(--haldi--default), var(--haldi--color));
  opacity: .48;
  border-radius: 50%;
  bottom: -118px;
  left: 386px;
}

.provider-sphere-copy._2 {
  background-image: linear-gradient(90deg, var(--haldi--default), var(--haldi--default));
  opacity: .5;
  bottom: -59px;
  left: 98px;
}

.provider-sphere-copy._2-copy {
  z-index: -99;
  background-image: linear-gradient(90deg, var(--haldi--default), var(--haldi--default));
  opacity: .5;
  bottom: -59px;
  left: 184px;
}

.provider-sphere-copy.for-provider {
  width: 200px;
  height: 200px;
  position: static;
}

.provider-sphere-copy.unactivated {
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: var(--neel--lightest);
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: var(--neel--lightest);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: var(--neel--lightest);
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: var(--neel--lightest);
  filter: none;
  background-color: #0000;
  background-image: none;
}

.provider-sphere-copy.animated {
  aspect-ratio: auto;
  background-image: linear-gradient(90deg, var(--haldi--default), var(--haldi--color));
  filter: blur(24px);
  border: 2px dashed #fff;
}

.heading {
  color: #fbf9fc;
  text-align: center;
  margin-bottom: 8px;
  font-size: 130px;
}

.heading.followers {
  text-align: center;
}

.section-ai-answer {
  z-index: 3;
  background-color: var(--neutrals--night);
  color: #eeebdc;
  margin-top: 0;
  padding-top: 10em;
  padding-bottom: 10em;
  position: relative;
  overflow: clip;
}

.image-8 {
  z-index: -2;
  width: 45vw;
  position: absolute;
  inset: 19% auto auto -7%;
}

.div-block-4 {
  height: auto;
}

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

.image-7 {
  z-index: -2;
  width: 52vw;
  position: absolute;
  inset: -4% auto auto 4%;
}

.heading-1 {
  color: #000;
  text-align: left;
  text-transform: none;
  margin-top: 0;
  font-size: 48px;
  line-height: 1.2;
}

.heading-1.highlight {
  font-style: italic;
  font-weight: 600;
}

.image-9 {
  z-index: -1;
  width: 60vw;
  position: absolute;
  inset: 0% auto auto 0%;
}

.grid-2 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
}

.text-block-7 {
  color: #121010;
  letter-spacing: 0;
  -webkit-text-stroke-color: #121010;
  text-transform: none;
  font-size: 24px;
  font-weight: 300;
  line-height: 28px;
}

.photo-container__front-image {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  object-fit: cover;
  object-position: 50% 0%;
  width: 100%;
  height: 100%;
  margin: auto;
}

.link-block__base-image {
  width: 2em;
  max-width: 25px;
}

.card-container--details {
  background-color: var(--namak--default);
  background-image: url('../images/SOAI-PG1.png');
  background-position: 0 0;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 24em;
  min-width: 200px;
  max-width: 450px;
  height: 24em;
  min-height: 200px;
  max-height: 450px;
  padding: 20px;
  display: flex;
  position: relative;
  inset: 0%;
  box-shadow: 3px 0 40px 20px #00000012;
}

.book-container {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  perspective: 2000px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  display: flex;
  position: relative;
}

.shadow {
  transform-origin: 0%;
  background-image: linear-gradient(to right, #0000001a, #fff0 75%);
  width: 5px;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.link-block__hover-image {
  opacity: 0;
  width: 2em;
  max-width: 25px;
  position: absolute;
}

.card-container__photo-container {
  z-index: 2;
  transform-origin: 0%;
  background-color: #fff;
  display: block;
  position: absolute;
  inset: 0%;
  transform: rotate(0);
  box-shadow: -3px 0 40px 20px #00000012;
}

.contacts__link-block {
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  display: flex;
  position: relative;
}

.details__job {
  color: #131313;
  margin-bottom: .5em;
  font-size: 1.5em;
  font-weight: 500;
  line-height: 1.1em;
}

.details__separator {
  background-color: #131313;
  align-self: flex-start;
  width: 40%;
  height: 1px;
  margin-top: .8em;
  margin-bottom: 1em;
}

.details__contacts {
  z-index: 1;
  justify-content: space-between;
  margin-left: -8px;
  display: flex;
  position: relative;
}

.details__name {
  color: #131313;
  font-size: 2.6em;
  font-weight: 500;
  line-height: 1.1em;
}

.photo-container__back-image {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  object-fit: cover;
  transform-style: preserve-3d;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0%;
  right: 0%;
  transform: rotateX(0)rotateY(180deg)rotateZ(0);
}

.main-container__card-container {
  margin: auto;
  position: relative;
}

.page-intro-wrapper-popup-modal {
  z-index: 0;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  border: 1px none var(--neutrals--night-light);
  background-color: var(--neutrals--night);
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 150svh;
  padding: 80px;
  display: block;
  position: static;
  top: 0;
}

.lottie-animation {
  position: static;
  top: 48.547px;
}

.skill {
  margin-bottom: 24px;
}

.progres-bar-2 {
  background-color: #161616;
  border-radius: 90px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: center;
  width: 100px;
  height: 14px;
  margin-right: 8px;
  padding: 4px;
  display: flex;
  position: relative;
}

.progres-bar-2.card-bar {
  color: #fbf9fc;
  background-color: #202020;
  border-radius: 24px;
  width: 100%;
  height: 24px;
}

.progress-bar__content-4 {
  object-fit: fill;
  background-color: #8f00ff;
  border-radius: 1000px;
  width: 18%;
  height: 100%;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  position: static;
  inset: 0% auto auto 0%;
  overflow: visible;
}

.progress-bar__content-4._3 {
  background-color: var(--haldi--default);
  background-image: linear-gradient(225deg, var(--green--default), var(--haldi--default)), linear-gradient(90deg, var(--haldi--default), var(--haldi--color));
  border-radius: 8px;
  width: 94%;
  margin-right: 0;
}

.spacer-sm-start-for-87 {
  padding-top: 24px;
  padding-bottom: 8rem;
}

.spacer-sm-start-for-87.spacer-sm-end {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.h3 {
  color: #eee;
  text-align: center;
  letter-spacing: -.01em;
  -webkit-text-stroke-color: #eee;
  text-transform: none;
  margin-top: 8px;
  margin-bottom: 16px;
  padding-top: 0;
  padding-bottom: 0;
  font-family: Roboto Serif, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 200;
  line-height: 1.4;
}

.h3.tips {
  background-image: linear-gradient(315deg, var(--haldi--default), var(--haldi--color));
  text-align: left;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 10rem;
  font-style: italic;
  line-height: 1;
}

.h3.center {
  text-align: center;
}

.h3.left {
  text-align: left;
  padding-bottom: 0;
}

.body-h3 {
  color: #eee;
  text-align: center;
  letter-spacing: -.01em;
  -webkit-text-stroke-color: #eee;
  text-transform: capitalize;
  margin-bottom: 40px;
  font-family: Roboto, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 200;
  line-height: 1.2;
}

.body-h3.tips {
  background-image: linear-gradient(315deg, var(--haldi--default), var(--haldi--color));
  text-align: left;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 10rem;
  font-style: italic;
  line-height: 1;
}

.body-h3.center {
  text-align: center;
}

.text-span-body-italics {
  font-style: italic;
  font-weight: 300;
}

.div-block-5 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.content-wrapper {
  z-index: 0;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  border: 1px #000;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 0;
  display: flex;
  position: relative;
}

.circles {
  z-index: -99;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: auto;
  margin-top: 56px;
  display: flex;
  position: absolute;
  top: 38%;
  left: 0%;
  right: 0%;
  overflow: visible;
}

.circle {
  border: 1px none var(--haldi--default);
  box-shadow: inset 0 0 60px 0 var(--haldi--default);
  background-image: none;
  border-radius: 100%;
  width: 20vh;
  height: 20vh;
  position: absolute;
}

.circle.logo {
  box-shadow: inset 0 0 60px 0 var(--haldi--default);
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 160px;
  margin-bottom: 0;
  margin-right: 0;
  display: flex;
  position: static;
}

.circle.one {
  background-image: none;
  width: 320px;
  height: 320px;
  bottom: auto;
}

.circle.two {
  align-self: auto;
  width: 640px;
  height: 640px;
  bottom: auto;
}

.circle._120 {
  width: 960px;
  height: 960px;
}

.circle.four {
  width: 1200px;
  height: 1200px;
}

.page-intro-wrapper-copy {
  z-index: 0;
  -webkit-text-fill-color: inherit;
  background-image: linear-gradient(#fff, #0000), url('../images/noise-bg.png');
  background-position: 0 0, 0 0;
  background-repeat: repeat, repeat-y;
  background-size: auto, cover;
  background-clip: border-box;
  justify-content: center;
  align-items: center;
  height: 100svh;
  padding-top: 5em;
  padding-bottom: 5em;
  display: flex;
  position: sticky;
  top: 0;
}

.section-3 {
  border: 1px solid var(--neutrals--night);
  background-color: var(--neutrals--night);
}

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

.body-default {
  color: var(--color);
  text-align: center;
  text-transform: none;
  font-weight: 100;
}

.body-default.left-aligned {
  text-align: center;
  text-transform: none;
}

.body-default.fot-book {
  margin-bottom: 24px;
}

.body-default.black {
  color: var(--neutrals--night);
  font-size: 24px;
  font-weight: 300;
  line-height: 28px;
}

.body-default.left {
  text-align: left;
  font-size: 12px;
  font-style: italic;
  font-weight: 100;
  line-height: 16px;
}

.section-where-is-the-gap {
  z-index: 3;
  background-color: var(--neutrals--night);
  color: #eeebdc;
  margin-top: 0;
  padding-top: 10em;
  padding-bottom: 10em;
  position: relative;
}

.circles-2 {
  z-index: 100;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: auto;
  margin-top: 56px;
  display: flex;
  position: absolute;
  top: 0%;
  left: 0%;
  right: 0%;
  overflow: visible;
}

.main-wrapper {
  width: auto;
  height: 80vh;
  overflow: clip;
}

.circle-2 {
  border: 1px none var(--haldi--default);
  background-image: none;
  border-radius: 100%;
  width: 20vh;
  height: 20vh;
  position: absolute;
  box-shadow: inset 0 0 60px #ffc2087d;
}

.circle-2.two {
  align-self: auto;
  width: 640px;
  height: 640px;
  bottom: auto;
  box-shadow: inset 0 0 60px #ffc20829;
}

.circle-2.one {
  width: 320px;
  height: 320px;
  bottom: auto;
  box-shadow: inset 0 0 60px #ffc20829;
}

.circle-2._120 {
  width: 960px;
  height: 960px;
  box-shadow: inset 0 0 60px #ffc20829;
}

.circle-2.four {
  width: 1200px;
  height: 1200px;
  box-shadow: inset 0 0 60px #ffc20829;
}

.circle-2.logo {
  background-image: none;
  justify-content: center;
  align-items: center;
  width: 160px;
  height: 160px;
  margin-bottom: 0;
  margin-right: 0;
  display: flex;
  position: static;
  box-shadow: inset 0 0 60px #ffc20829;
}

.section-4 {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: auto;
  min-width: 0;
  max-width: none;
  height: 100%;
  padding-top: 0;
  display: block;
  overflow: hidden;
}

.text-eyebrow-gradient-for-book-animation {
  background-image: linear-gradient(90deg, var(--haldi--default), var(--haldi--color));
  -webkit-text-fill-color: transparent;
  mix-blend-mode: multiply;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  padding-left: 0;
  font-size: 24px;
  line-height: 28px;
}

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

.div-block-6 {
  max-width: 320px;
  position: absolute;
  top: 131px;
  left: 51px;
}

.instructions {
  z-index: 9999999;
  cursor: pointer;
  background-color: #0000;
  align-items: flex-start;
  transition: opacity .2s;
  display: flex;
  position: absolute;
  top: 0%;
  left: auto;
  right: 0%;
  overflow: auto;
}

.instructions:hover {
  opacity: .8;
}

.instructions-tab {
  cursor: pointer;
  width: 50px;
  margin-top: 10px;
}

.form {
  margin-bottom: 8px;
}

.pop-up-form {
  text-align: left;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: stretch;
  margin-top: 24px;
  display: flex;
}

.pop-up-text-input {
  border: 1px solid var(--neutrals--night-lighter);
  background-color: var(--neutrals--night-light);
  color: var(--neutrals--night-lightest);
  border-radius: 4px;
  height: 44px;
  margin-bottom: 16px;
  padding: 10px 16px;
  font-size: 15px;
  line-height: 1.4px;
}

.pop-up-text-input:hover {
  background-color: var(--neutrals--night-lighter);
}

.pop-up-text-input:focus {
  border-color: var(--neutrals--stone-lighter);
  background-color: var(--neutrals--night-lighter);
  color: var(--neutrals--stone-lighter);
}

.pop-up-text-input:focus-visible {
  color: var(--neutrals--stone-lighter);
}

.pop-up-text-input[data-wf-focus-visible] {
  color: var(--neutrals--stone-lighter);
}

.pop-up-text-input::placeholder {
  color: #c2cdd8;
}

.pop-up-button {
  color: #fff;
  text-align: center;
  background-color: #272727;
  border-radius: 3px;
  flex: none;
  margin-bottom: 8px;
  padding: 8px 32px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  transition: opacity .2s;
}

.pop-up-button:hover {
  opacity: .8;
}

.pop-up-button:active {
  opacity: 1;
}

.pop-up-back {
  opacity: 1;
  background-color: #ffffff69;
  position: absolute;
  inset: 0%;
}

.pop-up-box {
  background-color: var(--neutrals--night);
  cursor: pointer;
  border-radius: 16px;
  max-width: 420px;
  min-height: 95svh;
  margin: auto 0 auto auto;
  padding: 32px;
  position: relative;
  left: 0;
  right: auto;
}

.container-3 {
  max-width: 100%;
  display: flex;
}

.pop-up-exit-button {
  opacity: .2;
  cursor: pointer;
  transition: opacity .2s;
  position: absolute;
  inset: 20px 20px auto auto;
}

.pop-up-exit-button:hover {
  opacity: .8;
}

.popup-form-error {
  color: #444;
  background-color: #dee5eb;
  border-radius: 6px;
  padding: 16px;
}

.pop-up-form-success {
  color: #33383f;
  background-color: #e9e9e9;
  border-radius: 4px;
  padding: 32px;
  font-size: 16px;
  line-height: 1.4em;
}

.pop-up-wrapper {
  z-index: 10000;
  opacity: 1;
  cursor: pointer;
  object-fit: fill;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  display: none;
  position: fixed;
  inset: 0%;
  overflow: hidden;
}

.pop-up-text-box {
  max-width: 650px;
}

.pop-up-paragraph {
  color: var(--namak--default);
  text-transform: none;
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4em;
}

.text-span-h3 {
  font-style: italic;
  font-weight: 300;
}

.text-span-h3.gradient {
  background-image: linear-gradient(315deg, var(--haldi--default), var(--haldi--color));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 500;
}

.text-eyebrow-gradient-form {
  background-image: linear-gradient(90deg, var(--haldi--default), var(--haldi--color));
  text-transform: uppercase;
  -webkit-text-fill-color: transparent;
  mix-blend-mode: normal;
  -webkit-background-clip: text;
  background-clip: text;
  padding-left: 0;
  font-size: 24px;
  line-height: 28px;
}

.field-label {
  color: var(--namak--default);
  font-weight: 500;
}

.quick-stack-3 {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  object-fit: fill;
  max-width: 720px;
  padding: 8px;
}

.agree-insider {
  background-color: var(--green--default);
  background-image: linear-gradient(225deg, var(--haldi--default), var(--green--default) 46%);
  border-radius: 40px;
  width: 32px;
  height: 32px;
}

.disagree-insider {
  background-color: var(--neutrals--night-light);
  border-radius: 40px;
  width: 32px;
  height: 24px;
}

.section-operational-weapon {
  z-index: 3;
  background-color: var(--neutrals--night);
  color: #eeebdc;
  margin-top: 0;
  padding-top: 10em;
  padding-bottom: 10em;
  position: relative;
  overflow: clip;
}

.cell-for-82 {
  justify-content: center;
  align-items: center;
}

.container-4 {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.section-header {
  width: 100%;
  max-width: 62rem;
  margin-left: auto;
  margin-right: auto;
}

.css_radial-border {
  display: none;
}

.glowing_component {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  display: grid;
}

.glowing_card {
  -webkit-backdrop-filter: blur(100px);
  backdrop-filter: blur(100px);
  background-image: linear-gradient(#abb1d526, #ffffff0d);
  border-radius: 1rem;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-height: 20rem;
  margin-top: auto;
  padding: 40px;
  display: flex;
}

.script_glow-border {
  display: none;
}

.loader-battery_component {
  grid-column-gap: .25rem;
  grid-row-gap: 0px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  align-items: center;
  max-width: 20rem;
  height: 4rem;
  margin-top: 40px;
  display: flex;
  position: relative;
}

.battery-real_power-unit-container {
  grid-column-gap: .375rem;
  border: .2rem solid #0000001c;
  border-radius: .5rem;
  min-width: 90%;
  height: 100%;
  padding: .375rem;
  display: flex;
}

.battery-real_power-unit {
  background-color: var(--haldi--default);
  background-image: linear-gradient(225deg, var(--haldi--default), var(--haldi--color));
  border-radius: .125rem;
  flex: 1;
  height: 100%;
  box-shadow: 0 0 5px 2px #ffc2083b;
}

.battery-real_male {
  background-color: #28272980;
  border-radius: .25rem;
  justify-content: center;
  align-items: center;
  width: .25rem;
  height: .75rem;
  position: static;
  right: -1.35rem;
}

.section-6 {
  background-color: var(--neutrals--night-light);
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
}

.footer-dark {
  background-color: var(--color);
  border-bottom: 1px solid #e4ebf3;
  padding: 40px 30px 80px;
  position: relative;
  overflow: clip;
}

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

.footer-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.footer-content {
  grid-column-gap: 70px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: auto auto 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.title-small {
  color: var(--neutrals--night);
  letter-spacing: 1px;
  -webkit-text-stroke-color: var(--neutrals--night);
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: Roboto, sans-serif;
  font-size: 14px;
  font-weight: 900;
  line-height: 16px;
}

.footer-link {
  color: #1a1b1f;
  margin-top: 12px;
  margin-bottom: 6px;
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
}

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

.footer-social-block {
  justify-content: flex-start;
  align-items: center;
  margin-top: 12px;
  margin-left: -12px;
  display: flex;
}

.footer-social-link {
  margin-left: 12px;
}

.footer-divider {
  background-color: var(--neutrals--night-light);
  background-image: none;
  width: 100%;
  height: 1px;
  margin-top: 70px;
  margin-bottom: 15px;
}

.footer-copyright-center {
  color: var(--neutrals--night-light);
  text-align: left;
  font-size: 14px;
  line-height: 16px;
}

.button-form {
  color: var(--neutrals--night);
  letter-spacing: 0;
  text-transform: capitalize;
  cursor: pointer;
  background-color: #fff;
  border-radius: 4px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: all .2s;
}

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

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

.button-form.form {
  background-image: linear-gradient(225deg, var(--haldi--default), var(--haldi--color));
  text-align: center;
  margin-top: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 16px;
}

.image-10 {
  opacity: .09;
  position: absolute;
  bottom: -165.359px;
  left: -3px;
}

.button-2 {
  color: #000;
  filter: url('../images/');
  justify-content: flex-start;
  align-items: stretch;
  text-decoration: none;
  display: flex;
  position: relative;
}

.svg-filter_embed {
  display: none;
}

.button-2_content-wrap {
  grid-column-gap: .625rem;
  grid-row-gap: .625rem;
  background-color: var(--color);
  border-radius: 3rem;
  justify-content: flex-start;
  align-items: center;
  padding: .25rem .5rem .25rem 1.5rem;
  display: flex;
}

.button-2_arrow-wrapper {
  color: #fff;
  background-color: #000212;
  border-radius: 10rem;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
}

.button_arrow-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.text-block-9 {
  font-family: Roboto, sans-serif;
}

.text-span-5 {
  font-style: normal;
  font-weight: 600;
}

.div-block-8 {
  text-align: center;
}

.card-container--details-2, .card-container--details-3 {
  background-color: #fff;
  background-image: url('../images/SOAI-PG1.png');
  background-position: 0 0;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 24em;
  min-width: 200px;
  max-width: 450px;
  height: 24em;
  min-height: 200px;
  max-height: 450px;
  padding: 20px;
  display: flex;
  position: relative;
  inset: 0%;
  box-shadow: 3px 0 40px 20px #00000012;
}

.cell-22, .cell-34, .cell-35, .cell-36, .cell-39, .cell-41, .cell-42, .cell-45, .cell-48, .cell-52, .cell-54, .cell-57, .cell-59, .cell-71, .cell-87, .cell-89, .cell-103 {
  justify-content: center;
  align-items: center;
}

.section-burnout-battery {
  border-top-style: none;
  border-top-width: 1px;
  border-top-color: var(--neutrals--night);
  border-right-style: none;
  border-right-width: 1px;
  border-right-color: var(--neutrals--night);
  border-bottom-style: none;
  border-bottom-width: 1px;
  border-bottom-color: var(--neutrals--night);
  border-left-style: none;
  border-left-width: 1px;
  border-left-color: var(--neutrals--night);
  background-color: #eee;
  justify-content: center;
  align-items: center;
  min-height: 100svh;
  overflow: clip;
}

.card-container--details-4 {
  background-color: #fcf6f0;
  background-image: url('../images/SOAI-PG1.png');
  background-position: 0 0;
  background-size: contain;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 30em;
  min-width: 200px;
  max-width: 450px;
  height: 30em;
  min-height: 200px;
  max-height: 450px;
  padding: 20px;
  display: flex;
  position: relative;
  inset: 0%;
  box-shadow: 3px 0 40px 20px #00000012;
}

.card-container__photo-container-2 {
  z-index: 2;
  transform-origin: 0%;
  background-color: #fff;
  display: flex;
  position: absolute;
  inset: 0%;
  transform: rotate(0);
  box-shadow: -3px 0 40px 20px #00000012;
}

.main-container__card-container-2 {
  margin-top: auto;
  margin-bottom: auto;
  position: relative;
}

.card-container--details-5 {
  background-color: #fcf6f0;
  background-image: url('../images/SOAI-PG1.png');
  background-position: 0 0;
  background-size: contain;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 30em;
  min-width: 200px;
  max-width: 450px;
  height: 30em;
  min-height: 200px;
  max-height: 450px;
  padding: 20px;
  display: flex;
  position: relative;
  inset: 0%;
  box-shadow: 3px 0 40px 20px #00000012;
}

.section__main-container {
  perspective: 2000px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  height: 100%;
  display: flex;
  position: relative;
}

.card-container__photo-container-3 {
  z-index: 2;
  transform-origin: 0%;
  background-color: #fff;
  display: flex;
  position: absolute;
  inset: 0%;
  transform: rotate(0);
  box-shadow: -3px 0 40px 20px #00000012;
}

.main-container__card-container-3 {
  margin-top: auto;
  margin-bottom: auto;
  position: relative;
}

.container-for-book {
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.card-container--details-6 {
  background-color: #fcf6f0;
  background-image: url('../images/SOAI-PG1.png');
  background-position: 0 0;
  background-size: auto;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 30em;
  min-width: 200px;
  max-width: 450px;
  height: 30em;
  min-height: 200px;
  max-height: 450px;
  padding: 20px;
  display: flex;
  position: relative;
  inset: 0%;
  box-shadow: 3px 0 40px 20px #00000012;
}

.section__main-container-2 {
  perspective: 2000px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  height: 100%;
  display: flex;
  position: relative;
}

.card-container__photo-container-4 {
  z-index: 2;
  transform-origin: 0%;
  background-color: #fff;
  display: flex;
  position: absolute;
  inset: 0%;
  transform: rotate(0);
  box-shadow: -3px 0 40px 20px #00000012;
}

.main-container__card-container-4 {
  margin-top: auto;
  margin-bottom: auto;
  position: relative;
}

.section-7 {
  flex-flow: column;
  align-items: center;
  height: 150svh;
  padding: 80px;
  display: flex;
  position: relative;
}

.card-container--details-7 {
  background-color: #fcf6f0;
  background-image: url('../images/SOAI-PG1.png');
  background-position: 0 0;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 30em;
  min-width: 200px;
  max-width: 450px;
  height: 30em;
  min-height: 200px;
  max-height: 450px;
  padding: 20px;
  display: flex;
  position: relative;
  inset: 0%;
  box-shadow: 3px 0 40px 20px #00000012;
}

.section {
  perspective: 2000px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100vh;
  padding: 0;
  display: flex;
  position: relative;
}

.section.section--foldable-card {
  background-color: var(--neutrals--night);
  perspective: 1000px;
  height: auto;
  padding: 80px 80px 40px;
  font-size: 1vw;
  position: relative;
}

.card-container__photo-container-5 {
  z-index: 2;
  transform-origin: 0%;
  background-color: #fff;
  display: flex;
  position: absolute;
  inset: 0%;
  transform: rotate(0);
  box-shadow: -3px 0 40px 20px #00000012;
}

.main-container__card-container-5 {
  margin-top: auto;
  margin-bottom: auto;
  position: relative;
}

.page-intro-wrapper-popup-modal-copy {
  z-index: 0;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  border: 1px none var(--neutrals--night-light);
  background-color: var(--neutrals--night);
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 0 0 120px;
  display: block;
  position: static;
  top: 0;
  overflow: clip;
}

.page-intro-wrapper-popup-modal-copy._2 {
  height: 100%;
  padding-bottom: 0;
}

.section-copy {
  perspective: 2000px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100vh;
  padding: 0;
  display: flex;
  position: relative;
}

.section-copy.section--foldable-card {
  background-color: var(--neutrals--night);
  perspective: 1000px;
  padding: 80px;
  font-size: 1vw;
  position: relative;
}

.section-cta {
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: clip;
}

.image-11 {
  opacity: .39;
  max-width: 40%;
  position: absolute;
  top: 305.586px;
  left: -356px;
}

.image-12 {
  opacity: .75;
  max-width: 50%;
  position: absolute;
  inset: 30% auto 0% 0%;
}

.image-13 {
  z-index: 1;
  opacity: .51;
  position: absolute;
  left: auto;
  right: -32rem;
}

.image-14 {
  width: 80px;
  position: absolute;
  bottom: 400px;
  left: auto;
  right: -1rem;
}

.image-15 {
  opacity: .3;
  width: 200px;
  height: 200px;
  position: absolute;
  bottom: 400px;
  left: auto;
  right: -16px;
}

.section-divider {
  background-color: var(--neutrals--night-light);
  background-image: linear-gradient(180deg, var(--haldi--default), var(--haldi--color));
  opacity: .09;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: auto;
  min-width: 0;
  max-width: none;
  height: 1px;
  padding-top: 0;
  display: block;
  overflow: hidden;
}

.divider {
  width: auto;
  height: 1px;
  overflow: clip;
}

.image-16 {
  z-index: 1;
  width: 80px;
  position: absolute;
  bottom: -5377.42px;
  right: 2rem;
}

.fragment-dot {
  background-color: var(--haldi--default);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 264px;
  left: auto;
  right: 400px;
}

.text-span-eyebrow-gradient {
  background-image: linear-gradient(315deg, var(--haldi--default), var(--haldi--color));
  -webkit-text-fill-color: transparent;
  mix-blend-mode: multiply;
  -webkit-background-clip: text;
  background-clip: text;
  margin-left: 0;
  font-size: 24px;
  line-height: 28px;
}

.div-block-9 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  display: flex;
}

.text-align-left {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.text-align-left.money-pits {
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

._100-people-container {
  text-align: left;
  justify-content: center;
  align-items: center;
  min-width: 100%;
  min-height: 100%;
  padding-top: 2.25rem;
  display: flex;
}

._100-people-container.spacer-sm-end {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.h2-text-span-copy {
  background-color: var(--neel--lightest);
  background-image: linear-gradient(225deg, var(--haldi--default), var(--haldi--color));
  color: var(--haldi--default);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-family: Roboto Serif, sans-serif;
  font-style: italic;
  font-weight: 500;
}

.container-small--100 {
  width: 100%;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 206.812px;
  overflow: visible;
}

.div-block-10 {
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  display: flex;
}

.image-18 {
  background-image: url('../images/HUMANS.svg');
  background-position: 50%;
  background-size: cover;
  border-radius: 13px;
  height: 240px;
}

.image-19 {
  z-index: -1;
  opacity: .28;
  width: 240px;
  position: absolute;
}

.code {
  display: none;
}

.page {
  grid-column-gap: .5em;
  grid-row-gap: .5em;
  grid-template-rows: min-content auto 20.9%;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  width: 100%;
  min-height: 100svh;
  padding: 3em;
  display: block;
  position: static;
  inset: 0%;
  overflow: hidden;
}

.card {
  background-color: #f9f9f1;
  border-radius: 2em;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.card.is-slider {
  background-color: var(--neutrals--night);
  -webkit-text-stroke-color: var(--neutrals--night);
  border-radius: 1em;
}

.slider {
  -webkit-text-stroke-color: var(--neutrals--night);
  display: flex;
}

.doodle-list {
  display: flex;
}

.doodle-list_item {
  width: 8em;
  height: 13.75em;
  margin-right: .5em;
}

.slider-fade {
  background-image: linear-gradient(90deg, var(--neutrals--night) 2%, #f9f9f100 32%, #f9f9f100 71%, var(--neutrals--night));
  position: absolute;
  inset: 0%;
}

.image-20 {
  width: 100%;
  height: 100%;
}

.section-doodles {
  z-index: 3;
  background-color: var(--neutrals--night);
  color: #eeebdc;
  margin-top: 0;
  padding-top: 10em;
  padding-bottom: 10em;
  transition: all .2s cubic-bezier(.55, .055, .675, .19);
  position: relative;
  overflow: clip;
}

.quick-stack-4 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  padding-top: 24px;
  padding-bottom: 0;
  position: static;
}

.sphere-chart {
  background-color: var(--haldi--default);
  background-image: linear-gradient(180deg, var(--haldi--default), var(--green--default) 31%, var(--haldi--default));
  border-radius: 50%;
  width: 100px;
  height: 100px;
}

.sphere-chart.one {
  background-image: linear-gradient(180deg, var(--haldi--default), var(--green--default) 31%, var(--haldi--default));
  width: 320px;
  height: 320px;
}

.sphere-chart.two {
  background-image: linear-gradient(315deg, var(--haldi--default), var(--green--default) 31%, var(--haldi--default));
  width: 400px;
  height: 400px;
}

.sphere-chart.three {
  z-index: -1;
  background-image: linear-gradient(225deg, var(--haldi--default), var(--green--default));
  width: 400px;
  height: 400px;
  position: absolute;
}

.sphere-chart.three:focus {
  border: 4px solid var(--green--default);
  background-image: linear-gradient(225deg, var(--haldi--default), var(--green--default));
  display: block;
}

.sphere-chart.three.green {
  z-index: -2;
  opacity: 0;
  filter: blur(10px);
}

.sphere-chart.three.pink {
  background-image: linear-gradient(180deg, var(--haldi--default), var(--haldi--color)), linear-gradient(225deg, var(--haldi--default), var(--green--default));
  filter: blur(5px);
  width: 320px;
  height: 320px;
}

.cell-104 {
  border-radius: 50%;
  justify-content: flex-start;
  align-items: center;
}

.cell-105, .cell-106 {
  justify-content: center;
  align-items: center;
}

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

.heading-2.black {
  color: var(--neutrals--night);
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1;
}

.heading-2.black._85 {
  position: absolute;
}

.heading-2.black.hover {
  font-size: 104px;
}

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

.text-span-body-default-italic {
  font-family: Roboto Serif, sans-serif;
  font-style: italic;
  font-weight: 400;
}

.fact-default {
  display: block;
  position: absolute;
}

.fact-reveal {
  opacity: 1;
  display: none;
  position: absolute;
}

.fact-85, .fact-146 {
  position: absolute;
}

.div-block-11 {
  justify-content: center;
  align-self: auto;
  align-items: center;
  width: 360px;
  height: 400px;
  display: flex;
}

.image-12-copy {
  z-index: -1;
  opacity: .27;
  max-width: 50%;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.h3-copy {
  color: #eee;
  text-align: center;
  letter-spacing: -.01em;
  -webkit-text-stroke-color: #eee;
  text-transform: none;
  margin-top: 8px;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-family: Roboto Serif, sans-serif;
  font-size: 32px;
  font-style: normal;
  font-weight: 200;
  line-height: 1.4;
}

.h3-copy.tips {
  background-image: linear-gradient(315deg, var(--haldi--default), var(--haldi--color));
  text-align: left;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 10rem;
  font-style: italic;
  line-height: 1;
}

.h3-copy.center {
  text-align: center;
}

.h3-copy.left {
  text-align: left;
  padding-bottom: 0;
}

.image-13-copy {
  z-index: -1;
  opacity: .51;
  position: absolute;
  left: -480px;
  right: auto;
}

.image-100 {
  opacity: .75;
  max-width: 50%;
  position: absolute;
  inset: 0% 0 0% auto;
}

.image-101 {
  width: 80px;
  position: absolute;
  top: auto;
  bottom: -24px;
  right: 160px;
}

.section-cta-aniket {
  display: flex;
  overflow: clip;
}

.button-cta {
  color: #000;
  filter: url('../images/');
  justify-content: flex-start;
  align-items: stretch;
  text-decoration: none;
  display: flex;
  position: relative;
}

.page-loader {
  z-index: 10000;
  opacity: 1;
  cursor: pointer;
  object-fit: fill;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  position: fixed;
  inset: 0%;
  overflow: hidden;
}

.loader-wrapper {
  display: block;
}

.loader-blind {
  background-color: #5100ff;
  width: 100vw;
  height: 50vh;
  position: absolute;
}

.loader-blind.top {
  z-index: 1;
  background-color: var(--color);
  background-image: none;
  background-size: auto;
  inset: 0% 0% auto;
}

.loader-blind.bottom {
  z-index: 1;
  background-color: var(--color);
  background-image: none;
  background-position: 0 0;
  background-size: auto;
  inset: auto 0% 0%;
}

.loader-line {
  z-index: 2;
  background-color: var(--haldi--default);
  background-image: none;
  border-radius: 10px;
  width: 0;
  height: 0;
  margin: auto;
  position: absolute;
  inset: 0%;
}

.cover {
  background-color: #000;
  background-image: linear-gradient(#3d3d3dad, #3d3d3dad), url('../images/state-of-ai-INNOVACCER.png');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  width: 100vw;
  height: 100vh;
  display: block;
}

.sub-heading {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  color: var(--neutrals--night-light);
  -webkit-text-fill-color: inherit;
  mix-blend-mode: multiply;
  background-image: none;
  background-clip: border-box;
  justify-content: flex-start;
  align-items: center;
  margin-left: 22em;
  font-family: Roboto Serif, sans-serif;
  font-size: 20px;
  font-style: italic;
  line-height: 28px;
  display: none;
}

.quick-stack-5 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  padding: 8px;
  position: absolute;
  top: 324.578px;
  left: 649px;
}

.image-102 {
  height: 48px;
  position: absolute;
  bottom: -6.531px;
  left: 666px;
}

.text-span-italic-bold {
  font-weight: 600;
  display: block;
}

.body-testimonial {
  color: #eee;
  text-align: left;
  letter-spacing: -.01em;
  -webkit-text-stroke-color: #eee;
  text-transform: none;
  margin-top: 8px;
  margin-bottom: 16px;
  padding-top: 0;
  padding-bottom: 0;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 200;
  line-height: 1.4;
  display: block;
}

.body-testimonial.tips {
  background-image: linear-gradient(315deg, var(--haldi--default), var(--haldi--color));
  text-align: left;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 10rem;
  font-style: italic;
  line-height: 1;
}

.body-testimonial.center {
  text-align: center;
}

.body-testimonial.left {
  text-align: left;
  padding-bottom: 0;
}

.testimonial-div {
  -webkit-backdrop-filter: blur(100px);
  backdrop-filter: blur(100px);
  background-image: linear-gradient(#abb1d526, #ffffff0d);
  border-radius: 1rem;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  height: auto;
  min-height: 520px;
  margin-top: auto;
  margin-bottom: auto;
  padding: 40px 40px 40px 180px;
  display: flex;
  overflow: hidden;
}

.section-testimonial {
  justify-content: center;
  align-items: center;
  display: none;
  overflow: clip;
}

.quick-stack-6 {
  max-width: 100%;
  height: 640%;
  max-height: 100%;
  padding: 0;
}

.container-testimonial {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  max-width: 1200px;
  padding-top: 10em;
  padding-bottom: 10em;
  display: flex;
}

.testimonial-persona {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.flex-block-2 {
  flex-flow: row;
}

.testimonial-name {
  font-family: Roboto Serif, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 300;
  line-height: 28px;
}

.image-testimonial {
  max-width: 30%;
  position: absolute;
  inset: auto auto 0% 0%;
}

.div-block-12 {
  position: absolute;
  inset: auto auto 0% 0%;
}

.image-103 {
  max-width: 30%;
  position: absolute;
  inset: auto auto 0% 0%;
}

.image-104, .image-105 {
  max-height: 24px;
}

.cell-108, .cell-109 {
  justify-content: space-between;
  align-items: center;
}

.text-span-7 {
  font-style: italic;
}

.field-label-asterisk-span {
  color: var(--haldi--default);
}

.h2-asterisk-text-span {
  color: var(--neutrals--night-light);
  font-size: 40px;
}

.image-106 {
  max-width: 120%;
  position: absolute;
  top: 330.578px;
  left: 668px;
}

.image-107 {
  max-width: 25%;
  position: absolute;
  bottom: -3.297px;
  left: 640px;
}

.frost-and-sullivan-badge {
  max-width: 160px;
  position: absolute;
  bottom: 90.75px;
  left: 943px;
}

@media screen and (min-width: 1440px) {
  .navbar-no-shadow-container {
    max-width: 1140px;
    margin-left: auto;
    margin-right: auto;
  }

  .container-regular {
    margin-left: auto;
    margin-right: auto;
  }

  .button-primary {
    cursor: pointer;
    flex: 0 auto;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .body {
    text-align: center;
  }

  .section-after-intro-text {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .page-padding {
    justify-content: center;
    align-items: center;
  }

  .h2 {
    font-size: 56px;
  }

  .spacer-sm-start.spacer-sm-end {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .section-page-intro {
    min-height: 200svh;
  }

  .text-align-center {
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  .text-align-center.money-pits {
    justify-content: center;
    align-items: center;
  }

  .h2-text-span.max {
    background-color: var(--green--default);
  }

  .heading.followers {
    font-size: 140px;
  }

  .text-block-7 {
    text-align: left;
  }

  .book-container {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .page-intro-wrapper-popup-modal {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    background-color: var(--neutrals--night);
    height: auto;
  }

  .spacer-sm-start-for-87 {
    padding-top: 16px;
    padding-bottom: 8rem;
  }

  .h3 {
    padding-top: 8px;
    font-size: 32px;
  }

  .h3.left {
    text-align: left;
    padding-top: 0;
    padding-bottom: 0;
  }

  .content-wrapper {
    background-image: linear-gradient(180deg, transparent, var(--neutrals--night) 97%);
  }

  .section-3 {
    background-color: var(--neutrals--night);
  }

  .text-block-8 {
    color: var(--namak--default);
    text-transform: none;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
  }

  .body-default {
    font-size: 18px;
    line-height: 24px;
  }

  .circles-2 {
    display: flex;
  }

  .text-eyebrow-gradient-for-book-animation {
    text-transform: uppercase;
    padding-left: 0;
  }

  .container-2 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    display: block;
  }

  .text-span-body-italic {
    font-style: italic;
    font-weight: 300;
  }

  .section-5 {
    background-color: var(--neutrals--night);
    position: fixed;
  }

  .div-block-7 {
    background-color: var(--neutrals--night);
    min-height: 100svh;
  }

  .pop-up-text-input {
    background-color: var(--neutrals--night-light);
  }

  .pop-up-header {
    text-align: left;
  }

  .pop-up-box {
    z-index: 100000;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    margin-right: 2.5vh;
    position: relative;
    left: auto;
    right: -2.5svh;
  }

  .pop-up-exit-button {
    -webkit-text-stroke-color: var(--neutrals--night-light);
  }

  .pop-up-wrapper {
    display: none;
  }

  .pop-up-text-box, .pop-up-paragraph {
    text-align: left;
  }

  .text-span-h3 {
    font-style: italic;
    font-weight: 400;
  }

  .quick-stack-3 {
    grid-column-gap: 4px;
  }

  .container-4 {
    width: 100%;
  }

  .glowing_card {
    margin-top: 0;
    margin-bottom: auto;
  }

  .button-form {
    cursor: pointer;
    flex: 0 auto;
  }

  .text-block-9 {
    font-family: Roboto, sans-serif;
    font-size: 16px;
  }

  .text-span-5 {
    font-family: Roboto, sans-serif;
    font-style: normal;
  }

  .section-burnout-battery {
    min-height: 100svh;
  }

  .container-for-book {
    width: 100%;
  }

  .page-intro-wrapper-popup-modal-copy {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    background-color: var(--neutrals--night);
  }

  .image-12 {
    z-index: 1;
  }

  .image-15 {
    right: -4rem;
  }

  .text-align-left {
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }

  ._100-people-container.spacer-sm-end {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .h3-copy {
    padding-top: 8px;
    font-size: 32px;
  }

  .h3-copy.left {
    text-align: left;
    padding-top: 0;
    padding-bottom: 0;
  }

  .image-100 {
    z-index: 1;
  }

  .page-loader {
    display: none;
  }

  .loader-blind.top, .loader-blind.bottom {
    background-image: none;
    background-position: 0 0;
    background-size: auto;
  }

  .body-testimonial.left {
    text-align: left;
    padding-top: 0;
    padding-bottom: 0;
  }

  .testimonial-div {
    margin-bottom: auto;
  }
}

@media screen and (max-width: 991px) {
  .navbar-no-shadow {
    overflow: clip;
  }

  .navbar-no-shadow-container {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

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

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

  .nav-link {
    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 {
    padding: 12px;
  }

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

  .body {
    object-fit: fill;
    min-width: 100%;
    max-width: 100%;
  }

  .hero-text-span {
    box-sizing: border-box;
    font-size: 70px;
  }

  .text-eyebrow-gradient {
    margin-left: 6em;
    padding-left: 0;
    font-size: 20px;
    line-height: 24px;
  }

  .section-after-intro-text {
    padding-bottom: 4em;
  }

  .page-intro-title-wrapper {
    justify-content: space-between;
    align-items: center;
  }

  .page-intro-text-wrapper {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .page-padding {
    padding-left: 0;
    padding-right: 0;
  }

  .h2 {
    font-size: 40px;
  }

  .h2.center {
    max-width: 720px;
    font-size: 40px;
  }

  .container-small {
    max-width: 720px;
  }

  .spacer-sm-start {
    max-width: 640px;
  }

  .page-intro-wrapper {
    min-width: 100%;
  }

  .section-page-intro {
    width: auto;
    min-width: 100%;
    max-width: none;
    position: static;
  }

  .h1-hero.is-the-great-burnout {
    margin-left: 2em;
    font-size: 70px;
  }

  .h1-hero.is-state-of-ai-during {
    font-size: 70px;
  }

  .h1-hero.is-in-healthcare {
    margin-left: 4em;
    font-size: 70px;
  }

  .page-intro-content {
    max-width: 720px;
  }

  .page-intro-title-small {
    margin-left: 28.9em;
    padding-top: 24px;
  }

  .text-align-center {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

  .text-align-center.money-pits {
    justify-content: flex-start;
    align-items: center;
    max-width: 640px;
    margin-top: 0;
  }

  .gradient-sphere._1 {
    width: 400px;
    height: 400px;
    top: -31.9688px;
    left: 288px;
  }

  .gradient-sphere._2-copy {
    width: 400px;
    height: 400px;
    bottom: -2px;
    left: 59px;
  }

  .image {
    bottom: -19px;
    left: 117px;
  }

  .image-2 {
    max-height: 640px;
    left: -150px;
  }

  .image-2.mobile {
    min-height: 100%;
    max-height: 880px;
    bottom: -160px;
    left: 85px;
  }

  .image-3 {
    top: -30px;
    left: 12px;
  }

  .image-4 {
    top: 40px;
    left: 80px;
  }

  .text-block-5 {
    display: flex;
  }

  .hero-image_wrapper {
    height: 100%;
  }

  .hero-circle-bubble-ani.ani-floating-element.contact {
    inset: 20vw auto auto -40vw;
  }

  .div-block-3 {
    align-items: center;
    height: 100%;
    display: flex;
  }

  .label-only-desktop {
    justify-content: center;
    align-items: center;
    height: 25px;
    padding-left: 10px;
    padding-right: 10px;
    font-size: 12px;
    display: inline-block;
  }

  .hero-image_wrapper-small {
    height: 100%;
  }

  .h2-text-span.max {
    font-size: 80px;
  }

  .provider-sphere._1 {
    width: 480px;
    height: 480px;
    left: 263px;
  }

  .provider-sphere._2-copy {
    width: 480px;
    height: 480px;
    bottom: -14px;
    left: 112px;
  }

  .provider-sphere-copy._1 {
    width: 480px;
    height: 480px;
    left: 263px;
  }

  .provider-sphere-copy._2-copy {
    width: 480px;
    height: 480px;
    bottom: -14px;
    left: 112px;
  }

  .section-ai-answer {
    padding-top: 6em;
    padding-bottom: 6em;
  }

  .image-8 {
    width: 70vw;
    top: 7%;
    left: 15%;
  }

  .container-regular-2 {
    max-width: 640px;
  }

  .image-7 {
    width: 60vw;
    top: 13%;
    left: 39%;
  }

  .heading-1 {
    font-size: 40px;
  }

  .image-9 {
    width: 100vw;
    top: 6%;
    left: 0;
  }

  .grid-2 {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
  }

  .text-block-7 {
    font-size: 16px;
    line-height: 20px;
  }

  .card-container--details {
    width: 35em;
    max-width: 300px;
    height: 35em;
    max-height: 300px;
  }

  .book-container {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    justify-content: center;
    align-items: center;
    height: 80%;
  }

  .details__job {
    font-size: 1.8em;
  }

  .details__name {
    font-size: 2.9em;
  }

  .page-intro-wrapper-popup-modal {
    border-width: 0;
    padding: 40px;
  }

  .progres-bar-2.card-bar {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

  .progress-bar__content-4 {
    width: 14%;
  }

  .progress-bar__content-4._3 {
    width: 87%;
  }

  .spacer-sm-start-for-87 {
    margin-left: auto;
    margin-right: auto;
    padding-top: 16px;
    padding-bottom: 8rem;
  }

  .h3 {
    font-size: 24px;
  }

  .h3.left {
    margin-top: 0;
    margin-bottom: 4px;
    font-size: 24px;
  }

  .body-h3 {
    font-size: 20px;
  }

  .content-wrapper {
    justify-content: flex-start;
    align-items: center;
  }

  .section-3 {
    overflow: clip;
  }

  .body-default {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    line-height: 1.25;
  }

  .body-default.central, .body-default.fot-book {
    max-width: 100%;
  }

  .body-default.black {
    font-size: 20px;
    line-height: 24px;
  }

  .circle-2.two {
    width: 320px;
    height: 320px;
  }

  .circle-2.one {
    width: 160px;
    height: 160px;
  }

  .circle-2._120 {
    width: 640px;
    height: 640px;
  }

  .circle-2.four {
    width: 960px;
    height: 960px;
    padding-top: 19px;
  }

  .circle-2.logo {
    width: 80px;
    height: 80px;
  }

  .section-4 {
    justify-content: center;
  }

  .text-eyebrow-gradient-for-book-animation {
    margin-top: 24px;
    margin-left: auto;
    margin-right: auto;
    padding-top: 0;
    padding-left: 0;
    font-size: 20px;
    line-height: 24px;
  }

  .div-block-6 {
    max-width: 280px;
    top: 77px;
    left: 56px;
  }

  .pop-up-text-input {
    font-size: 14px;
  }

  .pop-up-button {
    position: relative;
  }

  .pop-up-box {
    max-width: 360px;
    padding: 20px 20px 16px;
  }

  .pop-up-wrapper {
    display: none;
  }

  .pop-up-text-box {
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    display: flex;
  }

  .pop-up-paragraph {
    font-size: 14px;
  }

  .text-eyebrow-gradient-form {
    margin-left: 0;
    padding-left: 0;
    font-size: 18px;
    line-height: 1;
  }

  .field-label {
    font-size: 14px;
  }

  .quick-stack-3 {
    object-fit: fill;
    overflow: visible;
  }

  .agree-insider, .disagree-insider {
    width: 30px;
    height: 30px;
  }

  .container-4 {
    max-width: 44rem;
  }

  .glowing_component {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
  }

  .container-5 {
    grid-column-gap: 28px;
    grid-row-gap: 28px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
    max-width: 728px;
    display: flex;
  }

  .footer-wrapper {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
  }

  .footer-content {
    grid-column-gap: 60px;
    width: 100%;
  }

  .card-container--details-2, .card-container--details-3 {
    width: 35em;
    max-width: 300px;
    height: 35em;
    max-height: 300px;
  }

  .section-burnout-battery {
    width: auto;
    min-width: 100%;
    max-width: none;
    position: static;
  }

  .card-container--details-4 {
    width: 35em;
    height: 35em;
  }

  .container-for-book {
    max-width: 100%;
    max-height: 100%;
  }

  .card-container--details-6, .card-container--details-7 {
    width: 35em;
    height: 35em;
  }

  .section {
    padding: 60px;
  }

  .section.section--foldable-card {
    overflow: clip;
  }

  .page-intro-wrapper-popup-modal-copy {
    border-width: 0;
    padding: 40px;
  }

  .section-copy {
    padding: 60px;
  }

  .image-12 {
    bottom: 287px;
    left: -247.5px;
  }

  .image-13 {
    left: 612.5px;
  }

  .image-15 {
    bottom: 240px;
    right: -8rem;
  }

  .section-divider {
    justify-content: center;
    padding: 0;
  }

  .image-16 {
    top: 5797.27px;
    bottom: auto;
    right: 4rem;
  }

  .fragment-dot {
    top: 188px;
    right: 186px;
  }

  .text-span-eyebrow-gradient {
    margin-left: auto;
    padding-left: 0;
    font-size: 20px;
    line-height: 24px;
  }

  .text-align-left {
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
  }

  .text-align-left.money-pits {
    justify-content: flex-start;
    align-items: center;
    max-width: 720px;
    margin-top: 140px;
  }

  ._100-people-container {
    max-width: 640px;
  }

  .container-small--100 {
    max-width: 720px;
    top: 160px;
  }

  .div-block-10 {
    margin-bottom: 0;
  }

  .page {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    grid-template-rows: min-content min-content auto;
    padding: 48px 40px;
    position: relative;
  }

  .card {
    border-radius: 32px;
  }

  .card.is-slider {
    justify-content: flex-start;
    align-items: center;
    min-height: 320px;
  }

  .doodle-list_item {
    width: 120px;
    height: 220px;
  }

  .sphere-chart.three.pink {
    width: 240px;
    height: 240px;
  }

  .div-block-11 {
    width: 240px;
    height: 320px;
  }

  .image-12-copy {
    bottom: 287px;
    left: -247.5px;
  }

  .h3-copy {
    font-size: 24px;
  }

  .h3-copy.left {
    margin-top: 0;
    margin-bottom: 4px;
    font-size: 24px;
  }

  .image-13-copy {
    left: 612.5px;
  }

  .image-100 {
    bottom: 287px;
    left: -247.5px;
  }

  .image-101 {
    width: 56px;
    right: 80px;
  }

  .page-loader {
    display: none;
  }

  .sub-heading {
    margin-left: 20em;
    padding-left: 0;
    font-size: 16px;
    line-height: 24px;
    display: none;
  }

  .body-testimonial {
    font-size: 24px;
  }

  .body-testimonial.left {
    margin-top: 0;
    margin-bottom: 4px;
    font-size: 24px;
  }

  .quick-stack-6 {
    height: auto;
  }

  .container-testimonial {
    max-width: 720px;
  }

  .frost-and-sullivan-badge {
    bottom: -12px;
    left: 287px;
  }
}

@media screen and (max-width: 767px) {
  .navbar-no-shadow {
    line-height: 16px;
  }

  .navbar-no-shadow-container {
    max-width: none;
    margin-left: 3vw;
    margin-right: 3vw;
    padding: 12px 0 8px;
  }

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

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

  .nav-link {
    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;
  }

  .hero-text-span {
    letter-spacing: -4px;
    font-size: 48px;
  }

  .text-eyebrow-gradient {
    margin-left: 4em;
    font-size: 16px;
    line-height: 1;
  }

  .section-after-intro-text {
    margin-left: auto;
    margin-right: auto;
  }

  .page-intro-title-wrapper {
    grid-column-gap: .5vh;
    grid-row-gap: .5vh;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
    min-width: auto;
    max-width: none;
  }

  .page-intro-text-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    min-width: auto;
    margin-top: -4vh;
    margin-left: auto;
    margin-right: auto;
  }

  .page-padding {
    text-align: center;
    min-width: auto;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .h2 {
    font-size: 24px;
  }

  .h2.tips {
    font-size: 6rem;
  }

  .h2.center {
    text-align: center;
    align-self: flex-start;
    max-width: 100%;
    padding-top: 12px;
    font-size: 24px;
  }

  .h2.left {
    text-align: center;
    margin-bottom: 12px;
    font-size: 24px;
  }

  .h2.clones, .h2.static {
    font-size: 6rem;
  }

  .container-small {
    text-align: center;
    max-width: 100%;
  }

  .spacer-sm-start {
    text-align: center;
  }

  .spacer-sm-start.spacer-sm-end {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    max-width: 100%;
  }

  .section-page-intro {
    margin-left: auto;
    margin-right: auto;
  }

  .h1-hero {
    font-size: 56vw;
  }

  .h1-hero.is-webdesign {
    margin-left: 0;
  }

  .h1-hero.is-the-great-burnout {
    letter-spacing: -4px;
    flex: 1;
    margin-left: 0;
    font-size: 56px;
  }

  .h1-hero.is-skills {
    margin-left: 0;
  }

  .h1-hero.is-state-of-ai-during {
    letter-spacing: -4px;
    margin-left: 0;
    font-size: 48px;
  }

  .h1-hero.is-in-healthcare {
    letter-spacing: -4px;
    margin-left: 2.5em;
    font-size: 56px;
  }

  .page-intro-content {
    max-width: none;
  }

  .page-intro-title-small {
    margin-left: 16em;
    padding-top: 16px;
    font-size: 14px;
    line-height: 1.2;
  }

  .page-intro-title-small.is-made-in-webflow {
    margin-right: 0;
  }

  .page-intro-title-small.is-best-in-class {
    margin-left: 0;
  }

  .text-align-center {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: row;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 560px;
  }

  .text-align-center.money-pits {
    justify-content: flex-start;
    align-items: center;
    max-width: none;
    margin-top: 64px;
    margin-left: 3vw;
    margin-right: 3vw;
  }

  .spacer-xl-start {
    text-align: center;
    justify-content: center;
    align-items: center;
    max-width: 480px;
    margin-left: auto;
    padding-bottom: 2rem;
  }

  .gradient-sphere._1 {
    width: 320px;
    height: 320px;
    bottom: -56px;
    left: 127px;
  }

  .gradient-sphere._2-copy {
    width: 320px;
    height: 320px;
    bottom: 32px;
    left: -2px;
  }

  .image {
    bottom: -21px;
    left: -28px;
  }

  .image-2.mobile {
    max-width: 480px;
    min-height: auto;
    max-height: 480px;
    top: -120px;
    bottom: auto;
    left: -32px;
  }

  .image-3 {
    top: -36px;
    left: -107px;
  }

  .image-4 {
    max-width: 120px;
    top: 24px;
    left: 40px;
  }

  .heading-wrapper {
    width: 100%;
    padding-top: 60px;
    padding-left: 40px;
  }

  .section-2 {
    height: 500px;
    min-height: 0;
  }

  .image-6 {
    max-width: 60%;
  }

  .provider-sphere {
    width: 80px;
    height: 80px;
  }

  .provider-sphere._1 {
    width: 320px;
    height: 320px;
    bottom: -56px;
  }

  .provider-sphere._2-copy {
    width: 320px;
    height: 320px;
    bottom: 32px;
    left: 20px;
  }

  .quick-stack-2 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    max-width: 480px;
    padding: 0;
  }

  .provider-sphere-copy {
    width: 80px;
    height: 80px;
  }

  .provider-sphere-copy._1 {
    width: 320px;
    height: 320px;
    bottom: -56px;
  }

  .provider-sphere-copy._2-copy {
    width: 320px;
    height: 320px;
    bottom: 32px;
    left: 20px;
  }

  .heading {
    font-size: 100px;
  }

  .image-8 {
    width: 80vw;
    max-width: none;
    top: 15%;
    left: 20%;
  }

  .container-regular-2 {
    max-width: none;
    margin-left: 40px;
    margin-right: 40px;
  }

  .image-7 {
    width: 100vw;
    max-width: none;
    top: 292px;
    left: -6%;
    right: 134px;
  }

  .heading-1 {
    font-size: 24px;
  }

  .image-9 {
    width: 120vw;
    max-width: 200%;
    inset: 172px 0% 0% -20%;
  }

  .grid-2 {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    grid-template-columns: 1fr;
    grid-auto-flow: row dense;
    width: 100%;
    max-width: 400px;
  }

  .text-block-7 {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.25;
  }

  .link-block__base-image {
    width: 4.5em;
    max-width: 30px;
  }

  .card-container--details {
    width: 10em;
    min-width: 10px;
    height: 10em;
    min-height: 10px;
  }

  .book-container {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .link-block__hover-image {
    width: 4.5em;
    max-width: 30px;
  }

  .card-container__photo-container {
    transform-origin: 50% 0;
    transform: rotate(0);
  }

  .details__job {
    margin-bottom: .5em;
    font-size: 3em;
  }

  .details__name {
    font-size: 5.1em;
  }

  .photo-container__back-image {
    transform: rotateX(180deg)rotateY(0)rotateZ(0);
  }

  .page-intro-wrapper-popup-modal {
    padding: 20px;
  }

  .lottie-animation {
    top: 38.547px;
    left: -144px;
  }

  .h3 {
    font-size: 1.5rem;
  }

  .h3.left {
    margin-top: 4px;
    margin-bottom: 8px;
  }

  .body-h3 {
    font-size: 3rem;
  }

  .content-wrapper {
    background-image: linear-gradient(180deg, transparent, var(--neutrals--night) 80%);
    border-style: none;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: auto;
    overflow: hidden;
  }

  .circles {
    width: auto;
    margin-top: 24px;
  }

  .section-3 {
    min-width: 100%;
  }

  .body-default {
    text-align: center;
    max-width: 100%;
    font-size: 12px;
  }

  .body-default.left-aligned {
    text-align: left;
  }

  .circles-2 {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    width: auto;
    margin-top: 24px;
    top: -8%;
  }

  .circle-2.two {
    width: 160px;
    height: 160px;
  }

  .circle-2.one {
    width: 80px;
    height: 80px;
  }

  .circle-2._120 {
    width: 320px;
    height: 320px;
  }

  .circle-2.four {
    width: 640px;
    height: 640px;
  }

  .circle-2.logo {
    width: 40px;
    height: 40px;
  }

  .section-4 {
    align-items: center;
    height: 68%;
    padding: 0;
    overflow: auto;
  }

  .text-eyebrow-gradient-for-book-animation {
    margin-top: 0;
    margin-left: auto;
    font-size: 14px;
    line-height: 1.25;
  }

  .container-2 {
    align-self: flex-start;
  }

  .div-block-6 {
    top: 80px;
    left: -64px;
  }

  .pop-up-form {
    flex-direction: column;
    margin-top: 16px;
  }

  .pop-up-text-input {
    height: 36px;
    margin-bottom: 12px;
    padding-left: 8px;
    font-size: 12px;
  }

  .pop-up-box {
    max-width: 95svw;
  }

  .pop-up-wrapper {
    display: none;
  }

  .pop-up-paragraph {
    margin-bottom: 4px;
  }

  .text-eyebrow-gradient-form {
    margin-bottom: 4px;
    margin-left: 0;
    font-size: 14px;
  }

  .field-label {
    margin-bottom: 4px;
    font-size: 12px;
  }

  .quick-stack-3 {
    grid-column-gap: 2px;
    grid-row-gap: 2px;
  }

  .agree-insider, .disagree-insider {
    width: 16px;
    height: 16px;
  }

  .cell-for-82 {
    justify-content: center;
    align-items: center;
  }

  .glowing_component {
    flex-direction: column;
    grid-template-columns: 100%;
    display: flex;
  }

  .loader-battery_component {
    max-width: 15rem;
    height: 3rem;
  }

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

  .container-5 {
    width: auto;
    max-width: 480px;
    margin-left: auto;
    margin-right: 3vw;
  }

  .footer-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    margin-top: 40px;
  }

  .footer-block {
    justify-content: center;
    align-items: flex-start;
  }

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

  .footer-social-block {
    margin-top: 20px;
    margin-left: -20px;
  }

  .footer-social-link {
    margin-left: 20px;
  }

  .footer-divider {
    margin-top: 60px;
  }

  .button-2_content-wrap {
    padding-top: .25rem;
    padding-bottom: .25rem;
    padding-left: 1rem;
  }

  .button-2_arrow-wrapper {
    width: 1.2rem;
    height: 1.2rem;
  }

  .text-block-9 {
    font-size: 14px;
    line-height: 16px;
  }

  .div-block-8 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    object-fit: fill;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    display: flex;
  }

  .card-container--details-2, .card-container--details-3 {
    width: 60em;
    height: 60em;
  }

  .cell-10, .cell-11, .cell-12, .cell-13, .cell-14, .cell-15, .cell-16, .cell-17, .cell-18, .cell-19, .cell-20, .cell-21, .cell-22, .cell-23, .cell-24, .cell-25 {
    justify-content: center;
    align-items: center;
  }

  .cell-26 {
    justify-content: space-between;
    align-items: center;
  }

  .cell-27, .cell-28, .cell-29, .cell-30, .cell-31, .cell-32, .cell-33, .cell-34, .cell-35, .cell-36, .cell-37, .cell-38, .cell-39, .cell-40, .cell-41, .cell-42, .cell-43, .cell-44, .cell-45, .cell-46, .cell-47, .cell-48, .cell-49, .cell-50, .cell-51, .cell-52, .cell-53, .cell-54, .cell-55, .cell-56, .cell-57, .cell-58, .cell-59, .cell-60, .cell-61, .cell-62, .cell-63, .cell-64, .cell-65, .cell-66, .cell-67, .cell-68, .cell-69, .cell-70, .cell-71, .cell-72, .cell-73, .cell-74, .cell-75, .cell-76, .cell-77, .cell-78, .cell-79, .cell-80, .cell-81, .cell-82, .cell-83, .cell-84, .cell-85, .cell-86, .cell-87, .cell-88, .cell-89, .cell-90, .cell-91, .cell-92, .cell-93, .cell-94, .cell-95, .cell-96, .cell-97, .cell-98, .cell-99, .cell-100 {
    justify-content: center;
    align-items: center;
  }

  .cell-101 {
    justify-content: flex-end;
    align-items: center;
  }

  .cell-102, .cell-103 {
    justify-content: center;
    align-items: center;
  }

  .card-container--details-4 {
    width: 60em;
    height: 60em;
  }

  .card-container__photo-container-2 {
    transform-origin: 50% 0;
    transform: rotate(0);
  }

  .card-container--details-5 {
    width: 60em;
    height: 60em;
  }

  .card-container__photo-container-3 {
    transform-origin: 50% 0;
    transform: rotate(0);
  }

  .card-container--details-6 {
    width: 60em;
    height: 60em;
  }

  .card-container__photo-container-4 {
    transform-origin: 50% 0;
    transform: rotate(0);
  }

  .card-container--details-7 {
    width: 60em;
    height: 60em;
  }

  .section.section--foldable-card {
    height: 100svh;
    padding: 20px;
  }

  .card-container__photo-container-5 {
    transform-origin: 50% 0;
    transform: rotate(0);
  }

  .page-intro-wrapper-popup-modal-copy {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-copy.section--foldable-card {
    padding: 40px;
  }

  .image-12 {
    bottom: 233px;
    left: -185.5px;
  }

  .image-13 {
    top: 17.695px;
    left: 435.5px;
  }

  .image-15 {
    bottom: 254px;
  }

  .section-divider {
    align-items: center;
    height: 68%;
    padding: 0;
    overflow: auto;
  }

  .image-16 {
    top: 5745.27px;
  }

  .text-span-eyebrow-gradient {
    margin-left: auto;
    font-size: 16px;
    line-height: 1;
  }

  .text-align-left {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: row;
    justify-content: flex-start;
    align-items: flex-start;
    max-width: 100%;
  }

  .text-align-left.money-pits {
    justify-content: flex-start;
    align-items: center;
    max-width: none;
    margin-top: 64px;
    margin-left: 3vw;
    margin-right: 3vw;
  }

  ._100-people-container {
    text-align: center;
    min-width: 0%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1rem;
  }

  ._100-people-container.spacer-sm-end {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    max-width: 100%;
  }

  .container-small--100 {
    text-align: center;
    max-width: 100%;
  }

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

  .doodle-list_item {
    width: 120px;
  }

  .image-12-copy {
    bottom: 233px;
    left: -185.5px;
  }

  .h3-copy {
    font-size: 1.5rem;
  }

  .h3-copy.left {
    margin-top: 4px;
    margin-bottom: 8px;
  }

  .image-13-copy {
    top: -60.305px;
    left: 435.5px;
  }

  .image-100 {
    bottom: 233px;
    left: -185.5px;
  }

  .page-loader {
    display: none;
  }

  .sub-heading {
    margin-left: 4em;
    font-size: 16px;
    line-height: 1;
    display: none;
  }

  .body-testimonial {
    font-size: 1.5rem;
  }

  .body-testimonial.left {
    margin-top: 4px;
    margin-bottom: 8px;
  }

  .frost-and-sullivan-badge {
    max-width: 140px;
    bottom: -64px;
    left: 222px;
  }
}

@media screen and (max-width: 479px) {
  .navbar-no-shadow {
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    min-width: 100svw;
  }

  .navbar-no-shadow-container {
    margin-left: 16px;
    margin-right: 16px;
    overflow: clip;
  }

  .container-regular {
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .navbar-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: space-between;
    margin-left: 0;
    margin-right: auto;
  }

  .navbar-brand {
    max-width: 30%;
  }

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

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

  .button-primary {
    text-align: center;
    width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .button-primary.form {
    font-size: 14px;
  }

  .body {
    min-width: 100vw;
    max-width: none;
  }

  .hero-text-span {
    font-size: 38px;
  }

  .text-eyebrow-gradient {
    background-image: linear-gradient(65deg, var(--haldi--color), var(--haldi--default) 53%, var(--haldi--default) 54%, var(--haldi--color));
    mix-blend-mode: multiply;
    margin-left: 2em;
    font-size: 14px;
    line-height: 14px;
  }

  .section-after-intro-text {
    min-width: auto;
    overflow: hidden;
  }

  .page-intro-title-wrapper {
    grid-column-gap: .6vh;
    grid-row-gap: .6vh;
    flex: 0 auto;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 300px;
  }

  .page-intro-splitscreen-wrapper {
    width: auto;
    overflow: clip;
  }

  .page-intro-text-wrapper {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    justify-content: center;
    align-items: flex-start;
    margin-top: -3vh;
  }

  .page-padding {
    width: auto;
    min-width: 0;
    max-width: 100%;
    margin-left: 16px;
    margin-right: 16px;
    padding-left: 0;
  }

  .h2 {
    text-align: center;
    align-self: center;
    font-size: 24px;
  }

  .h2.tips {
    padding-left: 0;
  }

  .h2.center {
    text-align: center;
    padding-left: 0;
    font-size: 24px;
  }

  .h2.left {
    text-align: center;
    padding-left: 0;
    font-size: 28px;
  }

  .h2.clones, .h2.static {
    padding-left: 0;
  }

  .container-small {
    width: auto;
    max-width: 100%;
  }

  .page-intro-wrapper {
    min-width: auto;
    height: 110svh;
    padding-top: 6em;
    padding-bottom: 6em;
    overflow: clip;
  }

  .page-intro-wrapper.second {
    height: 110svh;
  }

  .section-page-intro {
    min-width: 100vw;
    min-height: 200svh;
    overflow: clip;
  }

  .h1-hero.is-the-great-burnout {
    flex: 1;
    font-size: 38px;
  }

  .h1-hero.is-state-of-ai-during {
    font-size: 38px;
  }

  .h1-hero.is-in-healthcare {
    margin-left: 2em;
    font-size: 38px;
  }

  .page-intro-content {
    max-width: none;
    overflow: visible;
  }

  .page-intro-title-small {
    margin-left: 8em;
    font-size: 12px;
  }

  .text-align-center {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
    max-width: 90svw;
  }

  .text-align-center.money-pits {
    text-align: left;
    max-width: 90svw;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
  }

  .spacer-xl-start {
    justify-content: center;
    align-items: center;
  }

  .gradient-sphere._1 {
    width: 240px;
    height: 240px;
    top: -3.9688px;
    left: 69px;
  }

  .gradient-sphere._2-copy {
    width: 240px;
    height: 240px;
    bottom: 34px;
    left: -22px;
  }

  .image {
    width: 160px;
    max-height: 100%;
    display: block;
    bottom: 10px;
    left: -32px;
  }

  .image-2.mobile {
    min-width: 320px;
    max-width: 320px;
    min-height: 320px;
    max-height: 320px;
    display: block;
    top: -80px;
    bottom: auto;
    left: -8px;
  }

  .image-3 {
    filter: blur(1px);
    display: block;
    top: -48px;
    left: -80px;
  }

  .image-4 {
    left: 24px;
  }

  .text-block-6 {
    margin-left: 5px;
    font-size: 10px;
  }

  .button-clone-dark {
    width: auto;
  }

  .headline-magic-cursor {
    margin-top: 10px;
  }

  .hero-circle-bubble-ani.ani-floating-element {
    top: 44vw;
  }

  .label-only-desktop {
    height: 20px;
    font-size: 10px;
  }

  .section-2 {
    height: 300px;
  }

  .image-6 {
    max-width: 100%;
    min-height: 100%;
    font-size: 12px;
  }

  .h2-text-span.max {
    font-size: 64px;
  }

  .provider-sphere._1 {
    left: 15px;
  }

  .provider-sphere._2-copy {
    bottom: 69px;
    left: -44px;
  }

  .provider-sphere-copy._1 {
    left: 15px;
  }

  .provider-sphere-copy._2-copy {
    bottom: 69px;
    left: -44px;
  }

  .heading {
    font-size: 80px;
  }

  .section-ai-answer {
    text-align: center;
    min-width: auto;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
    overflow: hidden;
  }

  .image-8 {
    width: 120vw;
    top: 35%;
    left: -77px;
  }

  .container-regular-2 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
    flex: 0 auto;
    justify-content: flex-end;
    align-items: stretch;
    max-width: none;
    margin-left: 16px;
    margin-right: 16px;
    display: flex;
  }

  .image-7 {
    width: 100vw;
    top: 1%;
    left: 16%;
  }

  .image-9 {
    width: 170vw;
    max-width: none;
    top: 68px;
    left: -44%;
  }

  .grid-2 {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    place-items: center;
    max-width: none;
  }

  .text-block-7 {
    font-size: 14px;
    line-height: 16px;
  }

  .link-block__base-image {
    width: 5em;
    min-width: 19px;
  }

  .card-container--details {
    width: 80em;
    min-width: 230px;
    height: 80em;
    min-height: 230px;
  }

  .book-container {
    flex-flow: column;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .link-block__hover-image {
    width: 5em;
    min-width: 19px;
  }

  .card-container__photo-container {
    transform: rotate(0);
  }

  .details__job {
    font-size: 4.5em;
    line-height: 1.2;
  }

  .details__separator {
    margin-top: 3em;
    margin-bottom: 4em;
  }

  .details__name {
    font-size: 7em;
    line-height: 1;
  }

  .main-container__card-container {
    margin-top: 0;
    margin-bottom: auto;
  }

  .page-intro-wrapper-popup-modal {
    border-width: 0;
    padding: 5px;
  }

  .progres-bar-2 {
    width: 100%;
    margin-right: 8px;
  }

  .progres-bar-2.card-bar {
    max-width: none;
    height: 20px;
  }

  .progress-bar__content-4 {
    width: 14%;
  }

  .progress-bar__content-4._3 {
    width: 87%;
  }

  .spacer-sm-start-for-87 {
    padding-bottom: 1rem;
  }

  .h3 {
    text-align: center;
    max-width: 100%;
    margin-bottom: 8px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    font-size: 16px;
  }

  .h3.left {
    padding-left: 0;
  }

  .body-h3 {
    padding-left: 16px;
    padding-right: 16px;
    font-size: 24px;
  }

  .circles {
    height: 100%;
    margin-top: 40px;
  }

  .circle.logo {
    width: 160px;
    height: 160px;
  }

  .circle.one {
    width: 240px;
    height: 240px;
  }

  .circle.two {
    width: 40vh;
    height: 40vh;
  }

  .circle._120 {
    width: 50vh;
    height: 50vh;
  }

  .circle.four {
    width: 60vh;
    height: 60vh;
    display: block;
  }

  .page-intro-wrapper-copy {
    padding-top: 6em;
    padding-bottom: 6em;
  }

  .section-3 {
    min-width: 100vw;
    max-width: none;
    overflow: clip;
  }

  .body-default {
    text-align: center;
    min-width: 100%;
    font-size: 12px;
  }

  .body-default.left-aligned {
    text-align: center;
    margin-top: 8px;
    padding-top: 0;
  }

  .body-default.central, .body-default.fot-book {
    text-align: center;
  }

  .body-default.black {
    text-align: center;
    font-size: 16px;
    line-height: 20px;
  }

  .circles-2 {
    height: 100%;
    margin-top: 40px;
    display: flex;
  }

  .main-wrapper {
    min-width: 100%;
    padding-top: 0;
  }

  .circle-2.two {
    width: 40vh;
    height: 40vh;
  }

  .circle-2.one {
    width: 240px;
    height: 240px;
  }

  .circle-2._120 {
    width: 50vh;
    height: 50vh;
  }

  .circle-2.four {
    width: 60vh;
    height: 60vh;
    display: block;
  }

  .circle-2.logo {
    width: 160px;
    height: 160px;
  }

  .section-4 {
    align-items: center;
    height: 82%;
    margin-bottom: 0;
    padding: 0;
    display: block;
    overflow: auto;
  }

  .text-eyebrow-gradient-for-book-animation {
    text-align: center;
    mix-blend-mode: multiply;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    font-size: 16px;
    line-height: 20px;
  }

  .container-2 {
    max-width: 100%;
    margin-right: auto;
  }

  .div-block-6 {
    max-width: 200px;
    top: 48px;
    left: -40px;
  }

  .instructions-tab {
    width: 40px;
  }

  .pop-up-text-input {
    width: 100%;
    height: 36px;
    padding-left: 8px;
    font-size: 12px;
  }

  .pop-up-button {
    width: 100%;
    font-size: 16px;
  }

  .pop-up-back {
    overflow: clip;
  }

  .pop-up-box {
    max-width: 95svw;
    padding: 24px;
    left: auto;
  }

  .pop-up-exit-button {
    top: 16px;
    right: 16px;
  }

  .pop-up-wrapper {
    margin-left: auto;
    margin-right: auto;
    padding-left: 8px;
    padding-right: 8px;
    display: none;
    overflow: clip;
  }

  .pop-up-paragraph {
    font-size: 12px;
  }

  .text-eyebrow-gradient-form {
    mix-blend-mode: normal;
    margin-left: 0;
    font-size: 14px;
    line-height: 20px;
  }

  .field-label {
    margin-bottom: 4px;
    font-size: 12px;
  }

  .quick-stack-3 {
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    max-width: 100%;
    overflow: clip;
  }

  .agree-insider, .disagree-insider {
    width: 12px;
    height: 12px;
  }

  .section-operational-weapon {
    min-width: auto;
  }

  .glowing_component {
    justify-content: center;
    align-items: center;
    min-width: 100%;
  }

  .glowing_card {
    aspect-ratio: 3 / 2;
    width: 90svw;
    min-height: auto;
    margin-bottom: 40px;
    margin-left: 0;
    margin-right: 0;
    padding: 16px;
  }

  .loader-battery_component {
    max-width: 10rem;
    height: 2rem;
  }

  .battery-real_power-unit-container {
    grid-column-gap: .25rem;
    border-width: .125rem;
    border-radius: .25rem;
  }

  .battery-real_male {
    height: .5rem;
  }

  .footer-dark {
    min-width: 100vw;
    overflow: clip;
  }

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

  .footer-content {
    flex: 1;
    align-items: start;
  }

  .image-10 {
    opacity: .28;
    left: 58px;
  }

  .button-2 {
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
  }

  .button-2.phone {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-left: 0;
  }

  .button-2_content-wrap {
    grid-column-gap: .4rem;
    grid-row-gap: .4rem;
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
  }

  .text-block-9 {
    width: auto;
    font-size: 12px;
    line-height: 16px;
    overflow: clip;
  }

  .div-block-8 {
    padding-top: 0;
  }

  .card-container--details-2, .card-container--details-3 {
    width: 80em;
    min-width: 230px;
    height: 80em;
    min-height: 230px;
  }

  .text-span-6 {
    text-align: center;
  }

  .section-burnout-battery {
    min-height: 200svh;
  }

  .card-container--details-4 {
    width: 80em;
    min-width: 230px;
    height: 80em;
    min-height: 230px;
  }

  .card-container__photo-container-2 {
    transform: rotate(0);
  }

  .main-container__card-container-2 {
    margin-top: 0;
    margin-bottom: auto;
  }

  .card-container--details-5 {
    width: 80em;
    min-width: 230px;
    height: 80em;
    min-height: 230px;
  }

  .card-container__photo-container-3 {
    transform: rotate(0);
  }

  .main-container__card-container-3 {
    margin-top: 0;
    margin-bottom: auto;
  }

  .container-for-book {
    width: 100%;
    height: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .card-container--details-6 {
    width: 80em;
    min-width: 230px;
    height: 80em;
    min-height: 230px;
  }

  .section__main-container-2 {
    max-width: 100%;
  }

  .card-container__photo-container-4 {
    transform: rotate(0);
  }

  .main-container__card-container-4 {
    margin-top: 0;
    margin-bottom: auto;
  }

  .card-container--details-7 {
    width: 80em;
    min-width: 230px;
    height: 80em;
    min-height: 230px;
  }

  .section {
    padding: 30px 15px;
  }

  .section.section--foldable-card {
    min-width: auto;
    height: 100vh;
    padding: 5px;
    overflow: clip;
  }

  .card-container__photo-container-5 {
    transform: rotate(0);
  }

  .main-container__card-container-5 {
    margin-top: auto;
    margin-bottom: auto;
  }

  .page-intro-wrapper-popup-modal-copy {
    background-color: #0000;
    border-width: 0;
    width: auto;
    margin-left: 16px;
    margin-right: 16px;
    padding: 0;
  }

  .section-copy {
    padding: 30px 15px;
  }

  .section-copy.section--foldable-card {
    height: 120vh;
    padding: 5px;
  }

  .section-cta {
    min-width: 100%;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    overflow: clip;
  }

  .image-12 {
    bottom: 499px;
    left: -4rem;
  }

  .image-13 {
    top: auto;
    left: 249.5px;
  }

  .section-divider {
    align-items: center;
    height: 82%;
    margin-bottom: 0;
    padding: 0;
    display: block;
    overflow: auto;
  }

  .divider {
    opacity: 0;
    min-width: 100%;
    padding-top: 0;
  }

  .image-16 {
    width: 40px;
    top: 6678.27px;
    right: -1rem;
  }

  .image-17 {
    width: 104px;
  }

  .text-span-eyebrow-gradient {
    background-image: linear-gradient(65deg, var(--haldi--color), var(--haldi--default) 53%, var(--haldi--default) 54%, var(--haldi--color));
    mix-blend-mode: multiply;
    margin-left: auto;
    font-size: 14px;
    line-height: 14px;
  }

  .text-align-left {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
    max-width: none;
  }

  .text-align-left.money-pits {
    text-align: left;
    margin-top: 0;
    margin-left: 16px;
    margin-right: 16px;
  }

  ._100-people-container {
    max-width: 100%;
    min-height: auto;
  }

  .container-small--100 {
    width: auto;
    max-width: 100%;
  }

  .div-block-10 {
    justify-content: center;
    align-items: center;
  }

  .card {
    min-height: 280px;
  }

  .card.is-slider {
    min-height: 240px;
  }

  .doodle-list_item {
    width: 64px;
    height: 120px;
  }

  .section-doodles {
    min-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 8em;
  }

  .sphere-chart.three.green {
    width: 240px;
    height: 240px;
  }

  .sphere-chart.three.pink {
    width: 200px;
    height: 200px;
  }

  .heading-2.black {
    font-size: 40px;
  }

  .heading-2.black.hover {
    font-size: 64px;
  }

  .div-block-11 {
    width: 240px;
    height: 240px;
  }

  .image-12-copy {
    z-index: -1;
    opacity: .52;
    max-width: 80%;
    inset: 0% auto auto -45%;
  }

  .h3-copy {
    max-width: 100%;
    margin-bottom: 8px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 20px;
  }

  .h3-copy.left {
    padding-left: 0;
  }

  .image-13-copy {
    top: auto;
    left: 249.5px;
  }

  .image-100 {
    bottom: 499px;
    left: -4rem;
  }

  .image-101 {
    bottom: -64px;
  }

  .cell-107 {
    justify-content: flex-start;
    align-items: center;
  }

  .section-cta-aniket {
    min-width: auto;
    overflow: clip;
  }

  .button-cta {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    min-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .button-cta.phone {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-left: 0;
  }

  .page-loader {
    margin-left: auto;
    margin-right: auto;
    padding-left: 8px;
    padding-right: 8px;
    display: none;
    overflow: clip;
  }

  .loader-wrapper {
    display: none;
    position: static;
  }

  .sub-heading {
    background-image: linear-gradient(65deg, var(--haldi--color), var(--haldi--default) 53%, var(--haldi--default) 54%, var(--haldi--color));
    mix-blend-mode: multiply;
    margin-left: 2em;
    font-size: 14px;
    line-height: 14px;
  }

  .body-testimonial {
    text-align: center;
    max-width: 100%;
    margin-bottom: 8px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    font-size: 16px;
  }

  .body-testimonial.left {
    padding-left: 0;
  }

  .testimonial-div {
    aspect-ratio: 3 / 2;
    width: 90svw;
    min-height: auto;
    margin-bottom: 40px;
    margin-left: 0;
    margin-right: 0;
    padding: 16px;
  }

  .section-testimonial {
    min-width: 100%;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    overflow: clip;
  }

  .frost-and-sullivan-badge {
    max-width: 120px;
    bottom: -56px;
    left: 112px;
  }
}

#w-node-dbdd2302-2a0c-02d0-0a10-94f52572807b-8c699850 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

#w-node-_38ccc261-b0be-ace5-a3cb-2d1eaa671fc4-8c699850 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_83f1d2cf-2855-ecf8-4afd-df56d27a334f-8c699850 {
  grid-template-rows: auto auto auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

#w-node-_022f7651-74b1-f671-49d5-b3ebf300fe0a-8c699850 {
  grid-row: span 2 / span 2;
}

#w-node-_1636dc91-6cbc-f39e-b62e-b83e695d16d6-8c699850 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-bb727523-0281-b4a2-a919-02d2ccd56bfc-8c699850 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-dbbe4b7b-20d7-7035-e655-04e48def8fa4-8c699850, #w-node-fff2224f-332c-0fbc-0a31-b2021b4d655c-8c699850 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_28775122-5b10-4560-00fd-9adc597ca0f8-8c699850, #w-node-_6c124af1-cb2a-bd8e-4ce4-14e124e1bf31-8c699850, #w-node-_1a190d62-681c-045e-e850-4462146f0a15-8c699850, #w-node-b1467b99-021a-be7c-eb57-db76c3652249-8c699850 {
  grid-area: span 1 / span 8 / span 1 / span 8;
}

#w-node-_1c3b06ee-ea64-5ef2-32cd-a394243140c1-8c699850, #w-node-_1c3b06ee-ea64-5ef2-32cd-a394243140b6-8c699850, #w-node-_1c3b06ee-ea64-5ef2-32cd-a394243140ad-8c699850 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (min-width: 1440px) {
  #w-node-_83f1d2cf-2855-ecf8-4afd-df56d27a334f-8c699850 {
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_1636dc91-6cbc-f39e-b62e-b83e695d16d6-8c699850 {
    grid-column: span 2 / span 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-dbdd2302-2a0c-02d0-0a10-94f52572807b-8c699850 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (max-width: 479px) {
  #w-node-bb727523-0281-b4a2-a919-02d2ccd56bfc-8c699850 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}


