:root {
  --_white-mode---bg-color: #fcfdff;
  --_fonts-spaces---heading-font: "DM Sans", sans-serif;
  --_white-mode---heading-color: #0f131a;
  --_fonts-spaces---paragraph-font: Inter, sans-serif;
  --paragraph-color: #fffc;
  --heading-color: #f7f8f8;
  --_white-mode---element-color-02: #36363621;
  --_fonts-spaces---container-size: 1200px;
  --bg-color: #0c0c0c;
  --_white-mode---element-stroke-color: #e8e8e8;
  --border-background-color: #0c0c0c;
  --element-stroke-color: #4f4f4f7d;
  --accent-color: #f36725;
  --border-background-glow: #f36725;
  --element-color-01: #7d7d7d45;
  --element-color-02: #36363621;
  --_white-mode---element-color-01: white;
  --_white-mode---paragraph-color: #000c;
  --accent-color-dim: #f367251a;
  --_white-mode---accent-color: #f36725;
  --_white-mode---paragraph-dim: #0009;
  --paragraph-dim: #fff9;
  --_white-mode---accent-color-dim: #f367251a;
}

.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-form-formrecaptcha {
  margin-bottom: 8px;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

body {
  background-color: var(--_white-mode---bg-color);
  font-family: var(--_fonts-spaces---heading-font);
  color: var(--_white-mode---heading-color);
  font-size: 16px;
  line-height: 1.2;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 55px;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
}

p {
  font-family: var(--_fonts-spaces---paragraph-font);
  color: var(--paragraph-color);
  letter-spacing: .5px;
  margin-bottom: 10px;
  font-weight: 400;
  line-height: 1.5;
}

a {
  color: var(--heading-color);
  padding: 0;
  text-decoration: none;
}

.paragraph-xl {
  font-size: 20px;
  line-height: 1.5;
}

.button-container {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  border: 2px solid #ebebeb2e;
  border-radius: 20px;
  flex-direction: column;
  align-items: flex-start;
  padding: 20px;
  display: flex;
}

.black-background {
  background-color: var(--_white-mode---element-color-02);
}

.black-background-padding {
  padding: 40px;
}

.button {
  font-family: var(--_fonts-spaces---paragraph-font);
  color: var(--paragraph-color);
  text-align: center;
  background-color: #fff;
  background-image: linear-gradient(90deg, #393c43, #14191f);
  border: 1px solid #000;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  padding: 9px 16px 8px;
  font-size: 15px;
  font-weight: 600;
  transition: transform .35s cubic-bezier(.175, .885, .32, 1.275), background-color .45s;
  display: flex;
}

.button:hover {
  background-color: #cecece;
  transform: scale(1.04);
}

.button.icon-only {
  color: var(--_white-mode---heading-color);
  background-image: url('../images/Button-Arrow.svg');
  background-position: 89%;
  background-repeat: no-repeat;
  background-size: 6px;
  border-style: none;
  padding-left: 25px;
  padding-right: 34px;
}

.button.icon-only:hover {
  background-color: #cecece00;
}

.button.icon-only.no-margin-left {
  padding-left: 0;
}

.button.dark-mode {
  color: var(--_white-mode---heading-color);
  background-color: #e6e6e6;
  background-image: none;
  border-style: none;
}

.button.dark-mode.nav.login-link {
  justify-content: center;
  align-items: center;
  display: none;
}

.button.dark-mode.nav.login-link.dashboard {
  background-color: #7f3708;
}

.button.dark-mode.mobile-100 {
  margin: 11px 21px;
}

.button.icon-only-dark {
  color: var(--heading-color);
  background-color: #fff0;
  background-image: url('../images/White-Arrow.svg');
  background-position: 89%;
  background-repeat: no-repeat;
  background-size: 6px;
  border-style: none;
  padding-left: 25px;
  padding-right: 34px;
}

.button.icon-only-dark.no-padding-left {
  padding-left: 0;
}

.button.nav {
  white-space: nowrap;
}

.button.sentence {
  flex: 0 auto;
  align-self: center;
  width: auto;
  display: block;
}

._100width {
  width: 100%;
}

.white-text {
  color: #fff;
}

._4-col-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
}

.title.medium {
  font-weight: 400;
}

.section {
  z-index: 2;
  position: relative;
}

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

.section.hero {
  margin-top: -102px;
  padding-top: 102px;
  overflow: hidden;
}

.section.white-hero {
  justify-content: flex-start;
  align-items: center;
  padding-top: 79px;
  padding-bottom: 80px;
  display: flex;
  overflow: hidden;
}

.section.white-hero.no-paddings {
  padding-bottom: 0;
}

.section.not-relative {
  position: static;
}

.help-holder {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.colors-buttons {
  grid-column-gap: 90px;
  align-items: center;
  display: flex;
}

.border-box {
  border: 1px solid #cdcdcd;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: flex;
}

.help-content-holder {
  grid-row-gap: 30px;
  flex-direction: column;
  padding-top: 80px;
  display: flex;
}

.style-guide-box-holder {
  background-color: var(--_white-mode---bg-color);
  padding: 20px;
}

._6-col-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.container {
  z-index: 3;
  max-width: var(--_fonts-spaces---container-size);
  margin-left: auto;
  margin-right: auto;
  padding: 2em;
  position: relative;
}

.container.no-paddings {
  padding-top: 0;
  padding-bottom: 0;
  position: static;
}

.container.navbar {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background-color: #ffffff80;
  border: 1px solid #4747470f;
  border-radius: 16px;
  height: 70px;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.container.navbar.dark {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background-color: #0c0c0c54;
  border-color: #ffffff0f;
  overflow: visible;
}

.cols-text {
  font-size: 14px;
  font-weight: 400;
}

._8-col-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.style-guide-box-container {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  display: flex;
}

.hero-text {
  text-align: left;
  border: 1px #232323;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 65px;
}

.hero-text.changing-words {
  color: #0000;
  text-align: right;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(90deg, #ff8c00, #ff4500 100%, #fff);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-text.changing-words.api-apps {
  color: #0000;
  text-align: center;
  background-color: #0000;
  background-image: linear-gradient(145deg, #c3974d, gold 25%, #b8860b 50%, #fc3 75%, #fff4b0 100%, #fff4b0);
}

.hero-text.apiapps {
  color: #0000;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(145deg, #c3974d, #fc0 35%, #b8860b 69%, #fd4);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-text.mobile {
  display: none;
}

.nav-holder {
  z-index: 2;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.nav-menu-holder {
  opacity: 1;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.nav-menu {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.navbar {
  z-index: 21;
  background-color: #ddd0;
  padding: 16px;
  position: sticky;
  top: 0;
}

.navlinks-holder {
  grid-column-gap: 23px;
  grid-row-gap: 23px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.nav-link {
  opacity: .8;
  border-bottom: 2px solid #0000;
  margin-top: 12px;
  padding: 0 0 12px;
  transition: border-color .45s, opacity .375s;
}

.nav-link.w--current {
  opacity: 100;
  color: var(--border-background-color);
  border-bottom-color: #000;
  font-weight: 400;
}

.nav-link.white-text.w--current {
  color: var(--heading-color);
  border-bottom-color: #fff;
}

.body-dark {
  background-color: var(--bg-color);
  color: var(--heading-color);
}

.center-text {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.center-text.hero-center {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  display: flex;
}

.center-text.hero-center.version-2 {
  display: flex;
}

.center-text.connect {
  text-align: center;
  flex-flow: wrap;
  justify-content: center;
  align-items: flex-start;
  max-width: 820px;
  display: flex;
}

.center-text.spacing {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}

.hero-text-holder {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 810px;
  margin-bottom: 12px;
  display: flex;
}

.button-holder {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  margin-top: 14px;
  margin-bottom: 0;
  display: flex;
}

.button-holder.apps {
  margin-bottom: 26px;
}

.hero-animation-holder {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 30px;
  display: flex;
  position: relative;
}

.hero-animation-image {
  z-index: 1;
  border: 1px solid #444;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-animation-image-holder {
  aspect-ratio: 1.61;
  border-radius: 18px;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 2px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.line {
  background-color: #fff6;
  width: 100%;
  height: 1px;
}

.line.dim {
  background-color: var(--element-stroke-color);
}

.title-holder {
  flex-flow: row;
  display: flex;
}

.title-holder.s {
  max-width: 620px;
}

.line-text-holder {
  position: relative;
}

.line-text-container {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 30px;
  display: flex;
}

.line-text {
  color: #423e3c;
  white-space: nowrap;
  margin-top: 0;
  margin-bottom: 0;
}

.line-text.active-blur {
  color: #f36725;
  text-shadow: 0 0 20px var(--accent-color), 0 0 20px var(--border-background-glow), 0 0 15px var(--accent-color);
  position: absolute;
  inset: 0%;
}

.line-text.active-white {
  color: var(--heading-color);
}

.line-text-active {
  width: 50%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.line-text-active._2 {
  z-index: 1;
  inset: 0%;
}

.line-text-active.blur {
  z-index: 0;
  opacity: .58;
  filter: blur(8px);
  overflow: hidden;
}

.grid-buttons-holder {
  flex-flow: row;
  padding-top: 70px;
}

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

.card-holder {
  z-index: 99;
  -webkit-backdrop-filter: blur(11px);
  backdrop-filter: blur(11px);
  perspective: 1500px;
  background-color: #000;
  border-radius: 20px;
  width: 100%;
  height: 600px;
  transition: transform .375s cubic-bezier(.175, .885, .32, 1.275);
  position: relative;
  box-shadow: 0 0 #0000, 0 2px .2px #00000006, 0 4px .4px #00000007, 0 6.1px .7px #00000008, 0 8.3px .9px #00000009, 0 10.7px 1.2px #00000009, 0 13.5px 1.6px #0000000a, 0 16.6px 2.1px #0000000a, 0 20.2px 2.7px #0000000a, 0 24.6px 3.5px #0000000b, 0 30.1px 4.4px #0000000b, 0 36.8px 5.8px #0000000b, 0 45.5px 7.5px #0000000b, 0 56.9px 9.9px #0000000b, 0 72.2px 13.2px #0000000c, 0 93.6px 17.8px #0000000c, 0 125px 24.8px #0000000c, 0 175.1px 36px #0000000d, 0 270.8px 57.8px #0000000e;
}

.card-holder.api {
  background-color: #0000;
  flex: none;
  max-width: 500px;
  height: auto;
}

.card {
  background-color: #000c;
  background-image: linear-gradient(#7d7d7d45, #36363621);
  border-radius: 20px;
  height: 600px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 2px #ffffff36;
}

.card.api {
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  height: auto;
}

.card-content {
  z-index: 3;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  transform-style: preserve-3d;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding: 30px;
  display: flex;
  position: relative;
  transform: translate3d(0, 0, 29px);
}

.card-icon-holder {
  background-color: #1e1e1e;
  background-image: linear-gradient(#7d7d7d45, #36363621);
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  display: flex;
  box-shadow: inset 0 0 0 2px #ffffff0f, 0 0 #0000, -.1px .2px #00000013, -.2px .6px .2px #00000017, -.5px 1.2px .7px #0000001a, -1.1px 2.7px 2px #0000001b, -2.4px 5.6px 4.8px #0000001c, -5.1px 11.9px 11.2px #0000001d, -11.8px 27.9px 27.7px #00000020;
}

.icon {
  width: 34px;
}

.card-graphic-holder {
  z-index: 2;
  border-radius: 25px;
  height: 99.7%;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.card-graphic-holder.right {
  justify-content: center;
  align-items: flex-end;
  width: 99.7%;
  display: flex;
}

.link-holder {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  font-size: 21px;
  font-weight: 600;
  display: flex;
}

.card-blur-effect {
  opacity: 1;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.card-blur-effect.api {
  top: 25%;
  left: -6%;
}

.card-blur-effect.up {
  z-index: 2;
}

.blured-box {
  z-index: 1;
  filter: blur(19px);
  mix-blend-mode: overlay;
  background-color: #fff;
  border-radius: 50px;
  width: 300px;
  height: 90px;
}

.blured-box.right {
  border-radius: 100px;
  width: 320px;
  height: 130px;
  position: absolute;
  inset: auto auto 0% -60px;
  transform: rotate(28deg);
}

.blured-box.left {
  position: absolute;
  inset: auto auto -4% -201px;
}

.blured-box.top {
  background-color: #ffbe7d47;
  height: 120px;
  position: absolute;
  inset: auto auto 39px 0%;
}

.blured-box.bot {
  width: 310px;
  height: 130px;
  position: absolute;
  inset: auto auto -94px 4%;
  transform: rotate(-9deg);
}

.orange-blur {
  background-color: var(--accent-color);
  filter: blur(50px);
  mix-blend-mode: normal;
  border-top-right-radius: 50px;
  border-bottom-right-radius: 100px;
  border-bottom-left-radius: 100px;
  width: 360px;
  height: 280px;
  position: absolute;
  inset: auto auto -11% 33%;
  transform: rotate(0);
}

.orange-blur._02 {
  border-bottom-right-radius: 0;
  width: 310px;
  height: 320px;
  display: block;
  position: absolute;
  inset: auto auto 3% -22%;
}

.orange-blur._02.blue {
  background-color: #2775bc;
}

.orange-blur._02.purple {
  background-color: #5314da;
}

.orange-blur._02.green {
  background-color: #14da57;
}

.orange-blur._02.api {
  left: -17%;
}

.orange-blur._01 {
  width: 390px;
  left: 10%;
  transform: rotate(15deg);
}

.orange-blur._01.blue {
  background-color: #2775bc;
}

.orange-blur._01.purple {
  background-color: #5314da;
}

.orange-blur._01.green {
  background-color: #14da57;
}

.orange-blur._01.cta {
  width: 570px;
  height: 240px;
  bottom: -18%;
  left: -5%;
}

.card-icons-component-holder {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 1100px;
  position: relative;
  left: 0%;
}

.card-icon {
  justify-content: flex-end;
  align-items: center;
}

.card-icon._02 {
  position: relative;
  left: -116px;
}

.card-icon._01 {
  position: relative;
  left: -26px;
}

.card-icons-icons {
  width: 1100px;
  display: flex;
}

.card-iconscontainer {
  background-image: linear-gradient(#171310ab, #1f1f1fcc);
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  transition: border-color .4s, transform .35s cubic-bezier(.175, .885, .32, 1.275), background-color .35s;
  display: flex;
  box-shadow: inset 0 0 0 1.78px #4f4f4f80;
}

.card-iconscontainer:hover {
  background-color: #212224;
  border-color: #46474d;
  transform: scale(1.1);
}

.card-iconshero-icon {
  width: 21px;
}

.gradient-left-side {
  background-image: linear-gradient(270deg, #0d0d0d00 17%, #0d0d0d 87%);
  width: 265px;
  height: 105%;
  position: absolute;
  inset: -3% auto 0% 0%;
}

.gradient-left-side.right-side {
  background-image: linear-gradient(to right, #0d0d0d00 17%, #0d0d0d 87%);
  inset: 0% 0% 0% auto;
}

.cards-icons-wrapper {
  grid-row-gap: 18px;
  flex-direction: column;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.features-hero-icon-holder {
  grid-column-gap: 18px;
  justify-content: center;
  padding-left: 9px;
  padding-right: 9px;
  display: flex;
}

.utility-page-wrap {
  background-image: url('../images/404_1.avif');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: contain;
  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;
}

.heading-holder {
  max-width: 750px;
}

.heading-holder.l {
  max-width: 880px;
}

.spacer {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  padding-top: 14px;
  padding-bottom: 14px;
  display: flex;
}

.paragraph-holder {
  max-width: 750px;
}

.user-name {
  font-size: 19px;
  font-weight: 500;
}

.user-image {
  border-radius: 200px;
  width: 60px;
  height: 60px;
}

.hide {
  display: none;
}

.testimonal-info {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  margin-top: 30px;
  padding-bottom: 25px;
  display: flex;
  position: absolute;
  bottom: 0%;
  left: auto;
  right: auto;
}

.testimonal-slide {
  background-image: linear-gradient(180deg, var(--element-color-01), var(--element-color-02));
  border-radius: 21px;
  height: 210px;
  margin-right: 30px;
  padding: 30px;
}

.testimonal-slide.white-themed {
  background-color: var(--_white-mode---element-color-01);
  background-image: none;
  height: 300px;
  box-shadow: 0 0 #4e617600, 0 1.5px 3.2px #4e61760b, 0 3.2px 6.5px #4e61760e, 0 5.6px 10.4px #4e61760f, 0 9.9px 15.6px #4e617610, 0 19.9px 25.2px #4e617611;
}

.left-arrow {
  z-index: 10;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: absolute;
  inset: auto auto 0% 0%;
}

.arrow-holder {
  border: 1.5px solid var(--element-stroke-color);
  background-color: var(--element-color-02);
  border-radius: 40px;
  justify-content: center;
  align-items: center;
  width: 32px;
  min-width: 32px;
  height: 32px;
  display: flex;
}

.arrow-holder.dark {
  border-color: var(--border-background-glow);
  background-color: var(--accent-color);
}

.right-arrow {
  z-index: 10;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  inset: auto auto 0% 50px;
}

.testimonal-mask {
  width: 385px;
  height: 200px;
  overflow: visible;
}

.testimonal-slider {
  background-color: #ddd0;
  height: 350px;
  margin-top: 12px;
  padding-bottom: 60px;
}

.testimonal-slider.dark {
  height: 260px;
}

.arrow-icon {
  width: 9px;
}

.arrow-icon.right-side {
  margin-left: -1px;
  transform: rotate(-180deg);
}

.user-job-position {
  color: #bdbdbd73;
}

.user-job-position.dark {
  color: #0000009e;
  letter-spacing: .4px;
}

.testimonial-info-text {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  font-family: var(--_fonts-spaces---paragraph-font);
  flex-flow: column;
  display: flex;
}

.testimonial-text {
  color: #bdbdbd;
  font-weight: 400;
  line-height: 1.3;
}

.testimonial-text.dark-themed {
  color: var(--_white-mode---paragraph-color);
  letter-spacing: .4px;
  line-height: 1.4;
}

.main-feature-container {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.main-feature-images-holder {
  z-index: 1;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  width: 65%;
  transform: translate(410px);
}

.main-feature-images-holder.left {
  z-index: 3;
  width: 65%;
  position: relative;
  transform: translate(-490px);
}

.tag-feature {
  border: 1px solid var(--accent-color);
  background-color: var(--accent-color-dim);
  color: var(--accent-color);
  text-transform: uppercase;
  border-radius: 12px;
  margin: 10px 9px;
  padding: 8px 24px;
  font-size: 16px;
  font-weight: 400;
  position: static;
  inset: 0% auto auto 0%;
}

.tag-feature.purple {
  color: #9a25f3;
  background-color: #9a25f31a;
  border-color: #9a25f3;
}

.tag-feature.blue {
  color: #2558f3;
  background-color: #2558f31a;
  border-color: #2558f3;
}

.tag-feature.yellow {
  color: #1db312;
  background-color: #1db3121a;
  border-color: #1db312;
}

.tag-feature.tag-header {
  margin: 16px;
  position: relative;
  inset: 0% 0% auto;
}

.tag-feature.no-margins {
  margin: 20px 0 3px;
  padding: 6px 14px;
}

.title-3 {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.3;
}

.main-feature-image {
  border-radius: 5px;
  width: 100%;
}

.main-feature-holder {
  grid-row-gap: 200px;
  flex-direction: column;
  padding-top: 78px;
  padding-bottom: 78px;
  display: flex;
}

.main-feature-content {
  grid-row-gap: 12px;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding-left: 54px;
  display: flex;
  position: absolute;
}

.main-feature-content.right {
  align-items: flex-end;
  padding-left: 0;
  padding-right: 50px;
}

.main-feature-content-holder {
  grid-row-gap: 12px;
  flex-direction: column;
  align-items: flex-start;
  max-width: 460px;
  display: flex;
}

.left-text {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.grid-holder {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  margin-top: 24px;
  margin-bottom: 24px;
  display: flex;
}

.grid-3x {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.grid-item-holder {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  border-right: 2px solid var(--element-stroke-color);
  flex-flow: column;
  padding-right: 24px;
  display: flex;
}

.grid-item-holder.last {
  border-right-style: none;
}

.grid-item-image {
  width: 100%;
}

.sub-heading.small {
  margin-bottom: 0;
  font-size: 20px;
}

.bento-grid-holder {
  grid-column-gap: 70px;
  grid-row-gap: 70px;
  flex-flow: column;
  margin-top: 80px;
  display: flex;
}

.bento-grid {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  display: flex;
}

.bento-grid-item {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-image: linear-gradient(180deg, var(--element-color-01), var(--element-color-02));
  box-shadow: inset 0 0 0 1px var(--element-stroke-color);
  border-radius: 18px;
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 25px;
  display: flex;
}

.bento-grid-icon {
  width: 49px;
}

.bento-grid-item-holder {
  box-shadow: inset 0 0 0 2px var(--element-stroke-color);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  background-color: #00000047;
  background-image: linear-gradient(0deg, #ff8b03, #000c);
  border-radius: 18px;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  margin-top: -70px;
  margin-bottom: 10px;
  display: flex;
}

.sticky-section-holder {
  background-color: #000;
  height: 300vh;
  margin-top: 60px;
}

.sticky-section-container {
  width: 100%;
  height: 100vh;
  padding: 112px 26px 26px;
  position: sticky;
  top: 0;
}

.sticky-inside {
  background-color: #1b1c1d;
  background-image: url('../images/Dots.png');
  background-position: 0 0;
  background-repeat: repeat;
  background-size: 60%;
  border: 1px solid #323338;
  border-radius: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.title-wrapper {
  justify-content: center;
  align-items: center;
  margin-top: 8%;
  display: flex;
  position: static;
}

.cards-holder {
  grid-column-gap: 160px;
  grid-row-gap: 160px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.card-content-api {
  z-index: 3;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: center;
  transform-style: preserve-3d;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 420px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
  position: relative;
  transform: translate3d(0, 0, 29px);
}

.paragraph-api {
  color: var(--heading-color);
  text-transform: uppercase;
  padding-top: 3px;
  padding-left: 73px;
  padding-right: 73px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

.card-container {
  z-index: 6;
  opacity: 1;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.turnkey-api-holder {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 20px;
  display: grid;
}

.turnkey-api-item {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-image: linear-gradient(180deg, var(--element-color-01), var(--element-color-02));
  box-shadow: inset 0 0 0 1px var(--element-stroke-color);
  border-radius: 12px;
  flex-flow: column;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  padding: 25px;
  transition: transform .375s cubic-bezier(.175, .885, .32, 1.275);
  display: flex;
}

.turnkey-api-item:hover {
  transform: translate(0, -20px);
}

.turnkey-api-button {
  margin-top: 60px;
}

.turnkey-header-holder {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.turnkey-header-icon {
  border-radius: 18px;
  width: 80px;
  height: 80px;
}

.turnkey-title {
  font-size: 24px;
  font-weight: 600;
}

.sub-heading-holder {
  max-width: 210px;
  margin-top: 12px;
}

.marketplace-holder {
  margin-top: 52px;
  position: relative;
}

.features-component-holder {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 1100px;
  position: relative;
  left: 0%;
}

.features-icon {
  justify-content: flex-end;
  align-items: center;
}

.features-icons {
  width: 1100px;
  display: flex;
  position: relative;
}

.features-hero-icon-wrapper {
  grid-row-gap: 30px;
  perspective: 1500px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.features-hero-icon-container {
  background-color: #1b1c1d;
  border: 1px solid #323338;
  border-radius: 18px;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  transition: border-color .4s, transform .35s cubic-bezier(.175, .885, .32, 1.275), background-color .35s;
  display: flex;
}

.features-hero-icon-container:hover {
  background-color: #212224;
  border-color: #46474d;
  transform: scale(1.1);
}

.features-hero-icon {
  width: 28px;
}

.featured-icons-wrapper {
  grid-row-gap: 30px;
  flex-direction: column;
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.features-hero-icon-holder-2 {
  grid-column-gap: 30px;
  justify-content: center;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.marketplace-icon-holder {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.marketplace-icon-container {
  z-index: 1;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.icon-holder {
  -webkit-backdrop-filter: blur(11px);
  backdrop-filter: blur(11px);
  background-image: linear-gradient(#0000002e, #000);
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  width: 170px;
  height: 170px;
  display: flex;
  overflow: hidden;
  box-shadow: inset 0 0 0 2px #fff3;
}

.marketplace-icon {
  z-index: 2;
  width: 68px;
  position: relative;
}

.markplace-text {
  border: 2px solid #ffffff26;
  border-radius: 7px;
  width: 420px;
  min-width: 420px;
  max-width: 420px;
  padding: 12px;
}

.marketplace-text-holder {
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  font-family: var(--_fonts-spaces---paragraph-font);
  text-align: center;
  background-image: linear-gradient(#000, #00000021);
  border-radius: 7px;
  max-width: 420px;
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.4;
  overflow: hidden;
}

.overlay {
  background-image: linear-gradient(180deg, #fff0, var(--accent-color));
  opacity: 0;
  position: absolute;
  inset: 0%;
}

.footer-section {
  margin-top: 120px;
}

.card-holder-cta {
  -webkit-backdrop-filter: blur(11px);
  backdrop-filter: blur(11px);
  perspective: 1500px;
  background-color: #00000014;
  border-radius: 20px;
  width: 100%;
  transition: transform .375s cubic-bezier(.175, .885, .32, 1.275);
  box-shadow: 0 0 #0000, 0 2px .2px #00000006, 0 4px .4px #00000007, 0 6.1px .7px #00000008, 0 8.3px .9px #00000009, 0 10.7px 1.2px #00000009, 0 13.5px 1.6px #0000000a, 0 16.6px 2.1px #0000000a, 0 20.2px 2.7px #0000000a, 0 24.6px 3.5px #0000000b, 0 30.1px 4.4px #0000000b, 0 36.8px 5.8px #0000000b, 0 45.5px 7.5px #0000000b, 0 56.9px 9.9px #0000000b, 0 72.2px 13.2px #0000000c, 0 93.6px 17.8px #0000000c, 0 125px 24.8px #0000000c, 0 175.1px 36px #0000000d, 0 270.8px 57.8px #0000000e;
}

.card-holder-cta:hover {
  transform: scale(1.02);
}

.footer-container {
  background-image: linear-gradient(#191919, #0b0b0b);
  border: 1px solid #000;
  border-top: 2px solid #fff3;
  margin-top: -260px;
  padding-top: 300px;
}

.footer-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 50px;
  padding-right: 0;
  display: flex;
}

.footer-brand {
  grid-row-gap: 18px;
  flex-direction: column;
  align-items: flex-start;
  max-width: 300px;
  display: flex;
}

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

.footer-block {
  grid-row-gap: 10px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.title-small {
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

.footer-link {
  font-family: var(--_fonts-spaces---paragraph-font);
  color: #9a9a9a;
  font-size: 16px;
  line-height: 1.2;
  text-decoration: none;
  transition: color .475s;
}

.footer-link:hover {
  color: #fff;
}

.card-anim {
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 2px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.animate {
  height: 100%;
}

.light-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.light-wrapper._02 {
  z-index: 1;
  opacity: .4;
  justify-content: flex-end;
  align-items: flex-start;
  inset: 0% 0% auto;
}

.lights-holder {
  grid-column-gap: 70px;
  opacity: .41;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  top: -332px;
  left: -443px;
  transform: rotate(-30deg);
}

.lights-holder._02 {
  grid-column-gap: 50px;
  justify-content: flex-end;
  align-items: center;
  top: -41.8vh;
  left: auto;
  right: 7.9vw;
  transform: rotate(20deg);
}

.light {
  opacity: .4;
  filter: blur(18px);
  background-image: linear-gradient(#fff 5%, #cfcfcf00 67%);
  width: 180px;
  height: 1000px;
}

.light.left {
  opacity: .1;
  filter: blur(9px);
  width: 110px;
  left: 442.5px;
}

.light.left._01 {
  opacity: 7;
  background-image: linear-gradient(#f36725 5%, #cfcfcf00 67%);
}

.light.middle {
  opacity: .58;
}

.light.middle._02 {
  opacity: 60;
  background-image: linear-gradient(#f36725 5%, #cfcfcf00 67%);
}

.light.right {
  opacity: .3;
  filter: blur(16px);
  width: 110px;
  right: 400px;
}

.light.right._03 {
  opacity: 19;
  background-image: linear-gradient(#f36725 5%, #cfcfcf00 67%);
}

.company-logo {
  opacity: 1;
  object-fit: contain;
  width: 120px;
}

.company-logo.dpo {
  width: 200px;
  max-width: none;
  height: 100px;
}

.company-logo.keap {
  width: 90px;
}

.company-logo.activecampaign {
  width: auto;
}

.company-logo.mailchimp {
  width: 155px;
}

.company-logo.customer-logo {
  width: auto;
  height: 100%;
  max-height: 80px;
}

.company-logo-wrapper {
  flex: none;
  padding-left: 0;
  padding-right: 0;
}

.company-logo-wrapper.dpo {
  margin-right: 42px;
}

.company-logo-wrapper.activecampaign {
  width: 350px;
  height: auto;
}

.company-logo-container {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-direction: row;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  padding-right: 50px;
  display: flex;
}

.company-logo-holder {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.company-logo-holder.customer-logos-holder {
  opacity: .7;
}

.trusted-by {
  padding-top: 0;
  padding-bottom: 12px;
  position: relative;
}

.trusted-by.product-page {
  margin-top: 30px;
}

.card-bkg {
  z-index: -1;
  background-color: var(--bg-color);
  backface-visibility: visible;
  transform-origin: 50%;
  border-radius: 22px;
  width: 100%;
  min-width: 100%;
  height: 100%;
  min-height: 100%;
  position: absolute;
}

.card-bkg.hero {
  width: 100vw;
  min-width: 100vw;
  height: 100vw;
  min-height: 100vw;
}

.code-embed {
  display: none;
}

.card-anim-holder {
  perspective: 1500px;
}

.left-headings {
  grid-row-gap: 40px;
  border-bottom: 1px solid var(--_white-mode---element-color-02);
  color: var(--_white-mode---paragraph-color);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 70%;
  padding-bottom: 60px;
  text-decoration: none;
  display: flex;
}

.top {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 975px;
  display: flex;
}

.bot {
  grid-row-gap: 12px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 970px;
  text-decoration: none;
  display: flex;
}

.dark-paragraph {
  font-family: var(--_fonts-spaces---paragraph-font);
  color: var(--_white-mode---paragraph-color);
  margin-top: 15px;
  font-size: 17px;
  font-weight: 400;
}

.dark-paragraph.no-margins {
  flex: 0 auto;
  width: 100%;
  margin-bottom: 0;
  font-size: 20px;
}

.dark-paragraph.no-margins.list {
  width: auto;
  margin-right: 10px;
}

.dark-paragraph.no-margins.list.head {
  font-size: 20px;
}

.no-margins {
  margin-top: 0;
  margin-bottom: 14px;
}

.caps {
  text-transform: uppercase;
  overflow-wrap: normal;
}

.features-holder {
  padding-top: 60px;
}

.white-box-holder {
  z-index: 0;
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  border: 1px solid var(--_white-mode---element-stroke-color);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-radius: 16px;
  flex-flow: column;
  width: 100%;
  padding: 25px;
  display: flex;
  position: static;
  box-shadow: 0 0 #4b4b4b00, 0 1.1px .7px #4b4b4b08, 0 2.4px 1.5px #4b4b4b0a, 0 4px 2.5px #4b4b4b0b, 0 6.2px 4.1px #4b4b4b0c, 0 9.8px 6.6px #4b4b4b0c, 0 16.4px 11.6px #4b4b4b0d, 0 31.8px 23.1px #4b4b4b0e;
}

.white-box-holder.dark-box {
  border-color: var(--element-stroke-color);
  background-image: linear-gradient(180deg, var(--element-color-01), var(--element-color-02));
  box-shadow: none;
  height: 500px;
  position: relative;
  overflow: hidden;
}

.white-box-holder.hide {
  display: none;
}

.white-box-holder.apiapp {
  min-width: 350px;
  height: auto;
  min-height: 550px;
  overflow: hidden;
}

.box-icon-holder {
  width: 24px;
}

.box-icon-holder.emoji {
  width: 41px;
}

.box-paragraph {
  color: #0f131acc;
  letter-spacing: .4px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.box-paragraph.heading-text {
  color: #000;
  letter-spacing: 0;
  font-size: 22px;
  font-weight: 500;
}

.box-paragraph.date {
  color: #0f131a96;
  font-size: 14px;
}

.dark-text {
  color: #000c;
  font-weight: 600;
}

.white-box-container {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  margin-top: 24px;
  display: flex;
}

.overview {
  padding-top: 30px;
}

.api-apps-holder {
  margin-top: 70px;
}

.api-app-title-holder {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.api-app-icon {
  width: 80px;
  margin-right: 15px;
}

.white-box-container-3x {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 24px;
  display: grid;
}

.white-box-container-3x.hide {
  display: none;
}

.api-text-holder {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
}

.api-title {
  font-size: 22px;
  font-weight: 600;
}

.button-top-margin {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.api-icons-wrapper {
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 18px;
  display: none;
}

.api-icon {
  z-index: 2;
  border-radius: 10px;
  width: 80px;
  height: 80px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 #54545400, 0 1px .4px #54545408, 0 2px .8px #5454540a, 0 3.4px 1.6px #5454540b, 0 5.4px 2.9px #5454540c, 0 8.9px 5.3px #5454540c, 0 15.4px 10.4px #5454540d, 0 30.6px 22.8px #5454540e;
}

.line-api {
  width: 34px;
}

.api-text {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.home-words-content {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  justify-content: flex-start;
  align-items: center;
  height: 70px;
  display: flex;
  position: relative;
}

.brand {
  width: 100%;
}

.brand-2 {
  width: 120px;
}

.bento-title {
  color: var(--_white-mode---bg-color);
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
}

.bento-grid-title-holder {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  flex-flow: column;
  display: flex;
}

.apiapps {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 65px;
}

.heading {
  display: none;
}

.hero-section-mac-holder {
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
  position: relative;
}

.hero-section-mac-holder.animate-on-load-05 {
  justify-content: flex-start;
  align-items: center;
}

.hero-section-mac {
  justify-content: center;
  align-items: center;
  max-width: 1500px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-section-mac-container {
  z-index: 2;
  perspective: 1500px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
  position: relative;
}

.mac-image {
  z-index: 2;
  position: relative;
}

.error-message {
  color: var(--heading-color);
  text-align: center;
  background-color: #333;
  border: 1px solid #aa5252;
  border-radius: 8px;
  width: 100%;
  margin-bottom: 0;
  font-size: 16px;
  box-shadow: 0 4px 4px #0000003d, 0 0 14px #0000003d, 0 21px 36px #ff00041f;
}

.error-message::placeholder {
  color: #7d7d7d;
  font-size: 15px;
}

.animate-on-load-04.full {
  width: 100%;
}

.text-field {
  color: #fff;
  background-color: #181818;
  border: 1px solid #303030;
  border-radius: 8px;
  width: 100%;
  height: 51px;
  margin-bottom: 0;
  font-family: Inter, sans-serif;
  font-size: 16px;
  transition: border-color .45s, box-shadow .425s;
  box-shadow: 0 4px 4px #0000003d, 0 0 14px #0000003d, 0 21px 36px #37373714;
}

.text-field:hover {
  border-color: #777;
  box-shadow: 0 0 4px #0000003d, 0 17px 20px #0000003d, 0 21px 36px #5050501f;
}

.text-field:focus {
  border-color: var(--accent-color);
  box-shadow: 0 4px 18px #0000003d, 0 0 14px #0000003d, 0 21px 90px #635bff0a;
}

.text-field.white {
  border-color: var(--_white-mode---element-stroke-color);
  background-color: var(--_white-mode---element-color-01);
  color: var(--bg-color);
  width: 100%;
  font-weight: 500;
  box-shadow: 0 21px 36px #37373714;
}

.text-field.white:focus {
  border-color: var(--accent-color);
}

.text-field.white::placeholder {
  color: #0c0c0c87;
}

.text-field.white.message {
  position: relative;
}

.text-field.msg {
  min-width: 100%;
  max-width: 100%;
  height: 150px;
  min-height: 150px;
  max-height: 250px;
}

.text-field.with-icon {
  background-image: url('../images/file-text.svg');
  background-position: 12px;
  background-repeat: no-repeat;
  background-size: auto;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 50px;
  display: flex;
}

.text-field.with-icon.white {
  background-image: url('../images/file-text-1.svg');
}

.fixed-nav {
  z-index: 30;
  position: fixed;
  inset: 0% 0% auto;
}

.features-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  width: 100%;
  padding-top: 20px;
  display: flex;
}

.feature-boxes {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  white-space: normal;
  flex-flow: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row dense;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.box-emoji {
  font-size: 36px;
}

.white-box-holder-center {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  border: 1px solid var(--_white-mode---element-stroke-color);
  text-align: center;
  border-radius: 16px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 23%;
  padding: 25px;
  display: flex;
  box-shadow: 0 0 #1f406900, 0 .8px .2px #1f406908, 0 1.8px .6px #1f40690a, 0 3px 1.2px #1f40690b, 0 4.9px 2.4px #1f40690c, 0 8.2px 4.8px #1f40690c, 0 14.6px 10px #1f40690d, 0 29.8px 23.1px #1f40690e;
}

.feature-card-holder {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  justify-content: center;
  align-items: center;
  max-width: 80%;
  margin-top: 62px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 150px;
  display: flex;
}

.feature-card {
  grid-column-gap: 60px;
  grid-row-gap: 60px;
  flex-flow: column;
  display: flex;
}

.feature-card.right {
  margin-top: 120px;
}

.white-box-feature {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  border: 2px solid var(--_white-mode---accent-color);
  text-align: center;
  border-radius: 16px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 440px;
  padding: 19px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 0 #1f406900, 0 .8px .2px #1f406908, 0 8.2px 4.8px #1f40690c, 0 14.6px 10px #1f40690d, 0 29.8px 23.1px #1f40690e;
}

.box-content {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  text-align: left;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 6px;
  display: flex;
}

.white-box-image-holder {
  border: 1px solid #dadada;
  border-radius: 12px;
  width: 100%;
  overflow: hidden;
  box-shadow: 0 9px 14px #0000001a;
}

.benefit-image {
  width: 100%;
  max-width: 420px;
}

.blog-holder {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.blog-container {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  width: 80%;
  display: grid;
}

.blog-box {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  border: 1px solid var(--_white-mode---element-stroke-color);
  text-align: center;
  border-radius: 16px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding: 19px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 0 #1f406900, 0 .8px .2px #1f406908, 0 8.2px 4.8px #1f40690c, 0 14.6px 10px #1f40690d, 0 29.8px 23.1px #1f40690e;
}

.blog-content {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  margin-top: 12px;
  display: flex;
}

.blog-image-holder {
  border: 1px solid #dadada;
  border-radius: 12px;
  width: 100%;
  overflow: hidden;
}

.div-block-4 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: row;
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  place-items: stretch stretch;
  height: 78px;
  display: grid;
  overflow: hidden;
}

.api-app {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(145deg, #c3974d, gold 25%, #b8860b 50%, #fc3 75%, #fff4b0);
  -webkit-background-clip: text;
  background-clip: text;
}

.pricing-holder {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  border: 2px solid #e8e8e8;
  border-radius: 14px;
  justify-content: center;
  align-items: flex-start;
  padding: 19px;
  display: flex;
}

.pricing-container {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  display: flex;
}

.practitioners-holder {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  display: flex;
}

.addon-container {
  transition: transform .15s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px #56565600, 0 5px 12px #56565612;
}

.addon-container:hover {
  transform: translate(0, -12px);
}

.addon-container.input {
  border: 2px solid #e0e0e0;
  border-radius: 20px;
  padding-left: 0;
  padding-right: 0;
}

.addon-container.inputtext {
  border: 1px solid #000;
  border-radius: 20px;
}

.addon-tick {
  z-index: 4;
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 12px;
  padding-left: 22px;
  padding-right: 27px;
  display: flex;
  position: relative;
}

.addon-tick.list {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: row;
  align-items: center;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.addon-tick-holder {
  background-color: #00000040;
  border-radius: 50px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 26px;
  height: 26px;
  display: flex;
}

.price-holder {
  margin-top: 20px;
}

.price-holder.vertical {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.price {
  font-size: 30px;
  font-weight: 600;
}

.add-ons {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template: "Area Area" 2fr
  / 1fr 1fr;
  grid-auto-columns: .25fr;
  display: grid;
}

.addon-container-copy {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  text-align: center;
  border: 2px solid #e8e8e8;
  border-radius: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  min-width: 310px;
  padding: 15px;
  display: flex;
  position: sticky;
  top: 120px;
  overflow: hidden;
  box-shadow: 0 0 #56565600, 0 1.3px 5.3px #56565629;
}

.month-tag {
  opacity: .9;
  color: var(--_white-mode---paragraph-color);
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 500;
}

.month-tag.wrap {
  white-space: normal;
}

.month-tag.hightlighted {
  color: var(--bg-color);
  font-weight: 600;
}

.month-tag.smaller {
  font-size: 14px;
  font-weight: 500;
}

.custom-checkbox {
  z-index: 5;
  cursor: pointer;
  background-color: #0000;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  border: 2px solid #e0e0e0;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  transition: border-color .5s;
  display: block;
  position: absolute;
  inset: 0%;
  overflow: hidden;
  box-shadow: 0 2px 5px #0000;
}

.custom-checkbox:hover {
  box-shadow: none;
}

.custom-checkbox:active {
  box-shadow: none;
  border-radius: 20px;
}

.custom-checkbox.w--redirected-checked {
  box-shadow: none;
  background-color: #0000;
  background-image: none;
  background-size: auto;
  border-color: #1ab759;
}

.custom-checkbox.w--redirected-focus {
  box-shadow: none;
}

.custom-checkbox.horizontal {
  border-style: none;
  flex: 0 auto;
  align-self: auto;
  width: 500px;
  display: block;
}

.final-price-text {
  font-size: 26px;
  font-weight: 600;
}

.final-price-text.listprice {
  color: var(--_white-mode---paragraph-dim);
  text-decoration: line-through;
}

.checkbox-field {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: var(--_white-mode---bg-color);
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  padding-top: 10px;
  padding-left: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.checkbox-field.list {
  grid-column-gap: 27px;
  grid-row-gap: 27px;
  flex-flow: row;
  flex: none;
  width: auto;
  margin-top: 12px;
  margin-bottom: 12px;
  position: relative;
}

.partners {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  border-top: 1px solid var(--_white-mode---element-color-02);
  border-bottom: 1px solid var(--_white-mode---element-color-02);
  flex-flow: column;
  padding-top: 70px;
  padding-bottom: 70px;
  display: flex;
}

.partner-grid {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.partner-grid._1column {
  grid-template-columns: 1fr;
}

.partner-image {
  width: 160px;
}

.schedule-a-demo {
  z-index: 20;
  padding: 0;
  display: block;
  position: fixed;
  inset: auto 0% 0%;
}

.schedule-a-demo-contaier {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  border-width: 2px;
  border-color: var(--_white-mode---accent-color);
  background-color: var(--_white-mode---element-color-02);
  -webkit-backdrop-filter: blur(11px);
  backdrop-filter: blur(11px);
  border-radius: 0;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  padding: 14px;
  display: flex;
  box-shadow: 0 4px 5px #80808033;
}

.questions-holder {
  border-radius: 12px;
  flex-direction: column;
  max-width: 800px;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 32px;
  display: flex;
}

.heading-and-supporting-text {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 410px;
  display: flex;
}

.question-icon {
  filter: invert();
  width: 24px;
  min-width: 24px;
}

.small-cta-heading {
  color: var(--_white-mode---heading-color);
  font-size: 20px;
  font-weight: 500;
}

.questions-cta {
  z-index: 1;
  grid-row-gap: 84px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0;
  display: flex;
  position: relative;
}

.questions-container {
  border-bottom: 2px solid var(--_white-mode---element-color-02);
  cursor: pointer;
  flex-direction: column;
  margin-bottom: 32px;
  padding-bottom: 32px;
  padding-left: 0;
  padding-right: 0;
  transition: background-color .325s;
  display: flex;
}

.questions-container.last-one {
  border-bottom-style: none;
  margin-bottom: 9px;
}

.answer-holder {
  justify-content: flex-start;
  max-width: 750px;
  display: flex;
  overflow: hidden;
}

.question {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-direction: row;
  justify-content: space-between;
  display: flex;
}

.question-text {
  font-size: 18px;
  font-weight: 500;
}

.question-text.q1 {
  color: var(--accent-color);
  font-size: 22px;
  font-weight: 600;
}

.answer-text {
  font-family: var(--_fonts-spaces---paragraph-font);
  color: #000000c9;
  padding-top: 8px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.5;
}

.answer-text.a1 {
  color: #f36725;
  font-size: 18px;
}

.cta-questions {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  border: 1px solid var(--_white-mode---element-stroke-color);
  text-align: center;
  border-radius: 16px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding: 25px;
  display: flex;
  overflow: hidden;
  box-shadow: 0 0 #1f406900, 0 .8px .2px #1f406908, 0 8.2px 4.8px #1f40690c, 0 14.6px 10px #1f40690d, 0 29.8px 23.1px #1f40690e;
}

.div-block-5 {
  height: 78px;
  margin-top: 0;
  overflow: hidden;
}

.popup-holder {
  z-index: 20;
  opacity: 1;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background-color: #ffffffb3;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 82px;
  display: none;
  position: fixed;
  inset: 0%;
}

.popup-holder.dark-mode {
  opacity: 1;
  color: var(--heading-color);
  background-color: #000000b3;
  display: none;
}

.popup-holder.studioscaler {
  justify-content: flex-start;
  align-items: center;
  padding-top: 87px;
  display: none;
}

.popup-container {
  z-index: 2;
  border: 1px solid var(--_white-mode---element-stroke-color);
  background-color: var(--_white-mode---element-color-01);
  border-radius: 12px;
  max-height: 84vh;
  padding: 39px;
  position: relative;
  box-shadow: 0 0 #0000, 0 1px .4px #00000008, 0 2px .8px #0000000a, 0 3.4px 1.6px #0000000b, 0 5.4px 2.9px #0000000c, 0 8.9px 5.3px #0000000c, 0 15.4px 10.4px #0000000d, 0 30.6px 22.8px #0000000e;
}

.popup-container.dark-mode {
  border-color: var(--element-stroke-color);
  background-color: #fff0;
  background-image: linear-gradient(180deg, var(--element-color-02), var(--element-stroke-color));
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  max-width: 660px;
  height: auto;
  max-height: 84vh;
  overflow: auto;
}

.popup-container._100-h {
  flex-flow: column;
  height: 100%;
  min-height: 710px;
  max-height: 710px;
  display: flex;
}

.popup-container._100-h.studioscaler {
  width: 800px;
  min-height: 1200px;
  max-height: 1200px;
  margin-top: 3px;
  margin-bottom: 3px;
  overflow: visible;
}

.popup-title-holder {
  text-align: center;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 20px;
  display: flex;
}

.popup-x-holder {
  background-color: var(--accent-color);
  cursor: pointer;
  border: 1px solid #c43333;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  transition: transform .375s cubic-bezier(.175, .885, .32, 1.275);
  display: flex;
  position: absolute;
  inset: 14px 20px auto auto;
}

.popup-x-holder:hover {
  background-color: #ca541d;
  transform: scale(1.1);
}

.popup-x {
  width: 20px;
}

.calendly {
  height: 100%;
  margin-top: 12px;
  display: block;
}

.logo-wrapper {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 3px;
  display: flex;
}

.api-icon-smal {
  border: 2px solid #bebebe4d;
  border-radius: 12px;
  width: 80px;
  box-shadow: 0 0 #0000, 0 1px .4px #00000008, 0 2px .8px #0000000a, 0 3.4px 1.6px #0000000b, 0 5.4px 2.9px #0000000c, 0 8.9px 5.3px #0000000c, 0 15.4px 10.4px #0000000d, 0 30.6px 22.8px #0000000e;
}

.graph-logo-image {
  opacity: .22;
  width: 630px;
  position: absolute;
  inset: auto auto -15% -6%;
}

.graph-logo-image._02 {
  inset: -9% -11% auto auto;
}

.apiappimage {
  width: 100px;
  margin-left: 27px;
}

.connection-header-title {
  font-size: 60px;
  display: inline;
}

.connection-header-title.orange {
  color: var(--accent-color);
}

.hero-text-wapper {
  flex-flow: column;
  align-items: center;
  margin-right: 12px;
  display: flex;
}

.hero-text-wapper._02 {
  display: inline;
}

.api-info {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
  display: flex;
}

.api-info.with-bg {
  background-image: linear-gradient(180deg, var(--element-color-01), var(--element-color-02));
  border-radius: 12px;
  padding: 24px;
}

.api-icon-small {
  width: 80px;
}

.api-icon-small.m {
  border-radius: 12px;
  width: 170px;
}

.api-icon-small.s {
  border-radius: 12px;
  width: 125px;
}

.api-info-text-holder {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 780px;
  display: flex;
}

.app-endpoints {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  border-bottom: 1px solid var(--element-stroke-color);
  grid-template-rows: auto;
  grid-template-columns: .5fr .75fr;
  grid-auto-columns: 1fr;
  padding-bottom: 50px;
  display: grid;
}

.app-endpoints.last {
  border-bottom-style: none;
}

.endpoint-title {
  position: sticky;
  top: 150px;
}

.underline-link {
  color: var(--_white-mode---bg-color);
  text-decoration: underline;
}

.list-endpoints {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  flex-flow: column;
  display: flex;
}

.endpoint-block {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  background-image: linear-gradient(180deg, var(--element-color-01), var(--element-color-02));
  border-radius: 21px;
  flex-flow: column;
  max-width: 520px;
  padding: 30px;
  display: flex;
}

.endpoint-name {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
}

.endpoint-description {
  margin-bottom: 0;
}

.trigger-paragraph-holder {
  max-width: 79%;
}

.endpoints-group {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: column;
  display: flex;
}

.regural-title {
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.agents-grid {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 12px;
  margin-bottom: 18px;
}

.connect-her {
  max-width: 470px;
}

.connect-info {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
}

.connect-icons-holder {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.appiconpageheader {
  border-radius: 12px;
  width: 100px;
}

.connect-icon-small {
  width: 50px;
}

.api-info-holder {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 30px;
  display: flex;
}

.api-tempalte-holder {
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 330px;
  display: flex;
}

.api-icons {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: row;
  justify-content: center;
  align-items: flex-start;
  margin-top: 12px;
  display: flex;
}

.api-connet {
  width: 160px;
  margin-top: 30px;
}

.white-paper {
  z-index: 20;
  opacity: 1;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background-color: #ffffffb3;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 76px;
  display: none;
  position: fixed;
  inset: 0%;
}

.white-paper.dark-mode {
  background-color: #000000b3;
  display: none;
}

.white-paper-container {
  z-index: 2;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  border: 1px solid var(--_white-mode---element-stroke-color);
  background-color: var(--_white-mode---element-color-01);
  border-radius: 12px;
  flex-flow: column;
  max-width: 50%;
  height: auto;
  max-height: 84vh;
  padding: 28px;
  display: flex;
  position: relative;
  overflow: auto;
  box-shadow: 0 0 #0000, 0 1px .4px #00000008, 0 2px .8px #0000000a, 0 3.4px 1.6px #0000000b, 0 5.4px 2.9px #0000000c, 0 8.9px 5.3px #0000000c, 0 15.4px 10.4px #0000000d, 0 30.6px 22.8px #0000000e;
}

.white-paper-container.dark-mode {
  border-color: var(--element-stroke-color);
  background-color: #fff0;
  background-image: linear-gradient(180deg, var(--bg-color), var(--element-stroke-color));
}

.form-wrapper, .form-text-holder {
  width: 100%;
}

.form-text-holder.message {
  height: 100%;
}

.form-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template: ". ."
                 ". ."
                 ". ."
                 "Area Area"
                 "Area Area"
                 "Area-2 Area-2"
                 / 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 12px;
  display: grid;
}

.html-embed-14 {
  width: 100%;
}

.form-2 {
  flex-flow: column;
  width: 100%;
  display: flex;
}

.form-block-2 {
  width: 100%;
}

.success-message {
  background-color: var(--accent-color);
  color: var(--heading-color);
  border-radius: 12px;
  padding: 29px;
  font-weight: 400;
}

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

.comapny-text {
  margin-top: 0;
  margin-bottom: 10px;
}

.company-type {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  display: flex;
}

.partners-holder {
  font-family: var(--_fonts-spaces---paragraph-font);
  color: var(--paragraph-color);
  font-size: 18px;
  font-weight: 400;
}

.dark-link {
  color: var(--accent-color);
  font-weight: 500;
  text-decoration: underline;
}

.ease-dropdown-list {
  background-color: #0e0f11;
}

.ease-dropdown-list.w--open {
  background-color: #0e0f1100;
  border-right: 1px solid #ffffff1a;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: auto;
  min-width: 0;
  max-width: 1010px;
  height: auto;
  margin-top: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 11px;
  display: flex;
  position: fixed;
  overflow: hidden;
}

.ease-dropdown-link {
  font-family: var(--_fonts-spaces---heading-font);
  color: #fff;
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  font-size: 14px;
  transition: color .35s;
}

.ease-dropdown-link:hover {
  color: #b4bcd0;
}

.ease-dropdown-link.ease-large {
  font-size: 16px;
  font-weight: 400;
}

.ease-dropdown-link.ease-large:hover {
  color: var(--accent-color);
}

.ease-dropdown-link.xl {
  color: var(--accent-color);
  font-size: 17px;
  font-weight: 500;
}

.ease-dropdown-grid {
  grid-column-gap: 18px;
  grid-row-gap: 14px;
  border-bottom: 1px solid var(--element-stroke-color);
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  place-items: flex-start start;
  margin-bottom: 21px;
  padding-bottom: 8px;
  display: inline-block;
}

.ease-dropdown-grid.hide {
  display: none;
}

.ease-dropdown-grid._2x {
  grid-column-gap: 18px;
  grid-row-gap: 14px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.ease-dropdown-list-holder {
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  display: inline-flex;
}

.ease-dropdown-list-holder.vertoca {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  transition: transform .3s;
  display: inline-flex;
}

.ease-dropdown-list-holder.vertoca:hover {
  transform: translate(8px);
}

.ease-dropdown-01-container {
  grid-column-gap: 11px;
  grid-row-gap: 11px;
  text-align: left;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 3.25fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 1px 8px 8px;
  display: flex;
}

.ease-drop-down-larg-icon {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 10px;
}

.ease-drop-down-larg-icon.main {
  grid-column-gap: 9px;
  grid-row-gap: 9px;
  padding-bottom: 13px;
}

.ease-dropdown-paragraph {
  color: var(--paragraph-dim);
  white-space: nowrap;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 300;
}

._w-dropdown {
  font-family: var(--_fonts-spaces---paragraph-font);
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.ease-dropdown-toggle {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: #00000045;
  border: 1px solid #ffffff26;
  border-radius: 40px;
  padding: 8px 14px;
  display: flex;
}

.ease-dropdown-03-holder {
  border: 1px solid var(--element-stroke-color);
  background-image: linear-gradient(180deg, var(--border-background-color), #141414a1);
  -webkit-backdrop-filter: saturate(0%) blur(25px);
  backdrop-filter: saturate(0%) blur(25px);
  border-radius: 14px;
  width: 100%;
  height: auto;
  padding: 16px;
  display: flex;
  overflow: hidden;
}

.ease-dropdown-title-text {
  color: #fff;
  padding-top: 0;
  padding-bottom: 0;
  font-family: Lato, sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.container-blur {
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background-color: #00000003;
  border-radius: 16px;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.drop-down-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  text-overflow: clip;
  column-count: 2;
  flex-flow: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: block;
}

.partner-page-wrapper {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: -103px;
  padding-top: 120px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.partner-page-elements-holder {
  z-index: 2;
  flex-flow: column;
  order: 0;
  width: 24vw;
  display: flex;
  position: absolute;
  inset: 2% 0% auto auto;
}

.partner-page-elements {
  width: 19vw;
}

.partner-page-elements._01 {
  filter: blur(7px);
  width: 80%;
  position: relative;
  right: -173px;
  transform: rotate(9deg);
}

.partner-page-elements._02 {
  width: 80%;
  position: relative;
  top: -41px;
  left: -49px;
  transform: rotate(-20deg);
}

.partner-page-elements._03 {
  z-index: auto;
  filter: blur(9px);
  order: 0;
  width: 50%;
  position: relative;
  top: -21px;
  left: -23px;
  transform: rotate(-31deg);
}

.hero-section-center {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.hero-section-container-center {
  grid-row-gap: 12px;
  text-align: center;
  flex-direction: column;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.hero-center {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.hero-paragraph {
  max-width: 770px;
}

.icons-holder {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  background-color: #fff0;
  border: 1px solid #d8d8d8;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 1000px;
  min-width: auto;
  max-width: 1000px;
  height: 240px;
  min-height: auto;
  margin-bottom: 12px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-left: 16px;
  padding-right: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.api-icon-holder {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-start;
  display: flex;
}

.grid-6 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: center;
  display: grid;
}

.partner-holder {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding: 33px;
  display: flex;
}

.ai-agents {
  z-index: 2;
  display: none;
  position: relative;
}

.appname {
  font-size: 22px;
}

.initials {
  background-color: #d6611c5c;
  border-radius: 200px;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  font-weight: 800;
  display: flex;
}

.text-block {
  color: #ececec;
  font-family: DM Sans, sans-serif;
  font-size: 28px;
  font-weight: 500;
}

.apiappicon {
  z-index: -1;
  width: 200px;
  position: absolute;
  inset: auto 0% 0% auto;
}

.card-video {
  z-index: 1;
  opacity: .5;
  border: 1px solid #444;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  position: relative;
}

.app-icon-header {
  width: 200px;
  position: absolute;
  inset: auto 0% 0% auto;
}

.tabs {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: 12px;
  display: flex;
}

.tab-link-wraper {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: var(--heading-color);
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.tab-link {
  border: 1px solid var(--element-stroke-color);
  background-color: #ddd0;
  background-image: linear-gradient(180deg, var(--element-color-01), var(--element-color-02));
  border-radius: 12px;
  transition: border .325s;
}

.tab-link.w--current {
  border-color: var(--accent-color);
  background-color: #ddd0;
}

.tabs-menu {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  display: flex;
}

.trusted-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-top: 0;
  padding-bottom: 26px;
  font-size: 28px;
  display: flex;
  overflow: hidden;
}

.trusted-heading {
  font-family: var(--_fonts-spaces---heading-font);
  color: #383d3b99;
  text-align: center;
  flex: 0 auto;
  margin-top: 16px;
  margin-bottom: 13px;
  font-size: 46px;
  font-weight: 700;
}

.trusted-loop-container {
  flex-direction: row;
  flex: none;
  place-content: space-around flex-start;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 15px;
  display: flex;
  overflow: visible;
}

.content-holder {
  flex-direction: row;
  flex: none;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.clientlogo {
  opacity: .45;
  height: auto;
  max-height: 80px;
  margin-left: 29px;
  margin-right: 29px;
}

.content-holder2 {
  flex: none;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.close-big {
  position: absolute;
  inset: 0%;
}

.contact-popup {
  z-index: 20;
  opacity: 1;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background-color: #ffffffb3;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-top: 76px;
  display: none;
  position: fixed;
  inset: 0%;
}

.contact-popup.dark-mode {
  background-color: #000000b3;
  display: none;
}

.popup-container-contact {
  z-index: 2;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  border: 1px solid var(--_white-mode---element-stroke-color);
  background-color: var(--_white-mode---element-color-01);
  border-radius: 12px;
  flex-flow: column;
  max-width: 50%;
  height: auto;
  max-height: 84vh;
  padding: 28px;
  display: flex;
  position: relative;
  overflow: auto;
  box-shadow: 0 0 #0000, 0 1px .4px #00000008, 0 2px .8px #0000000a, 0 3.4px 1.6px #0000000b, 0 5.4px 2.9px #0000000c, 0 8.9px 5.3px #0000000c, 0 15.4px 10.4px #0000000d, 0 30.6px 22.8px #0000000e;
}

.popup-container-contact.dark-mode {
  border-color: var(--element-stroke-color);
  background-color: #fff0;
  background-image: linear-gradient(180deg, var(--bg-color), var(--element-stroke-color));
}

.parnter-fade-holder {
  position: relative;
}

.parnter-fade {
  background-image: linear-gradient(90deg, var(--_white-mode---bg-color), #fcfdff00);
  width: 150px;
  position: absolute;
  inset: 0% auto 0% 0%;
}

.parnter-fade._02 {
  background-image: linear-gradient(270deg, var(--_white-mode---bg-color), #fcfdff00);
  inset: 0% 0% 0% auto;
}

.parnter-fade.dark {
  background-image: linear-gradient(90deg, var(--bg-color), #0c0c0c00);
}

.parnter-fade.dark._02 {
  background-image: linear-gradient(270deg, var(--bg-color), #0c0c0c00);
}

.testimonial-fade {
  z-index: 10;
  background-image: linear-gradient(90deg, #0c0c0c00, var(--bg-color) 60%);
  width: 20vw;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.subscribed-visitor {
  display: none;
}

.text-block-2 {
  font-weight: 700;
}

.tabs-2 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.tab {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: var(--_white-mode---bg-color);
  box-shadow: none;
  font-family: var(--_fonts-spaces---paragraph-font);
  text-align: center;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  font-weight: 600;
  transition: all .375s;
  display: flex;
  overflow: hidden;
}

.tab.w--current {
  background-color: var(--border-background-glow);
  color: var(--heading-color);
  border-color: #b84d1a;
  box-shadow: 0 0 #56565600, 0 1.3px 5.3px #56565629;
}

.tabs-menu-2 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  display: flex;
}

.save-text {
  opacity: .7;
  font-size: 14px;
}

.addon-container-full {
  border-radius: 12px;
  width: 100%;
  margin-top: 20px;
  transition: transform .15s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px #56565600, 0 5px 12px #56565612;
}

.addon-container-full:hover {
  transform: translate(0, -12px);
}

.orange-heading {
  color: var(--bg-color);
  font-size: 21px;
  font-weight: 600;
}

.list-holder {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.list-container {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  text-align: left;
  border-bottom: 1px solid #d8d8d8;
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  place-items: center;
  padding-bottom: 6px;
  font-weight: 400;
  display: flex;
}

.list-container.center {
  text-align: center;
  border-bottom-style: none;
  justify-content: flex-start;
  align-items: center;
  padding-bottom: 0;
}

.list-icon {
  width: 32px;
}

.list-icon.check {
  background-color: var(--accent-color);
  height: 32px;
}

.list-icon.smaller {
  width: 14px;
}

.tabs-content {
  overflow: visible;
}

.list-wrapper {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  flex-flow: column;
  display: flex;
}

.checks-holder {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  border-bottom: 2px solid var(--_white-mode---paragraph-dim);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 12px;
  display: flex;
}

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

.check {
  background-color: var(--border-background-glow);
  border-radius: 200px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  min-width: 32px;
  height: 32px;
  min-height: 32px;
  display: flex;
}

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

.selected-plan-holder {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  text-align: left;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.selected-plan-holder.last {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  justify-content: flex-start;
  align-items: center;
  margin-top: 12px;
}

.childern {
  grid-column-gap: 3px;
  grid-row-gap: 3px;
  flex-flow: row;
  margin-top: 3px;
  display: flex;
}

.extras-holder {
  grid-column-gap: 9px;
  grid-row-gap: 9px;
  flex-flow: column;
  display: flex;
}

.last-price {
  border-top: 2px solid var(--border-background-glow);
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.text-block-3 {
  font-family: var(--_fonts-spaces---paragraph-font);
  font-size: 17px;
}

.arrow-icon-small {
  width: 8px;
}

.line-bot {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-bottom: 1px solid var(--element-color-01);
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 12px;
  padding-bottom: 0;
  display: flex;
}

.line-bot._03 {
  border-bottom-style: none;
}

.heading-2 {
  margin-top: 0;
  margin-bottom: 0;
}

.api-apps-header-link {
  color: var(--_white-mode---heading-color);
  justify-content: center;
  align-items: center;
  display: flex;
}

.html-embed-8 {
  text-align: left;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  position: static;
}

.app-actions {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  flex-flow: column;
  display: flex;
}

.input-text {
  color: var(--_white-mode---heading-color);
  text-align: center;
  border-radius: 6px;
  width: 100px;
  height: 30px;
  margin: 5px auto 0;
  padding-left: 11px;
  padding-right: 11px;
  font-weight: 500;
  display: block;
}

.listed-addons {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: 2px solid #e0e0e0;
  border-radius: 20px;
  flex-flow: wrap;
  flex: 1;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: flex-start;
  align-self: flex-start;
  align-items: flex-end;
  width: 650px;
  padding: 32px 29px;
  display: flex;
  box-shadow: 0 0 #56565600, 0 1.3px 5.3px #56565629;
}

.listed-addons.appconnect {
  width: 500px;
}

.addon-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: row;
  flex: none;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.qty {
  color: var(--_white-mode---heading-color);
  text-align: center;
  border-radius: 6px;
  width: 70px;
  height: 40px;
  margin-top: 5px;
  margin-bottom: 0;
  margin-right: 11px;
  padding-left: 11px;
  padding-right: 11px;
  font-weight: 500;
  display: block;
}

.addon-description {
  justify-content: flex-start;
  align-items: center;
  font-size: 20px;
  display: flex;
}

.addon-small-price {
  flex-flow: row;
  width: 110px;
  font-size: 14px;
  font-weight: 700;
  display: block;
}

.small-price {
  font-weight: 700;
}

.link-light-mode {
  color: var(--_white-mode---accent-color);
}

.text-block-4 {
  font-family: var(--_fonts-spaces---paragraph-font);
  font-size: 14px;
  font-weight: 300;
}

.embedcode-appconnect {
  width: 500px;
}

.tos-text {
  color: #525659;
  text-align: justify;
  padding-bottom: 54px;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 14px;
  font-weight: 300;
}

.product-title-big {
  margin-top: 22px;
  margin-bottom: 22px;
  font-size: 36px;
  font-weight: 100;
}

.product-title-big.tos-title {
  color: #b5babe;
  text-align: center;
  margin-top: 22px;
  margin-bottom: 15px;
  font-size: 23px;
  font-weight: 600;
}

.product-section {
  background-color: #fdf9f7;
}

.product-section.tos-section {
  background-color: #fdf9f700;
  padding-top: 46px;
  padding-left: 133px;
  padding-right: 133px;
  display: block;
}

.product-section.tos-section.black-background {
  background-color: #0c0c0c;
}

.product-section.tos-section {
  background-color: #111;
  padding-top: 46px;
  display: block;
}

.tos-wrapper {
  color: var(--heading-color);
  background-color: #adadad;
  border-radius: 16px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  padding: 34px;
}

.product-title-flex {
  flex-direction: column;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 0;
  display: flex;
}

.tos-container {
  color: #525659;
  text-align: justify;
  background-color: #e9edef00;
  margin-left: auto;
  margin-right: auto;
  padding: 32px 20px 10px;
  display: block;
}

.subtitle {
  color: #525659;
  text-align: center;
  order: -1;
  align-self: stretch;
  margin-bottom: 16px;
  font-size: 17px;
  font-weight: 300;
  display: block;
}

.privacypolicy {
  margin-bottom: 48px;
  margin-left: 47px;
  margin-right: 47px;
}

.tos-wrapper-2 {
  background-color: #000;
  height: auto;
  padding: 34px;
}

.tos-container-2 {
  color: #525659;
  text-align: justify;
  background-color: #000;
  margin-left: auto;
  margin-right: auto;
  padding: 32px 20px 10px;
  display: block;
}

.nextsteps-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
  height: 100%;
  padding: 0 13px 72px;
  display: flex;
}

.app_logo {
  margin-top: 26px;
  margin-bottom: 26px;
}

.trialnextsteps {
  color: var(--_white-mode---paragraph-color);
  width: 750px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 31px;
  font-size: 18px;
  line-height: 30px;
}

.smallsteps-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  display: none;
}

.bigstep {
  color: #fff;
  text-align: center;
  background-color: #528ef7;
  align-self: stretch;
  width: auto;
  margin-top: 18px;
  margin-bottom: 12px;
  padding: 18px 274px;
  font-family: Open Sans, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 30px;
}

.bigstep.thankyou {
  color: #528ef7;
  background-color: #0000;
  flex: 0 auto;
  align-self: auto;
  width: auto;
  margin-bottom: 0;
  padding-top: 1px;
  padding-bottom: 3px;
  line-height: 35px;
}

.bigstep.color2 {
  background-color: #d76c3b;
  line-height: 36px;
  display: none;
}

.smallstep {
  color: #333;
  width: auto;
  max-width: 800px;
  margin-top: 9px;
  margin-bottom: 22px;
  font-family: Open Sans, sans-serif;
  font-size: 20px;
  line-height: 28px;
}

.zoomconnect {
  color: #528ef7;
}

.bigstep-info {
  color: #fff;
  text-align: center;
  background-color: #528ef7;
  align-self: stretch;
  width: auto;
  margin-top: 18px;
  margin-bottom: 12px;
  padding: 18px 274px;
  font-family: Open Sans, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 30px;
}

.bigstep-info.color2 {
  color: #474747;
  background-color: #f7d1bf;
  font-size: 22px;
  font-weight: 400;
  line-height: 36px;
  display: none;
}

.rich-text-block {
  color: var(--border-background-glow);
  font-weight: 400;
}

.paragraph, .paragraph-2, .paragraph-3, .paragraph-4, .paragraph-5, .paragraph-6, .paragraph-7, .paragraph-8, .paragraph-9, .paragraph-10 {
  color: var(--_white-mode---paragraph-color);
}

.link {
  color: var(--accent-color);
}

.paragraph-11, .list-item {
  color: var(--_white-mode---paragraph-color);
}

.bold-text {
  color: var(--accent-color);
}

.list-item-2, .list-item-3, .list-item-4 {
  color: var(--_white-mode---paragraph-color);
}

.link-2, .link-3 {
  color: var(--accent-color);
}

.paragraph-12, .paragraph-13, .list-item-5, .list-item-6, .list-item-7, .list-item-8, .paragraph-14 {
  color: var(--_white-mode---paragraph-color);
}

.link-4, .link-5, .link-6, .bold-text-2 {
  color: var(--accent-color);
}

.text-block-5, .heading-3 {
  display: none;
}

.testimonial-header {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  display: flex;
}

.google-badge {
  margin-left: 21px;
  margin-right: 21px;
}

.recaptcha {
  margin-left: auto;
  margin-right: auto;
}

.div-block-7 {
  width: 100%;
}

.div-block-8 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 0;
  display: block;
}

.div-block-9 {
  order: 1;
  align-self: auto;
  width: 100%;
  margin-top: 0;
  margin-bottom: -15px;
  padding-top: 0;
  padding-bottom: 0;
}

.features-navigation-div {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 1px;
  margin-top: -25px;
  margin-bottom: -25px;
  display: block;
}

.studioscaler {
  width: 100%;
  height: 100%;
  overflow: scroll;
}

.code-embed-3 {
  width: 100%;
}

.captcha {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin: 23px auto 8px;
  display: block;
}

.apps-search-wrapper {
  background-color: #0000;
}

.subcallout-wrapper {
  background-color: #000;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 550px;
  max-width: 550px;
  margin: 1px 9px 5px;
  padding-left: 4px;
  padding-right: 4px;
  display: block;
}

.searchfield-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #000;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin-top: 1px;
  margin-bottom: 0;
  padding-right: 17px;
  display: flex;
  position: relative;
}

.apps-filter {
  z-index: 9;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  position: relative;
  overflow: visible;
}

.filters-wrapper {
  z-index: 9999;
  flex: 1;
  justify-content: flex-start;
  display: flex;
}

.category-wrapper {
  z-index: 9999;
  flex: 0 auto;
  display: none;
}

.pagination-wrapper {
  border-top: 1px solid #00000026;
  flex-direction: column;
  flex: 0 auto;
  justify-content: flex-start;
  align-self: stretch;
  align-items: center;
  height: 80px;
  margin-top: 0;
  margin-left: auto;
  padding-left: 20px;
  display: block;
  position: relative;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: visible;
}

.dropdown {
  font-weight: 400;
  display: block;
}

.fullpage {
  text-align: center;
  background-image: radial-gradient(circle, #f5f5f5, #dfe4e7 99%);
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100vh;
  min-height: 600px;
  display: flex;
  position: relative;
  overflow: visible;
}

.fullpage.nonhomepage {
  background-image: none;
}

.main-content {
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  padding-left: 0;
  padding-right: 0;
  display: block;
  overflow: visible;
}

.footer-link-2 {
  color: #274b5e;
  border-bottom: 0 solid #c3c5c7;
  padding-bottom: 2px;
  font-weight: 300;
  text-decoration: none;
  transition: color .5s;
}

.footer-link-2:hover {
  color: #d76c3b;
  border-style: none;
  border-bottom-color: #d76c3b;
}

.footer-link-2.hidethis, .footer-link-2.coming-soon {
  display: none;
}

.get-started-button {
  text-transform: none;
  border-top: 1px solid #3898ec;
  border-bottom: 1px solid #3898ec;
  border-right: 2px solid #3898ec;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  width: 250px;
  height: 60px;
  font-size: 20px;
  font-weight: 400;
}

.get-started-button.small {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  width: 110px;
  height: 40px;
  font-size: 14px;
}

.emailform-msg {
  background-color: #eaf5ff;
}

.applistnav {
  text-align: left;
  flex: 0 auto;
  justify-content: flex-end;
  align-self: stretch;
  align-items: center;
  max-width: 900px;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  display: block;
  position: relative;
  inset: 0% 0% auto auto;
  overflow: hidden;
}

.text-block-28 {
  color: #d76c3b;
}

.dropdown-toggle-2 {
  font-weight: 400;
}

.trial-visitor {
  flex-direction: column;
  flex: 0 auto;
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  margin-top: 1px;
  display: none;
}

.company-info {
  color: #fff;
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  font-family: Open Sans, sans-serif;
  font-size: 17px;
  font-style: normal;
  line-height: 19px;
  display: flex;
}

.copyright {
  color: #33333396;
  margin-top: 10px;
  font-size: 14px;
}

.callout {
  color: #fff;
  text-align: left;
  justify-content: center;
  align-self: stretch;
  margin: 0;
  padding-top: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 50px;
  display: block;
}

.callout.appscallout {
  color: #525659;
  text-align: center;
  margin-top: 23px;
  font-size: 30px;
  font-weight: 400;
}

.brandlogo {
  width: 180px;
}

.brandlogo.w--current {
  justify-content: center;
  align-items: center;
  text-decoration: none;
  display: flex;
}

.brandlogo.w--current:hover {
  text-decoration: none;
}

.catalogwrap {
  text-align: center;
  flex-flow: column;
  flex: 0 auto;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1600px;
  height: 100%;
  margin: 0 auto auto;
  padding-top: 10px;
  padding-left: 20px;
  padding-right: 20px;
  display: block;
  position: relative;
  overflow: hidden;
}

.email-form {
  justify-content: center;
  align-items: center;
  display: flex;
}

.product-nav {
  background-color: #0000;
  flex-direction: row;
  display: block;
}

.html-embed-3 {
  display: none;
}

.footer-category {
  color: #525659;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
}

.list {
  flex-flow: wrap;
  flex: 1;
  place-content: center;
  align-items: center;
  width: auto;
  margin-bottom: 0;
  padding-top: auto;
  padding-bottom: auto;
  padding-left: 0;
  list-style-type: none;
  display: flex;
  position: static;
  overflow: auto;
}

.list.hideme {
  display: none;
}

.menuitem {
  color: #525659;
  background-color: #0000;
  margin: 2px 1px;
  padding: 10px 20px;
  font-weight: 400;
  text-decoration: none;
  display: block;
}

.menuitem:hover {
  color: #337ab7;
  background-color: #274b5e26;
  text-decoration: none;
}

.menuitem:focus {
  text-decoration: none;
}

.menuitem.w--current {
  color: #fff;
  background-color: #3a657a;
  border-radius: 4px;
  font-weight: 400;
}

.menuitem.dropped {
  margin-top: 0;
  margin-bottom: 0;
}

.menuitem.dashboard {
  color: #fff;
  background-color: #44af69;
  border-radius: 4px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 50px;
  max-height: 50px;
  display: flex;
}

.menuitem.dashboard:hover {
  background-color: #379457;
}

.new-visitor-2 {
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  margin-top: 1px;
  display: flex;
  position: static;
  top: 31px;
  bottom: 0;
  right: 0;
}

.footer-list-flex {
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.email-input {
  outline-offset: 0px;
  border: 1px solid #3898ec;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  outline: 3px #333;
  width: 350px;
  height: 60px;
  margin-bottom: 0;
  font-size: 22px;
}

.email-input.small {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
  width: 150px;
  height: 40px;
  font-size: 14px;
}

.next-arrow {
  text-align: center;
  align-self: stretch;
  display: block;
  position: relative;
  top: 0;
  bottom: 0;
  right: 0;
}

.navigation {
  z-index: 900;
  background-image: linear-gradient(#f5f5f5b3, #f5f5f5b3);
  border: 1px #00000026;
  flex: 0 auto;
  justify-content: space-between;
  align-self: stretch;
  align-items: center;
  height: 100px;
  min-height: 100px;
  max-height: 100px;
  margin-right: 0;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
}

.subscribed-visitor-2 {
  align-self: stretch;
  margin-top: 1px;
  display: block;
}

.emailform {
  width: 500px;
}

.emailform.small {
  width: auto;
  margin-bottom: 0;
}

.nav-wrapper {
  background-color: #0000;
  flex-direction: row;
  align-items: center;
  display: flex;
}

.nav-wrapper.mainnav {
  float: none;
  flex: 0 auto;
  margin-top: auto;
  margin-bottom: auto;
  display: inline-block;
}

.footer {
  background-color: #dae0e4;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 400px;
  margin-bottom: auto;
  padding-top: 90px;
  padding-left: 11px;
  padding-right: 11px;
  display: flex;
}

.dropdown-list {
  display: none;
}

.badge {
  opacity: .46;
  width: 25px;
  height: 36px;
  display: inline-block;
  position: relative;
  top: -111px;
  right: -55px;
}

.cardappname {
  color: #feffffcc;
  width: 100%;
  height: 100%;
  max-height: 49px;
  padding-top: 3px;
  padding-left: 3px;
  padding-right: 3px;
  font-size: 12px;
  line-height: 12px;
  overflow: hidden;
}

.noresults {
  opacity: 0;
  color: #c32814;
  text-align: center;
  background-image: url('../images/logo_gmail_128px_1logo_gmail_128px.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 50px;
  width: 150px;
  height: 50px;
  margin-top: 18px;
  margin-bottom: 18px;
  padding-top: 55px;
  font-size: 15px;
  transition: all .2s;
  display: inline-block;
}

.noresults:hover {
  transform: scale(1.1);
}

.list-app-description {
  padding-top: 7px;
  padding-bottom: 22px;
  display: none;
}

.premiumtext {
  color: #fff;
  background-color: #274b5eb0;
  width: 100%;
  padding: 40px 5px 2px;
  font-size: 12px;
  display: inline-block;
  position: relative;
  inset: -136px 0 0;
}

.in-app {
  float: none;
  opacity: .85;
  color: var(--heading-color);
  text-align: center;
  background-image: url('../images/APIANT_dot-02.svg');
  background-position: 50% 46%;
  background-repeat: no-repeat;
  background-size: 45px;
  border: 1px solid #f1f1f1ab;
  flex-flow: wrap;
  place-content: flex-start center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin-bottom: 8px;
  margin-right: 8px;
  padding: 70px 0 0;
  font-size: 14px;
  display: inline-block;
  overflow: hidden;
}

.in-app:hover {
  opacity: 1;
}

.in-app.payapp {
  opacity: .43;
  background-color: #8a9da833;
}

.hiding {
  color: #525659;
  text-align: center;
  background-image: url('../images/logo_gmail_128px_1logo_gmail_128px.png');
  background-position: 50% 24%;
  background-repeat: no-repeat;
  background-size: 50px;
  flex-direction: row;
  justify-content: center;
  width: 140px;
  height: 110px;
  margin: 5px 9px;
  padding-top: 69px;
  padding-bottom: 0;
  font-size: 13px;
  display: block;
}

.template-list {
  text-align: left;
  flex-flow: wrap;
  flex: 0 auto;
  place-content: flex-start center;
  align-items: center;
  padding-left: 0;
  list-style-type: none;
  display: flex;
  overflow: auto;
}

.template-box {
  float: left;
  background-image: url('../images/APIANT_dot-02.svg'), url('../images/two-way-sync-curved-arrow_1two-way-sync-curved-arrow.png'), url('../images/APIANT_dot-02.svg');
  background-position: 84px 85%, 50% 82%, 77% 85%;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: 60px, auto, 60px;
  border: 1px solid #274b5ec4;
  width: 400px;
  max-width: 400px;
  height: 200px;
  margin: 6px 5px;
  padding: 0 0 7px;
  transition: transform .3s;
}

.template-box:hover {
  transform: translate(2px, -2px);
}

.template-box.open_intercom {
  text-align: center;
  cursor: pointer;
  background-image: url('../images/intercom-chat-icon_1intercom-chat-icon.png');
  background-position: 50% 76%;
  background-size: 60px;
  padding-top: 23px;
  padding-bottom: 23px;
  font-weight: 400;
}

.template-box.collection {
  color: #f5f5f5;
  background-color: #fbf2ee;
  background-image: url('../images/APIANT_dot-02.svg'), url('../images/two-way-sync-curved-arrow_1two-way-sync-curved-arrow.png'), url('../images/APIANT_dot-02.svg');
  background-position: 84px 85%, 50% 82%, 77% 85%;
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-size: 60px, auto, 60px;
  background-attachment: scroll, scroll, scroll;
  border-width: 2px;
  border-color: #274b5ec4;
  flex: 0 auto;
  position: static;
  box-shadow: 3px 3px 8px -1px #00000057;
}

.templatelevel {
  color: #fff;
  text-align: center;
  background-color: #6a838f;
  align-items: flex-start;
  width: auto;
  height: 30px;
  margin-bottom: 3px;
  padding-top: 5px;
  font-size: 14px;
  display: block;
  position: static;
  inset: 4px 0 0 14px;
}

.templatename {
  color: #274b5ecc;
  text-align: center;
  margin: 7px 36px 6px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}

.form-control-input-lg-input-search {
  background-color: #000;
}

.body {
  background-color: var(--bg-color);
}

.input-search {
  background-color: var(--bg-color);
  color: var(--paragraph-dim);
  border: 1px solid #fff;
  width: 200px;
  height: 50px;
  padding-left: 9px;
}

.input-group {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: block;
}

.subcallout-wrapper {
  background-color: #0000;
}

.subcallout-wrapper.hideme {
  display: none;
}

.button-iconbg {
  border: 1px solid #d76c3b;
  margin-left: 6px;
}

.div-block-10 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  align-items: center;
  max-width: 1600px;
  margin-bottom: 16px;
  display: inline-block;
  position: relative;
}

.accent {
  color: var(--accent-color);
}

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

@media screen and (max-width: 991px) {
  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 23px;
  }

  h6 {
    font-size: 20px;
  }

  .help-holder {
    flex-direction: column;
    display: flex;
  }

  .container {
    padding: 1em;
  }

  .container.navbar.dark {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 10px;
  }

  ._8-col-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .nav-button-holder {
    display: none;
  }

  .nav-menu {
    background-color: var(--bg-color);
    border: 1px solid #c9c9c930;
    border-radius: 9px;
  }

  .nav-menu.white-mode {
    border-color: var(--_white-mode---element-stroke-color);
    background-color: var(--_white-mode---bg-color);
    border-radius: 11px;
  }

  .navlinks-holder {
    flex-flow: column;
    padding-top: 14px;
    padding-bottom: 14px;
  }

  .line-text {
    font-size: 4.2vw;
  }

  .grid-button {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .card-icons-component-holder, .cards-icons-wrapper {
    width: 100%;
  }

  .left-arrow {
    left: 0;
  }

  .right-arrow {
    margin-left: 0;
    right: 0;
  }

  .main-feature-container {
    flex-flow: column;
    padding-bottom: 80%;
  }

  .main-feature-images-holder, .main-feature-images-holder.left {
    width: 80%;
    transform: none;
  }

  .main-feature-holder {
    grid-row-gap: 0px;
  }

  .main-feature-content.right {
    justify-content: center;
    align-items: center;
    padding-right: 0;
  }

  .cards-holder {
    width: 100%;
  }

  .turnkey-api-holder {
    grid-template-columns: 1fr 1fr;
  }

  .marketplace-holder {
    padding-top: 66px;
    padding-bottom: 66px;
  }

  .features-component-holder {
    width: 100%;
  }

  .features-hero-icon-wrapper {
    opacity: .5;
    width: 100%;
  }

  .featured-icons-wrapper {
    width: 100%;
  }

  .marketplace-icon-holder {
    flex-flow: column;
  }

  .footer-wrapper {
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    flex-flow: column;
  }

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

  .menu-button {
    border: 1px solid #fff0;
    border-radius: 7px;
    padding: 13px;
  }

  .menu-button.w--open {
    background-color: var(--element-color-01);
    border: 1px solid #c0c0c096;
    border-radius: 12px;
    padding: 13px;
  }

  .menu-button.white-mode.w--open {
    border-color: var(--_white-mode---element-color-02);
    background-color: var(--_white-mode---element-color-01);
    color: var(--bg-color);
  }

  .light-wrapper._02 {
    display: none;
  }

  .dark-paragraph.no-margins {
    font-size: 20px;
  }

  .white-box-container {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .white-box-container-3x {
    grid-template-columns: 1fr 1fr;
  }

  .hero-section-mac-holder {
    width: 100%;
    min-width: 0;
  }

  .hero-section-mac-holder.animate-on-load-05 {
    padding-left: 0;
  }

  .features-wrapper {
    padding-left: 12px;
    padding-right: 12px;
  }

  .white-box-holder-center {
    width: 40%;
  }

  .feature-card-holder {
    max-width: 100%;
    margin-top: 0;
    padding-bottom: 0;
  }

  .blog-container {
    width: 100%;
  }

  .pricing-holder {
    flex-flow: column;
  }

  .addon-container {
    width: 100%;
  }

  .addon-container-copy {
    width: 100%;
    min-width: 0;
  }

  .partner-grid {
    max-width: 70%;
  }

  .popup-holder {
    opacity: 100;
    display: none;
  }

  .popup-holder.studioscaler {
    padding-top: 40px;
  }

  .popup-container._100-h.studioscaler {
    width: 100%;
  }

  .connection-header-title {
    font-size: 50px;
  }

  .api-icon-small.m {
    width: 130px;
  }

  .trigger-paragraph-holder {
    max-width: 100%;
  }

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

  .white-paper {
    opacity: 100;
    display: none;
  }

  .white-paper-container {
    max-width: 90%;
  }

  .html-embed-14 {
    max-width: none;
  }

  .partner-page-elements-holder {
    width: 28vw;
  }

  .partner-page-elements._01 {
    right: -74px;
  }

  .hero-section-container-center {
    width: 100%;
  }

  .icons-holder {
    background-color: #fff0;
    width: auto;
  }

  .tabs-menu {
    flex-flow: column;
  }

  .clientlogo {
    max-height: 60px;
    margin-left: 16px;
    margin-right: 16px;
  }

  .contact-popup {
    opacity: 100;
    display: none;
  }

  .popup-container-contact {
    max-width: 90%;
  }

  .listed-addons.appconnect {
    width: 100%;
  }

  .product-title-big {
    text-align: center;
    align-self: stretch;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .product-section.tos-section {
    padding-left: 0;
    padding-right: 0;
  }

  .tos-wrapper {
    padding-left: 3px;
    padding-right: 3px;
  }

  .product-title-flex {
    flex: 0 0 1px;
    align-self: center;
    align-items: center;
    padding-top: 6px;
    padding-bottom: 6px;
    display: flex;
    transform: scale(.67);
  }

  .tos-container {
    padding-left: 0;
    padding-right: 0;
  }

  .privacypolicy {
    margin-left: 0;
    margin-right: 0;
  }

  .bigstep, .bigstep-info {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 24px;
  }

  .menu-button-2 {
    height: 60px;
    margin: 4px;
    padding-top: auto;
    padding-bottom: auto;
    position: static;
    top: 0;
    right: 0;
  }

  .menu-button-2:hover {
    color: #fff;
    background-color: #274b5e26;
  }

  .menu-button-2:active {
    color: #fff;
  }

  .menu-button-2:focus {
    background-color: #d76c3b;
  }

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

  .callout {
    font-size: 36px;
  }

  .menuitem {
    text-align: center;
    width: 100%;
    min-width: 180px;
    margin: 0;
    font-size: 14px;
    position: relative;
  }

  .menuitem:hover {
    background-color: #dfe4e7;
  }

  .menuitem.w--current {
    width: 210px;
  }

  .menuitem.w--open {
    font-size: 14px;
  }

  .menuitem.login-link {
    width: 100%;
  }

  .new-visitor-2 {
    width: 100%;
    padding-left: 23px;
    padding-right: 23px;
  }

  .navigation {
    z-index: 900;
    padding-left: 28px;
    padding-right: 0;
  }

  .nav-wrapper {
    justify-content: flex-end;
    padding: 6px 10px;
    display: block;
    top: 77px;
    left: -10px;
  }

  .nav-wrapper.dropdownnav {
    z-index: 9999;
    background-color: #f5f5f5ed;
    border-radius: 0;
    padding: 18px;
    position: fixed;
    top: 79px;
    left: auto;
    right: -10px;
  }

  .nav-wrapper.mainnav {
    background-color: #0000;
    padding: 0;
  }

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

  .template-box {
    margin-top: 13px;
    margin-bottom: 13px;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 24px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 21px;
  }

  .paragraph-xl {
    font-size: 18px;
  }

  .border-box {
    padding: 2px;
  }

  .help-content-holder {
    padding-top: 13px;
  }

  ._6-col-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .hero-text {
    font-size: 40px;
  }

  .hero-text.mobile {
    display: block;
  }

  .center-text {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }

  .center-text.hero-center {
    margin-top: 0;
    margin-bottom: 0;
  }

  .grid-button {
    flex-flow: column;
    display: flex;
  }

  .gradient-left-side {
    background-image: linear-gradient(270deg, #0d0d0d00 52%, #0d0d0d 78%);
    width: 110px;
  }

  .main-feature-images-holder, .main-feature-images-holder.left {
    width: 100%;
  }

  .tag-feature.tag-header {
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
  }

  .main-feature-content {
    padding-bottom: 60px;
    padding-left: 0;
  }

  .main-feature-content.right {
    justify-content: center;
    align-items: flex-start;
    padding-right: 0;
  }

  .grid-3x {
    grid-template-columns: 1fr;
  }

  .grid-item-holder {
    border-bottom: 1px solid #fff3;
    border-right-style: none;
    padding-bottom: 24px;
    padding-right: 0;
  }

  .grid-item-holder.last {
    border-bottom-style: none;
  }

  .bento-grid-holder {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
  }

  .bento-grid {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    flex-flow: column;
  }

  .turnkey-api-holder {
    flex-flow: column;
    display: flex;
  }

  .turnkey-api-item {
    padding: 16px;
  }

  .footer-wrapper {
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
    padding-right: 0;
  }

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

  .footer-block {
    text-align: left;
    align-items: flex-start;
  }

  .footer-link {
    text-align: left;
  }

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

  .company-logo {
    height: 40px;
  }

  .company-logo-wrapper {
    padding-left: 12px;
    padding-right: 12px;
  }

  .company-logo-holder, .trusted-by {
    padding-top: 0;
    padding-bottom: 0;
  }

  .left-headings {
    max-width: 100%;
  }

  .dark-paragraph.no-margins {
    font-size: 20px;
  }

  .dark-paragraph.no-margins.list.head {
    width: 100%;
    font-size: 20px;
  }

  .box-paragraph {
    font-size: 15px;
  }

  .white-box-container-3x {
    grid-template-columns: 1fr;
  }

  .home-words-content {
    height: 50px;
  }

  .brand-2 {
    width: 140px;
    padding-left: 0;
  }

  .apiapps {
    font-size: 40px;
  }

  .hero-section-mac-holder.animate-on-load-05 {
    padding-left: 0;
  }

  .features-wrapper {
    padding-top: 8px;
  }

  .feature-boxes {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .box-emoji {
    font-size: 29px;
  }

  .white-box-holder-center {
    text-align: left;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .feature-card-holder {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column;
    margin-top: 20px;
  }

  .feature-card.right {
    margin-top: 0;
  }

  .blog-container {
    flex-flow: column;
    display: flex;
  }

  .div-block-4, .right-words {
    display: none;
  }

  .addon-tick-holder {
    min-width: 26px;
    min-height: 26px;
  }

  .add-ons {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 100%;
    display: grid;
  }

  .addon-container-copy {
    width: 100%;
    min-width: 0;
  }

  .custom-checkbox.horizontal, .checkbox-field.list {
    width: 100%;
  }

  .partner-grid {
    max-width: 90%;
  }

  .questions-cta {
    grid-row-gap: 18px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .div-block-5, .left-words {
    display: none;
  }

  .popup-holder {
    z-index: 40;
    padding: 28px;
  }

  .popup-container._100-h.studioscaler {
    min-width: auto;
    max-width: 100%;
    min-height: auto;
    max-height: 100%;
  }

  .graph-logo-image {
    width: 270px;
  }

  .api-icon-small.m {
    width: 110px;
  }

  .app-endpoints {
    flex-flow: column;
    display: flex;
  }

  .enpoints-sticky-holder {
    background-image: linear-gradient(180deg, var(--element-color-01), var(--bg-color));
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    border: 1px solid #b7b7b75c;
    border-radius: 10px;
    justify-content: flex-start;
    align-items: center;
    margin-left: -15px;
    margin-right: -15px;
    padding: 21px;
    display: flex;
    position: sticky;
    top: 100px;
  }

  .api-tempalte-holder {
    max-width: none;
  }

  .api-icons {
    grid-column-gap: 80px;
    grid-row-gap: 80px;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .api-connet {
    margin-top: 0;
    transform: rotate(90deg);
  }

  .white-paper {
    z-index: 40;
    padding: 28px;
  }

  .ease-dropdown-list.w--open {
    width: 100%;
    max-width: none;
    position: relative;
  }

  .ease-dropdown-grid {
    flex-flow: column;
    display: flex;
  }

  .ease-dropdown-01-container {
    justify-content: flex-start;
    align-items: flex-start;
  }

  ._w-dropdown {
    width: 92%;
  }

  .ease-dropdown-03-holder {
    justify-content: center;
    align-items: flex-start;
    height: 400px;
    overflow: auto;
  }

  .drop-down-wrapper {
    display: flex;
  }

  .partner-page-elements-holder {
    display: none;
  }

  .icons-holder {
    background-image: linear-gradient(#fcfdffd1, #fcfdffd1);
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }

  .grid-6 {
    flex-flow: column;
    display: flex;
  }

  .app-icon-header {
    opacity: .38;
  }

  .clientlogo {
    max-height: 40px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .contact-popup {
    z-index: 40;
    padding: 28px;
  }

  .parnter-fade {
    width: 60px;
  }

  .tab {
    width: 100%;
    min-width: 0;
  }

  .list-holder {
    flex-flow: column;
    display: flex;
  }

  .list-container {
    padding-bottom: 12px;
  }

  .list-container.center {
    text-align: left;
  }

  .check-grid {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
    display: flex;
  }

  .listed-addons {
    width: 100%;
    padding: 20px 22px;
  }

  .addon-wrapper, .small-price {
    width: 100%;
  }

  .code-embed-2 {
    display: block;
  }

  .embedcode-appconnect {
    width: 100%;
  }

  .product-section.tos-section {
    padding-top: 80px;
  }

  .tos-wrapper {
    padding-top: 0;
  }

  .product-title-flex.tostitle {
    margin-top: 29px;
  }

  .subtitle {
    margin-bottom: 29px;
  }

  .privacypolicy {
    margin-left: 11px;
    margin-right: 11px;
  }

  .tos-wrapper-2 {
    padding-top: 0;
  }

  .bigstep, .bigstep-info {
    font-size: 22px;
  }

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

  .apps-search-wrapper {
    width: auto;
    margin-left: 15px;
    margin-right: 15px;
  }

  .subcallout-wrapper {
    width: auto;
    margin-top: 0;
    margin-bottom: 5px;
  }

  .searchfield-wrapper {
    padding-right: 0;
  }

  .apps-filter {
    margin-left: 4px;
    margin-right: 4px;
  }

  .pagination-wrapper {
    text-align: center;
    justify-content: center;
    height: 120px;
    padding-bottom: 6px;
    padding-left: 2px;
    padding-right: 2px;
  }

  .fullpage {
    height: 100vh;
    min-height: 650px;
  }

  .fullpage.nonhomepage {
    height: 1190px;
    min-height: 610px;
  }

  .footer-link-2 {
    margin-top: 6px;
    margin-bottom: 6px;
    line-height: 18px;
  }

  .get-started-button {
    flex: 0 auto;
    width: auto;
    max-width: 250px;
  }

  .company-info {
    margin-bottom: 23px;
    font-size: 10px;
    line-height: 13px;
  }

  .callout {
    font-size: 32px;
  }

  .callout.appscallout {
    margin-top: 7px;
    font-size: 24px;
  }

  .catalogwrap {
    margin-top: 0;
  }

  .email-form {
    flex-direction: row;
    margin-left: 25px;
    margin-right: 25px;
  }

  .footer-category {
    margin-top: 27px;
    padding-bottom: 6px;
    line-height: 14px;
  }

  .new-visitor-2 {
    text-align: center;
    flex-direction: column;
    justify-content: center;
    display: flex;
  }

  .footer-list-flex {
    margin-top: -3px;
    margin-bottom: -3px;
  }

  .email-input {
    flex: 1;
    width: auto;
    max-width: 350px;
  }

  .next-arrow {
    display: none;
  }

  .navigation {
    padding-bottom: 1px;
    padding-left: 24px;
    padding-right: 0;
    display: flex;
  }

  .nav-wrapper {
    justify-content: flex-end;
  }

  .nav-wrapper.dropdownnav {
    top: 86px;
  }

  .nav-wrapper.mainnav {
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .footer {
    text-align: center;
    flex-flow: column wrap;
    align-items: center;
    height: auto;
    padding: 50px 8px 20px;
    display: flex;
  }

  .template-box {
    background-image: url('../images/APIANT_dot-02.svg'), url('../images/rightCurvedArrow.svg'), url('../images/APIANT_dot-02.svg');
    background-position: 90px 90%, 50% 73%, 72% 90%;
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-size: 50px, 50px, 50px;
    width: 380px;
    max-width: 380px;
    height: 130px;
    min-height: 130px;
    max-height: 130px;
    margin-top: 6px;
    margin-bottom: 6px;
  }

  .templatename {
    margin-top: 5px;
    margin-left: 5px;
    margin-right: 5px;
    font-size: 13px;
    line-height: 16px;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 28px;
  }

  .black-background-padding {
    padding: 7px;
  }

  .button.dark-mode.mobile-100 {
    width: 100%;
  }

  ._4-col-grid {
    grid-template-columns: 1fr 1fr;
  }

  .section {
    width: 100%;
  }

  .section.white-hero {
    padding-bottom: 20px;
  }

  .colors-buttons {
    flex-direction: column;
    padding-top: 29px;
    padding-bottom: 29px;
  }

  .style-guide-box-holder {
    padding: 4px;
  }

  ._6-col-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .container {
    width: 100%;
    padding-left: 6px;
    padding-right: 6px;
  }

  ._8-col-grid {
    grid-template-columns: 1fr 1fr;
  }

  .style-guide-box-container {
    grid-row-gap: 7px;
  }

  .fade-in-on-scroll {
    width: 100%;
  }

  .hero-text {
    font-size: 8vw;
  }

  .navlinks-holder {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .center-text.hero-center {
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .hero-text-holder {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
  }

  .button-holder {
    flex-flow: column;
    justify-content: flex-start;
    align-items: stretch;
    width: 100%;
  }

  .line-text.active-blur {
    text-shadow: 0 0 3px var(--accent-color);
  }

  .line-text-active.blur {
    filter: blur();
  }

  .card-blur-effect.cta {
    top: 27%;
  }

  .spacer {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .testimonal-slide {
    padding: 15px;
  }

  .testimonal-slide.white-themed {
    border-radius: 12px;
  }

  .left-arrow {
    justify-content: flex-start;
  }

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

  .testimonal-mask {
    width: 100%;
  }

  .testimonal-slider {
    margin-top: 40px;
    padding-bottom: 50px;
  }

  .tag-feature.tag-header {
    width: 150px;
    margin-left: auto;
    margin-right: auto;
  }

  .main-feature-holder {
    grid-column-gap: 220px;
    grid-row-gap: 220px;
    padding-top: 147px;
    padding-bottom: 147px;
  }

  .main-feature-content {
    padding-bottom: 170px;
  }

  .main-feature-content.right {
    padding-bottom: 300px;
  }

  .main-feature-content-holder {
    text-align: left;
    justify-content: center;
    align-items: flex-start;
  }

  .marketplace-icon-container {
    justify-content: center;
    align-items: flex-start;
  }

  .markplace-text {
    width: 100%;
    min-width: 0;
    max-width: none;
  }

  .marketplace-text-holder {
    max-width: 90%;
  }

  .lights-holder {
    left: -154px;
  }

  .dark-paragraph.no-margins.list {
    margin-right: 2px;
    font-size: 14px;
  }

  .dark-paragraph.no-margins.list.head {
    text-align: center;
    margin-top: 14px;
    margin-bottom: 14px;
    font-size: 20px;
    line-height: 1.25;
  }

  .no-margins {
    font-size: 20px;
  }

  .white-box-holder.apiapp {
    min-width: auto;
  }

  .white-box-container {
    flex-flow: column;
    display: flex;
  }

  .home-words-content {
    height: 8vw;
  }

  .brand {
    padding-left: 0;
  }

  .brand-2 {
    width: 170px;
  }

  .apiapps {
    font-size: 8vw;
  }

  .hero-section-mac-holder {
    align-items: flex-start;
    padding-left: 20px;
    position: static;
  }

  .hero-section-mac-container, .animate-on-load-04 {
    width: 100%;
  }

  .text-field {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .text-field.with-icon {
    text-align: center;
    background-position: 50% 10px;
    justify-content: flex-start;
    align-items: center;
    height: auto;
    padding: 40px 9px 9px;
  }

  .features-wrapper {
    padding-left: 3px;
    padding-right: 3px;
  }

  .feature-boxes {
    flex-flow: column;
    display: flex;
  }

  .feature-card-holder {
    padding-bottom: 30px;
  }

  .feature-card.right, .feature-card.left {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .pricing-holder {
    padding: 14px 11px;
  }

  .pricing-container {
    width: 100%;
    height: 100%;
  }

  .addon-container {
    width: 100%;
  }

  .addon-tick {
    padding-left: 14px;
    padding-right: 14px;
  }

  .addon-tick.list {
    flex-flow: column;
  }

  .price-holder {
    margin-top: 0;
  }

  .add-ons {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
    display: flex;
  }

  .checkbox-field.list {
    grid-column-gap: 2px;
    grid-row-gap: 2px;
    flex-flow: column;
  }

  .partner-grid {
    max-width: 100%;
  }

  .questions-cta {
    padding: 18px;
  }

  .questions-container {
    margin-bottom: 24px;
    padding-bottom: 24px;
  }

  .question-text {
    font-size: 17px;
  }

  .cta-questions {
    padding: 0;
  }

  .brand-image {
    width: 100%;
  }

  .popup-holder {
    z-index: 40;
    padding: 0;
    display: none;
  }

  .popup-holder.dark-mode {
    padding-top: 43px;
  }

  .popup-holder.studioscaler {
    padding-top: 1px;
  }

  .popup-container {
    width: 93%;
    max-height: 80vh;
    padding: 13px;
  }

  .popup-container.dark-mode {
    max-height: 80vh;
    overflow: auto;
  }

  .popup-container._100-h {
    min-height: 0;
    max-height: 540px;
  }

  .popup-container._100-h.studioscaler {
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 3px;
    padding-right: 3px;
  }

  .popup-title-holder {
    padding-top: 2px;
    padding-bottom: 2px;
  }

  .popup-x-holder {
    z-index: 20;
    inset: 12px 5px auto auto;
  }

  .graph-logo-image {
    width: 140px;
  }

  .connection-header-title {
    font-size: 35px;
  }

  .api-icon-small.m {
    width: 80px;
  }

  .app-endpoints {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .enpoints-sticky-holder {
    margin-left: -10px;
    margin-right: -10px;
  }

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

  .appiconpageheader {
    width: 90px;
  }

  .white-paper {
    z-index: 40;
    padding: 0;
    display: none;
  }

  .white-paper.dark-mode {
    display: none;
  }

  .white-paper-container {
    z-index: 2;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    width: 93%;
    max-height: 80vh;
    padding: 13px;
  }

  .white-paper-container.dark-mode {
    z-index: 2;
    max-height: 80vh;
  }

  .form-grid {
    grid-column-gap: 7px;
    grid-row-gap: 7px;
    flex-flow: column;
    display: flex;
  }

  .field-lable {
    font-size: 14px;
    font-weight: 600;
  }

  .ease-dropdown-list.w--open {
    margin-top: 15px;
    padding-top: 0;
  }

  .ease-dropdown-link.ease-large {
    white-space: normal;
    font-size: 16px;
  }

  .ease-dropdown-01-container {
    justify-content: flex-start;
    align-items: flex-start;
    width: 96%;
    padding: 0;
  }

  .ease-drop-down-larg-icon {
    justify-content: flex-start;
    align-items: center;
  }

  .ease-dropdown-paragraph {
    white-space: normal;
    font-size: 14px;
  }

  ._w-dropdown {
    width: 95%;
  }

  .ease-dropdown-03-holder {
    height: 310px;
    padding: 11px;
  }

  .drop-down-wrapper {
    width: 100%;
  }

  .hero-section-container-center {
    grid-row-gap: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .hero-center {
    height: 100%;
  }

  .icons-holder {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding-left: 9px;
    padding-right: 9px;
  }

  .partner-holder {
    grid-column-gap: 4px;
    grid-row-gap: 4px;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    padding-bottom: 0;
    padding-left: 2px;
    padding-right: 2px;
  }

  .app-icon-header {
    opacity: .26;
  }

  .trusted-wrapper {
    padding-bottom: 6px;
  }

  .trusted-heading {
    padding: 5px 6px;
    font-size: 18px;
  }

  .clientlogo {
    height: 80px;
    margin-left: 5px;
    margin-right: 5px;
  }

  .close-big {
    z-index: 1;
  }

  .contact-popup {
    z-index: 40;
    padding: 0;
    display: none;
  }

  .contact-popup.dark-mode {
    display: none;
  }

  .popup-container-contact {
    z-index: 2;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    width: 93%;
    max-height: 80vh;
    padding: 13px;
  }

  .popup-container-contact.dark-mode {
    z-index: 2;
    max-height: 80vh;
  }

  .testimonial-fade {
    display: none;
  }

  .tabs-menu-2 {
    flex-flow: column;
  }

  .list-icon.smaller {
    width: 11px;
  }

  .check {
    width: 24px;
    min-width: 24px;
    height: 24px;
    min-height: 24px;
  }

  .listed-addons {
    padding-left: 2px;
    padding-right: 2px;
  }

  .addon-wrapper {
    flex-flow: column;
    font-size: 14px;
  }

  .qty {
    width: 60px;
    margin-right: 4px;
    font-size: 12px;
  }

  .addon-description {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    font-size: 16px;
  }

  .small-price {
    text-align: center;
    font-size: 16px;
  }

  .form-block-3 {
    width: 100%;
  }

  .tos-text {
    padding-left: 11px;
    padding-right: 11px;
  }

  .product-title-big {
    margin-bottom: 5px;
    font-size: 20px;
  }

  .product-title-big.tos-title {
    margin-top: 42px;
    margin-bottom: 0;
    font-size: 20px;
  }

  .product-section.tos-section {
    margin-top: 60px;
    padding-top: 33px;
  }

  .tos-wrapper {
    padding: 18px 0;
  }

  .product-title-flex {
    align-items: center;
    padding-bottom: 7px;
    overflow: hidden;
    transform: scale(.94);
  }

  .product-title-flex.tostitle {
    margin-top: auto;
    padding-top: 0;
    padding-bottom: 0;
  }

  .tos-container {
    padding: 0 7px;
  }

  .subtitle {
    font-size: 15px;
  }

  .privacypolicy {
    margin-left: 4px;
    margin-right: 4px;
  }

  .tos-wrapper-2 {
    padding: 18px 0;
  }

  .tos-container-2 {
    padding: 0 7px;
  }

  .bigstep, .bigstep-info {
    margin-top: 15px;
    margin-bottom: 18px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 24px;
    line-height: 32px;
  }

  .subcallout-wrapper {
    width: 100%;
    padding-left: 5px;
    padding-right: 5px;
  }

  .apps-filter {
    display: none;
  }

  .fullpage {
    height: 100vh;
    min-height: 610px;
  }

  .fullpage.nonhomepage {
    height: 1190px;
  }

  .menu-button-2 {
    margin-top: 0;
  }

  .menu-button-2.w--open {
    z-index: 9999;
    float: none;
  }

  .get-started-button {
    max-width: 125px;
    height: 50px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .company-info {
    font-size: 12px;
  }

  .callout.appscallout {
    margin-top: 8px;
    padding-left: 19px;
    padding-right: 19px;
  }

  .brandlogo {
    width: 130px;
  }

  .brandlogo.w--current {
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    margin-bottom: 0;
    padding-top: 0;
  }

  .email-form {
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }

  .product-nav {
    background-color: #0000;
    flex-flow: column wrap;
    flex: 0 auto;
    place-content: center;
    align-items: center;
    display: flex;
  }

  .footer-category {
    margin-top: 25px;
    padding-bottom: 4px;
    font-size: 14px;
  }

  .menuitem {
    align-self: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
    display: block;
  }

  .menuitem.w--current {
    align-self: center;
    width: 200px;
    min-width: auto;
    margin: 0 auto;
    display: block;
  }

  .menuitem.w--open {
    font-size: 16px;
  }

  .new-visitor-2 {
    align-self: stretch;
    align-items: center;
    width: 100%;
    margin-top: 0;
    padding-left: 17px;
    padding-right: 17px;
  }

  .email-input {
    flex: 1;
    max-width: 200px;
    height: 50px;
    font-size: 18px;
    line-height: 20px;
  }

  .navigation {
    padding-left: 7px;
    padding-right: 7px;
  }

  .nav-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 2px;
    padding-right: 2px;
    display: flex;
  }

  .nav-wrapper.dropdownnav {
    z-index: 900;
    flex-flow: column wrap;
    flex: 1;
    align-content: center;
    align-self: stretch;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    display: flex;
    position: fixed;
  }

  .nav-wrapper.mainnav {
    background-color: #0000;
    flex-wrap: wrap;
    align-content: flex-start;
    width: auto;
    min-width: 0;
    margin-top: 0;
    display: flex;
  }

  .footer {
    text-align: center;
    flex-flow: column wrap;
    align-content: stretch;
    align-items: flex-start;
    height: auto;
    padding-bottom: 40px;
    padding-left: auto;
    padding-right: auto;
    display: block;
    transform: scale(1);
  }

  .template-box {
    background-position: 10% 90%, 50% 73%, 90% 90%;
    height: 130px;
    min-height: 130px;
    max-height: 130px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
  }

  .template-box.open_intercom {
    background-image: url('../images/intercom-chat-icon_1intercom-chat-icon.png'), linear-gradient(to bottom, #337ab7, #337ab7), linear-gradient(to bottom, null, null);
    background-position: 50% 76%, 0 0, 0 0;
    background-repeat: no-repeat, repeat, repeat;
    background-size: 60px, auto, auto;
  }

  .template-box.collection {
    background-position: 10% 90%, 50% 82%, 90% 90%;
    background-size: 50px, auto, 50px;
  }

  .templatename {
    margin-top: 5px;
    margin-left: 8px;
    margin-right: 8px;
    font-size: 13px;
    line-height: 14px;
  }
}

#w-node-e0d92d34-4032-8c6f-c9dd-014d19c82ac4-19c82aa9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e0d92d34-4032-8c6f-c9dd-014d19c82acc-19c82aa9, #w-node-e0d92d34-4032-8c6f-c9dd-014d19c82ad1-19c82aa9, #w-node-e0d92d34-4032-8c6f-c9dd-014d19c82ad4-19c82aa9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_363ea18a-8875-7896-a807-d404283dcfd3-19c82aa9, #w-node-_363ea18a-8875-7896-a807-d404283dcfd4-19c82aa9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-e0d92d34-4032-8c6f-c9dd-014d19c82adb-19c82aa9 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-c095484c-fff7-ecec-66a0-3da1da48a910-da48a8f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c095484c-fff7-ecec-66a0-3da1da48a914-da48a8f1, #w-node-c095484c-fff7-ecec-66a0-3da1da48a919-da48a8f1 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-a2459cf2-022c-4903-667c-e6d7ae1885cd-da48a8f1 {
  grid-area: Area-2;
  place-self: center;
}

#w-node-_51729246-c902-5286-af83-ba92b2c3d3d3-da48a8f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-c095484c-fff7-ecec-66a0-3da1da48a91c-da48a8f1, #w-node-c095484c-fff7-ecec-66a0-3da1da48a920-da48a8f1 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_781be88c-c2c2-c3fa-abf7-826247b08a94-47b08a76, #w-node-_781be88c-c2c2-c3fa-abf7-826247b08a9d-47b08a76 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d60ba3ef-c2ea-5eda-6eed-021bedfab829-8b10df0e {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-d65e5620-dba3-20a8-abb2-56d986fe81fe-49638171, #w-node-d65e5620-dba3-20a8-abb2-56d986fe8201-49638171, #w-node-d65e5620-dba3-20a8-abb2-56d986fe8204-49638171, #w-node-d65e5620-dba3-20a8-abb2-56d986fe8207-49638171, #w-node-d65e5620-dba3-20a8-abb2-56d986fe820a-49638171, #w-node-d65e5620-dba3-20a8-abb2-56d986fe820d-49638171, #w-node-d65e5620-dba3-20a8-abb2-56d986fe8210-49638171, #w-node-d65e5620-dba3-20a8-abb2-56d986fe8213-49638171, #w-node-d65e5620-dba3-20a8-abb2-56d986fe8218-49638171, #w-node-d65e5620-dba3-20a8-abb2-56d986fe821b-49638171, #w-node-d65e5620-dba3-20a8-abb2-56d986fe821e-49638171, #w-node-d65e5620-dba3-20a8-abb2-56d986fe8221-49638171, #w-node-d65e5620-dba3-20a8-abb2-56d986fe8224-49638171, #w-node-d65e5620-dba3-20a8-abb2-56d986fe8227-49638171, #w-node-d65e5620-dba3-20a8-abb2-56d986fe822c-49638171, #w-node-d65e5620-dba3-20a8-abb2-56d986fe822f-49638171, #w-node-d65e5620-dba3-20a8-abb2-56d986fe8232-49638171, #w-node-d65e5620-dba3-20a8-abb2-56d986fe8235-49638171 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-d65e5620-dba3-20a8-abb2-56d986fe823a-49638171, #w-node-d65e5620-dba3-20a8-abb2-56d986fe823e-49638171 {
  grid-area: span 1 / span 4 / span 1 / span 4;
  align-self: center;
}

#w-node-b623a578-2e64-daac-6efd-13b2f6f3536c-f6f35351 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b623a578-2e64-daac-6efd-13b2f6f35374-f6f35351, #w-node-b623a578-2e64-daac-6efd-13b2f6f35379-f6f35351, #w-node-b623a578-2e64-daac-6efd-13b2f6f3537c-f6f35351 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_82f5d95e-fdee-cebf-43f6-c788452a46ce-f6f35351 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b623a578-2e64-daac-6efd-13b2f6f35383-f6f35351 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_0398e849-f59e-b07f-23b1-7d62fc044831-fc044826 {
  place-self: start;
}

#w-node-_0398e849-f59e-b07f-23b1-7d62fc044835-fc044826, #w-node-_0398e849-f59e-b07f-23b1-7d62fc044839-fc044826, #w-node-_0398e849-f59e-b07f-23b1-7d62fc04483d-fc044826 {
  align-self: start;
}

#w-node-_0398e849-f59e-b07f-23b1-7d62fc044841-fc044826 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-_0398e849-f59e-b07f-23b1-7d62fc044845-fc044826 {
  align-self: start;
}

#w-node-_0398e849-f59e-b07f-23b1-7d62fc044849-fc044826 {
  grid-area: span 2 / span 2 / span 2 / span 2;
  align-self: start;
}

#w-node-_0398e849-f59e-b07f-23b1-7d62fc04484e-fc044826 {
  grid-area: Area-2;
}

#w-node-_4ce15737-9792-1254-acda-05f0e893a88c-fc044826, #w-node-_4ce15737-9792-1254-acda-05f0e893a88d-fc044826 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_88838119-399b-0a73-d8b4-d1de798261c3-06a32a2c, #w-node-ceb1afaf-6559-b411-7db7-94c2122f25b9-06a32a2c, #w-node-_20a9362e-3ef8-faef-dc27-a9748c995ad3-06a32a2c, #w-node-_097cb8e4-3425-d31e-3ec6-dd7ed853ed95-06a32a2c {
  place-self: start end;
}

#w-node-_78677131-0563-d6dd-6aa2-8d10c5e3cc92-06a32a2c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_78677131-0563-d6dd-6aa2-8d10c5e3cc96-06a32a2c, #w-node-_78677131-0563-d6dd-6aa2-8d10c5e3cc9b-06a32a2c, #w-node-_78677131-0563-d6dd-6aa2-8d10c5e3cc9e-06a32a2c, #w-node-_78677131-0563-d6dd-6aa2-8d10c5e3cca2-06a32a2c {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_88838119-399b-0a73-d8b4-d1de798261c3-ae6619e8, #w-node-ceb1afaf-6559-b411-7db7-94c2122f25b9-ae6619e8 {
  place-self: start end;
}

#w-node-f35613b2-aa5c-66bf-b6de-f1102fa51bf3-ae6619e8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-f35613b2-aa5c-66bf-b6de-f1102fa51bf7-ae6619e8, #w-node-f35613b2-aa5c-66bf-b6de-f1102fa51bfc-ae6619e8, #w-node-f35613b2-aa5c-66bf-b6de-f1102fa51bff-ae6619e8, #w-node-f35613b2-aa5c-66bf-b6de-f1102fa51c03-ae6619e8 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_810668ec-fd2d-00a2-e808-cfe90e3ccfc1-7a306722 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_810668ec-fd2d-00a2-e808-cfe90e3ccfc9-7a306722, #w-node-_810668ec-fd2d-00a2-e808-cfe90e3ccfce-7a306722, #w-node-_810668ec-fd2d-00a2-e808-cfe90e3ccfd1-7a306722, #w-node-_810668ec-fd2d-00a2-e808-cfe90e3ccfd8-7a306722 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-a8f1ba79-ed8d-7291-3053-77c5b3f44663-7a306722 {
  place-self: start;
}

#w-node-a8f1ba79-ed8d-7291-3053-77c5b3f44667-7a306722, #w-node-a8f1ba79-ed8d-7291-3053-77c5b3f4466b-7a306722, #w-node-a8f1ba79-ed8d-7291-3053-77c5b3f4466f-7a306722 {
  align-self: start;
}

#w-node-a8f1ba79-ed8d-7291-3053-77c5b3f44673-7a306722 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: start;
}

#w-node-a8f1ba79-ed8d-7291-3053-77c5b3f44677-7a306722 {
  align-self: start;
}

#w-node-_3aff4982-aba8-d9bc-e117-d6f81068b9da-7a306722 {
  grid-area: span 2 / span 2 / span 2 / span 2;
  align-self: start;
}

#w-node-a8f1ba79-ed8d-7291-3053-77c5b3f4468a-7a306722 {
  grid-area: Area-2;
}

#w-node-_7fad20d2-f49a-1b41-21a5-2881012c75d2-012c7589 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_7fad20d2-f49a-1b41-21a5-2881012c75ec-012c7589 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_7fad20d2-f49a-1b41-21a5-2881012c76b6-012c7589 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_7fad20d2-f49a-1b41-21a5-2881012c76d0-012c7589 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

@media screen and (max-width: 767px) {
  #w-node-_7fad20d2-f49a-1b41-21a5-2881012c76b6-012c7589 {
    grid-column: span 2 / span 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-d65e5620-dba3-20a8-abb2-56d986fe823a-49638171, #w-node-d65e5620-dba3-20a8-abb2-56d986fe823e-49638171 {
    grid-column: span 2 / span 2;
  }
}


