:root {
  --font: Outfit, sans-serif;
  --text: #3a3a3a;
  --primary: #2c6af4;
  --border_radius_3: 3rem;
  --border_radius: 1.8rem;
  --white: white;
  --background: #fafafa;
  --black: #000;
  --gradient_start: #071856;
  --gradient_end: #10548e;
  --v_space_3: 2rem;
  --v_space_4: 1.5rem;
  --v_space_1: .5rem;
  --secondary-1: #00dbff;
  --secondary-2: #22ff7b;
  --text-2: #475569;
  --v_space_6: 5rem;
  --secondary-5: #22b0ff;
  --secondary-4: #e5f5f9;
  --red: #3a3a3a;
  --bg_start: #f400f9;
  --bg_end: #00dbff;
  --secondary-3: #f400f9;
  --v_space_2: 1rem;
  --v_space_5: 3rem;
}

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

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

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

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

body {
  font-family: var(--font);
  color: var(--text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 54px;
  font-weight: 700;
  line-height: 4rem;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 42px;
  font-weight: 700;
  line-height: 3.125rem;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 2.1875rem;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 2.25rem;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.75rem;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.625rem;
}

p {
  margin-bottom: 0;
}

a {
  padding: 0;
  text-decoration: none;
}

.heading {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.625rem;
}

.guideline_section {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  margin-bottom: 24px;
  display: flex;
}

.subtitle_1 {
  font-weight: 600;
  line-height: 1.5;
}

.subtitle_1.primary_color {
  color: var(--primary);
}

.subtitle_2 {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

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

.button {
  letter-spacing: 1.35px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5rem;
}

.caption {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
}

.caption.lowercase {
  text-transform: none;
  font-size: 13.5px;
  line-height: 1.2;
}

.overline {
  font-size: 10px;
  line-height: 1;
}

.body_2 {
  font-size: 14px;
  line-height: 1.25;
}

.body_3 {
  font-size: 9px;
  line-height: 1;
}

.floating_nav {
  background-color: rgba(221, 221, 221, 0);
  margin-top: 1.5rem;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: .5rem;
  padding-right: .5rem;
}

.floating_nav_wrapper {
  border-radius: var(--border_radius_3);
  background-image: linear-gradient(rgba(250, 250, 250, .98), rgba(250, 250, 250, .98));
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2.2rem;
  display: flex;
  box-shadow: 0 4px 12px rgba(186, 199, 213, .5);
}

.button_wrapper {
  padding: .8125rem 1.5rem;
  text-decoration: none;
  display: flex;
}

.button_wrapper.outline {
  border: 3px solid var(--primary);
  border-radius: var(--border_radius);
  color: var(--primary);
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.button_wrapper.outline:hover {
  background-image: linear-gradient(to bottom, var(--primary), var(--primary));
  color: var(--white);
}

.button_wrapper.button_primary {
  border-radius: var(--border_radius);
  background-image: linear-gradient(to bottom, var(--primary), var(--primary));
  color: var(--white);
  position: relative;
}

.nav-link {
  padding: 0;
}

.nav-link.hide {
  display: none;
}

.nav-menu {
  grid-column-gap: 1.5625rem;
  grid-row-gap: 1.5625rem;
  flex-direction: row;
  align-items: center;
  display: flex;
}

.brand {
  width: 149px;
  height: 34px;
  margin-bottom: -4px;
}

.section {
  align-items: stretch;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.section.hero {
  min-height: 100vh;
  padding-top: 11.5rem;
  overflow: hidden;
}

.section.gray_bg {
  background-color: var(--background);
  box-shadow: 0 16px 16px 12px rgba(16, 24, 40, .08);
}

.section.gray_bg.no_shadows {
  box-shadow: none;
}

.section.gray_bg.partner_section {
  box-shadow: none;
  background-color: rgba(0, 0, 0, 0);
}

.section.gray_bg.partner_section.hide {
  display: none;
}

.section.footer_bg {
  background-image: linear-gradient(to right, var(--gradient_start), var(--gradient_end));
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.section.line_fixed_margin {
  margin-top: -80px;
}

.section.full_height {
  height: 100vh;
  max-height: 100vh;
  min-height: 100vh;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.grid {
  grid-template-rows: auto;
}

.hero_left {
  flex: 1;
  padding-top: 4rem;
}

.hero_right {
  position: relative;
}

.hero_right.hero_right_bottom {
  top: 376px;
  right: 0;
}

.button_gradiunt {
  z-index: -1;
  border-radius: var(--border_radius);
  position: absolute;
  top: -5px;
  bottom: -5px;
  left: -5px;
  right: -5px;
}

.v_space_3 {
  height: var(--v_space_3);
}

.v_space_2, .v_space_1 {
  height: var(--v_space_1);
}

.gradiunt_text {
  color: var(--gradient_start);
}

.gradiunt_text.max_width_md {
  max-width: 742px;
}

.gradiunt_text.max_width_md.gradiunt_green_text {
  background-image: linear-gradient(to right, var(--secondary-1), var(--secondary-2));
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.text_highlight {
  color: var(--primary);
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  display: inline;
}

.paragraph {
  color: var(--text-2);
}

.hero_image {
  max-height: 75vh;
  max-width: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.hero_wrapper {
  height: 100%;
  min-height: 100%;
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.body_bg {
  background-image: none;
  background-size: auto;
}

.grid-2 {
  grid-template-rows: auto;
}

.hero_right_wrapper {
  height: 100%;
  display: block;
}

.hero_right_wrapper.hero_right {
  display: inline-block;
}

.full_hero_img {
  display: none;
}

.gradient-bg {
  z-index: -1;
  opacity: .5;
  filter: blur(200px);
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.gradient-bg.gradient-bg-footer {
  position: fixed;
  top: 67%;
}

.bg-circle {
  width: 30vw;
  height: 30vw;
  background-color: #455268;
  border-radius: 100%;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.bg-circle._1 {
  width: 50vw;
  height: 50vw;
  opacity: 1;
  background-color: #26ee9f;
  border-radius: 20%;
  margin-top: -16%;
  margin-left: -16%;
}

.bg-circle._2 {
  opacity: 1;
  background-color: #0bb8dd;
  border-radius: 40%;
  margin-top: -4%;
}

.bg-circle._3 {
  width: 40vw;
  height: 40vw;
  background-color: #5057ff;
  margin-top: -12%;
  margin-left: 52%;
}

.bg-circle._3.footer {
  background-color: #18befd;
}

.bg-circle._4 {
  width: 60vw;
  height: 60vw;
  background-color: #5057ff;
  margin-top: -32%;
  margin-right: -10%;
  left: auto;
  right: 0;
}

.bg-circle._4.footer {
  background-color: #18befd;
}

.bg-circle._5 {
  background-color: #18befd;
  margin-top: 24%;
  margin-right: -8%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.bg-circle._6 {
  width: 40vw;
  height: 40vw;
  background-color: #18befd;
  margin-top: 35%;
  margin-bottom: -20%;
  margin-right: -16%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.bg-circle._7 {
  background-color: #0bdd52;
  background-image: linear-gradient(#0bdd52, #0bdd52);
}

.v_space_4 {
  height: var(--v_space_6);
}

.grid_4_items {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.primary_card {
  background-image: linear-gradient(to bottom, var(--secondary-5), rgba(255, 255, 255, 0));
  border-radius: 24px;
  padding: 1px;
  display: block;
  position: relative;
}

.primary_card_wrapper {
  height: 100%;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--secondary-4);
  border-radius: 24px;
  flex-direction: column;
  align-items: center;
  padding: 1.75rem 1.5rem;
  display: flex;
}

.primary_card_icon {
  background-color: var(--white);
  border-radius: 1.5rem;
  padding: 1.5rem;
  box-shadow: 0 32px 54px -12px rgba(0, 0, 0, .2);
}

.primary_card_heading {
  color: var(--gradient_start);
  text-align: center;
}

.primary_card_description {
  text-align: center;
  color: #3a3a3a;
}

.primary_card_icon_img {
  width: 42px;
  height: 42px;
}

.button_secondary {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border-radius: var(--border_radius);
  background-color: var(--primary);
  color: var(--white);
  padding: .8125rem 1.5rem;
  transition: all .2s, box-shadow .6s cubic-bezier(.785, .135, .15, .86);
  display: flex;
}

.button_secondary:hover {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  box-shadow: 0 15px 40px -10px var(--primary);
}

.button_secondary.button_secondary_submit {
  letter-spacing: 1.3px;
  align-self: flex-start;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

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

.header_centered {
  max-width: 616px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.icon-regular {
  width: 24px;
  height: 24px;
  justify-content: center;
  align-items: center;
  transition: color .2s;
  display: flex;
}

.slide-logo-wrap {
  width: 72px;
  height: 72px;
  background-color: #fff;
  border: 1px solid #ebebef;
  justify-content: center;
  align-items: center;
  margin-bottom: 64px;
  margin-right: 16px;
  display: flex;
}

.slide-nav-hidden {
  display: none;
}

.card-slider {
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
}

.card-slider.hide {
  display: none;
}

.slider-right-button {
  width: 48px;
  height: 48px;
  color: #030407;
  background-color: #fff;
  border: 1px solid #ebebef;
  justify-content: center;
  align-items: center;
  transition: all .4s;
  display: flex;
  top: auto;
  bottom: 0%;
  left: 60px;
  right: auto;
}

.slider-right-button:hover {
  background-color: #ebebef;
}

.slider-right-button:active {
  background-color: #d6d7e0;
}

.paragraph-regular {
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.8;
}

.paragraph-regular.text-color-gray-600 {
  color: #3e404c;
}

.slide-image-wrap {
  width: 100%;
  height: 100%;
  justify-content: flex-end;
  align-items: flex-end;
}

.slide-description {
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.4;
}

.icon-extra-large {
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.image-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.slide-grid {
  height: 100%;
  grid-column-gap: 64px;
  grid-row-gap: 48px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.text-color-primary {
  color: #443fde;
}

.slider-left-button {
  width: 48px;
  height: 48px;
  color: #d6d7e0;
  background-color: #fff;
  border: 1px solid #ebebef;
  justify-content: center;
  align-items: center;
  display: flex;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.slide-content-wrap {
  max-width: 450px;
}

.slider_navbar {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  display: flex;
}

.navbar_item {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-radius: 7px 7px 2px 2px;
  padding: 24px;
  display: flex;
}

.navbar_item.active {
  border-style: solid;
  border-width: 0 0 2px;
  border-color: var(--secondary-5);
  background-image: linear-gradient(to bottom, var(--white), var(--white));
  border-radius: 7px 7px 2px 2px;
}

.navbar_item_description {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  display: flex;
}

.navbar_item_img {
  width: 52px;
  height: 52px;
  max-width: none;
  filter: grayscale();
  object-fit: fill;
  overflow: visible;
}

.navbar_item_img.active {
  width: 42px;
  height: 42px;
  filter: none;
}

.blue_gray_text {
  color: var(--text-2);
}

.blue_gray_text.hide, .blue_gray_text.navbar_item_description_text {
  display: none;
}

.tab-button {
  background-color: rgba(200, 200, 200, 0);
  padding: 0;
}

.tab-button.w--current {
  border-bottom: 0px none var(--secondary-5);
  background-color: #fff;
  border-radius: 7px 7px 2px 2px;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 12px 16px -4px rgba(16, 24, 40, .08);
}

.tabs {
  height: 100%;
  min-height: 700px;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  display: flex;
}

.tab_menu {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  padding-right: 60px;
  display: flex;
}

.tabs_content {
  width: 50%;
  min-width: 50%;
  flex: 1;
  align-self: stretch;
}

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

.secondary_card {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 24px;
  flex-direction: column;
  padding: 24px 16px;
  display: flex;
}

.secondary_card_img {
  width: 82px;
  height: 82px;
  margin-left: auto;
  margin-right: auto;
}

.secondary_card_title {
  text-align: center;
}

.app_screenshot {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.app_img_description {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  text-align: center;
  flex-direction: column;
  padding-right: 32px;
  display: flex;
}

.app_img.last {
  padding-right: 30px;
}

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

.line_lg {
  display: block;
}

.partners_logos {
  min-width: 100%;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-around;
  align-items: flex-start;
  display: flex;
}

.partner_logo_wrapper {
  width: 188px;
  height: 188px;
  background-color: #fff;
  border-top-left-radius: 72px;
  border-bottom-right-radius: 72px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  box-shadow: 0 20px 80px rgba(0, 0, 0, .1);
}

.partners_logos_wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  padding-top: 5rem;
  padding-bottom: 5rem;
  display: flex;
  overflow: hidden;
}

.contact_us {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #fff;
  border-top-right-radius: 90px;
  border-bottom-left-radius: 90px;
  justify-content: space-between;
  display: flex;
}

.contact_us_cover {
  min-height: 690px;
  color: var(--white);
  background-image: url('../images/6544a87db7bee8f8e86907c7_contact_us.png');
  background-position: 0 0;
  background-size: cover;
  border-top-right-radius: 90px;
  border-bottom-left-radius: 90px;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.contact_us_form {
  background-color: #fff;
  border-top-right-radius: 90px;
  flex: 1;
  padding: 64px 46px 32px;
}

.field_row {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  display: flex;
}

.field_wrapper {
  flex: 1;
}

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

.style_field {
  height: 40px;
  background-image: linear-gradient(#f5f5f5, #f5f5f5);
  border: 1px solid #e2e2e2;
  border-radius: 6px;
}

.style_field.style_field_textarea {
  height: 140px;
}

.browse-dropdown-small {
  width: 100%;
  background-color: #fff;
  border: 1px solid #ebebef;
  margin-left: 0;
  margin-right: 0;
}

.jobs-dropdown-toggle {
  height: 40px;
  grid-column-gap: 8px;
  color: #84889a;
  justify-content: center;
  align-items: center;
  padding: 8px 16px;
  display: flex;
}

.paragraph-small {
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.6;
}

.dropdown-text {
  color: #443fde;
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

.jobs-dropdown-list {
  background-color: #fff;
  border: 1px solid #ebebef;
  margin-top: 4px;
}

.jobs-dropdown-list.w--open {
  grid-row-gap: 2px;
  flex-direction: column;
  display: flex;
}

.jobs-dropdown-link {
  width: 100%;
  padding: 8px 12px;
}

.jobs-dropdown-link:hover {
  background-color: #f3f3fc;
}

.subheading-small {
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
}

.form {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.footer_menu_wrapper {
  justify-content: space-between;
  display: flex;
}

.footer_logo {
  width: auto;
  height: 52px;
}

.footer_menu {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  display: flex;
}

.footer_menu_link {
  opacity: .9;
  color: var(--white);
  padding: 12px 0;
  font-size: 14px;
}

.footer_menu_link:hover {
  opacity: 1;
}

.footer_menu_link.hide {
  display: none;
}

.divider {
  height: 1px;
  max-height: 1px;
  background-color: rgba(255, 255, 255, .25);
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 0;
}

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

.copyright_text {
  color: rgba(255, 255, 255, .7);
}

.social_media {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

.fixed_links {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  display: flex;
}

.graduient_img {
  background-image: url('../images/657c00831a4b570cad15eda6_cover.webp');
  background-position: 0 100%;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}

.line_section {
  z-index: 1;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: stretch;
  margin-top: 0;
  padding-left: 20px;
  display: flex;
  position: relative;
}

.line_shape {
  flex: 1;
  align-self: auto;
  position: relative;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
}

.status {
  flex: 0 auto;
  margin-top: -6px;
  margin-right: -51px;
  padding-left: 0;
  display: inline-block;
  position: relative;
  top: 38px;
  right: 0%;
}

.staus_wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  display: flex;
}

.staus_circle_gradiunt {
  background-image: linear-gradient(45deg, var(--bg_start), white);
  border-radius: 43.35px;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  align-items: center;
  padding: 4.46px;
  display: flex;
}

.staus_circle {
  background-color: var(--primary);
  border-radius: 43.35px;
  padding: 16px 6.38px;
}

.staus_num {
  color: var(--secondary-1);
  font-size: 40px;
  font-weight: 700;
  line-height: 45.9px;
  text-decoration: none;
}

.staus_num_percentage {
  font-size: 25px;
}

.status_description {
  max-width: 343px;
  color: var(--primary);
  flex: 1;
  align-self: center;
  font-size: 25.43px;
  font-weight: 500;
  line-height: 28.6px;
}

.text_gradient {
  background-image: linear-gradient(45deg, var(--bg_start) 47%, var(--bg_end));
  color: #2c6af4;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 700;
}

.text_gradient.text_gradient_more {
  background-image: linear-gradient(to bottom, var(--primary), var(--primary));
  text-decoration: none;
}

.div-block {
  display: inline-block;
}

.line_shape_sm {
  display: none;
}

.thanks_illustration {
  z-index: -1;
  width: 495px;
  height: 547px;
  display: inline-block;
  position: absolute;
  top: 427px;
  right: 94px;
}

.thanks_illustration_img {
  height: 547px;
  position: absolute;
  right: 0;
}

.update-date {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-self: auto;
  align-items: center;
  display: flex;
}

.web-h2-headline {
  color: #78909c;
  letter-spacing: -.8px;
  font-size: 42px;
  font-weight: 700;
  line-height: 50px;
}

.web-h2-headline.white-text {
  color: #fff;
}

.web-h2-headline.white-text.mobile-heading-2.no-margin {
  margin-top: 0;
  margin-bottom: 0;
}

.web-h2-headline.white-text.mobile-heading-2.no-margin.text-center {
  text-align: center;
}

.web-h2-headline.white-text.mobile-heading-2.no-margin.text-center.margin-bottom-20 {
  margin-bottom: 20px;
}

.badge {
  width: auto;
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

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

.hero-sub-page {
  background-image: linear-gradient(270deg, var(--secondary-1), #b6f5ff 51%, var(--secondary-2));
  text-align: center;
  padding-top: 164px;
  padding-bottom: 64px;
}

.hero-sub-page.padding-y-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.badge-blue {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  display: inline-block;
}

.container-2 {
  max-width: 1200px;
  flex: 1;
  justify-content: space-between;
  align-items: stretch;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  display: block;
}

.script-box {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-direction: column;
  display: flex;
}

.paragraph-box {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  display: flex;
}

.static-page-content.padding-y-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.web-h4-headline {
  color: #3a3a3a;
  font-size: 28px;
  font-weight: 700;
  line-height: 36px;
}

.web-h4-headline.white-text {
  z-index: 2;
  color: #fff;
  position: static;
  bottom: 22px;
  left: 22px;
}

.web-h4-headline.white-text.mobile-heading-2.no-margin {
  margin-top: 0;
  margin-bottom: 0;
}

.web-body-1 {
  color: #9e9e9e;
  letter-spacing: .444444px;
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

.window_shape {
  height: 100%;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
  overflow: hidden;
  box-shadow: inset 0 2px 5px rgba(0, 0, 0, .2);
}

.window_header {
  background-color: var(--white);
  border-bottom: 1px solid #e8e8e8;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  padding: 18px;
  box-shadow: 0 0 rgba(0, 0, 0, .15), inset 0 0 rgba(0, 0, 0, .05);
}

.window_dots {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  display: flex;
}

.window_dot {
  width: 10px;
  height: 10px;
  border-radius: 10px;
}

.window_dot.dot_1 {
  background-color: #ee6a5f;
  border: 1px solid #ce5347;
}

.window_dot.dot_2 {
  background-color: #f5bd4f;
  border: 1px solid #d6a243;
}

.window_dot.dot_3 {
  background-color: #61c454;
  border: 1px solid #58a942;
}

.window_body {
  height: 100%;
  background-image: linear-gradient(to top, #cbfae6, var(--white) 34%, white 51%);
  justify-content: center;
  align-items: center;
  display: flex;
}

.tab_panel {
  height: 100%;
}

.percentage {
  display: none;
}

.tab-timer-bar {
  height: 2.5px;
  background-color: var(--secondary-5);
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
  transform: translate(0);
}

.text-right {
  text-align: right;
  justify-content: flex-end;
  display: flex;
}

.cta_btn {
  background-image: linear-gradient(45deg, var(--bg_start), var(--bg_end));
  border-radius: 30px;
  padding: 3px;
}

.image, .image-2, .image-3 {
  width: 18px;
  height: 24px;
}

.canvas_edit {
  width: 100%;
  height: 80%;
  -webkit-text-stroke-width: 0px;
  -webkit-text-stroke-color: rgba(58, 58, 58, 0);
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 32px;
    font-weight: 500;
    line-height: 2.5rem;
  }

  h2 {
    font-size: 26px;
    line-height: 2.25rem;
  }

  h3 {
    font-size: 24px;
    font-weight: 500;
    line-height: 1.875rem;
  }

  h4 {
    font-size: 20px;
    line-height: 1.75rem;
  }

  h5 {
    font-size: 18px;
    line-height: 1.625rem;
  }

  h6 {
    font-size: 16px;
    line-height: 1.5rem;
  }

  .caption.lowercase {
    font-size: 14.5px;
  }

  .floating_nav {
    margin-top: 1rem;
  }

  .container {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .floating_nav_wrapper {
    padding: .875rem 1.5rem;
  }

  .nav-link {
    opacity: .9;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .nav-link:hover {
    opacity: 1;
  }

  .nav-menu {
    border-radius: var(--border_radius_3);
    background-color: var(--background);
    margin-top: 1rem;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(186, 199, 213, .5);
  }

  .brand {
    height: 28px;
  }

  .menu_icon {
    font-size: 42px;
  }

  .menu_icon_btn {
    padding: 0;
  }

  .menu_icon_btn.w--open {
    background-color: var(--background);
    color: var(--black);
  }

  .section.hero {
    min-height: auto;
    padding-top: 8rem;
  }

  .section.gray_bg.partner_section {
    padding-bottom: 1rem;
  }

  .section.flow_pd_bottom_0 {
    padding-bottom: 0;
  }

  .section.line_fixed_margin {
    margin-top: 0;
  }

  .section.line_fixed_margin.text_center_sm {
    text-align: center;
  }

  .section.full_height {
    text-align: center;
    padding-bottom: 18rem;
  }

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

  .hero_left {
    padding-top: 0;
  }

  .v_space_3 {
    height: var(--v_space_4);
  }

  .v_space_2 {
    height: var(--v_space_1);
  }

  .gradiunt_text.max_width_md.mg_auto {
    margin-left: auto;
    margin-right: auto;
  }

  .hero_image {
    height: 35rem;
    max-height: none;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero_right_wrapper {
    height: 30rem;
    display: none;
  }

  .full_hero_img {
    display: block;
  }

  .v_space_4 {
    height: var(--v_space_3);
  }

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

  .header_centered {
    max-width: 100%;
    text-align: left;
    align-items: flex-start;
  }

  .header_centered.text_center {
    align-items: center;
  }

  .icon-regular {
    -webkit-text-stroke-color: #030407;
  }

  .icon-regular.lottie {
    height: 39px;
    flex: 1;
  }

  .slide-logo-wrap {
    width: auto;
    height: auto;
    border-color: #fff;
    border-radius: 1.5rem;
    margin-bottom: 32px;
    padding: 1rem;
    display: inline-block;
    box-shadow: 4px 4px 8px rgba(0, 0, 0, .05);
  }

  .card-slider.hide {
    display: block;
  }

  .slider-right-button {
    color: var(--text);
    background-color: rgba(255, 255, 255, 0);
    border-width: 0;
    border-radius: 7px;
    padding-bottom: 0;
    top: 0%;
    bottom: auto;
    left: auto;
    right: 0%;
  }

  .slider-right-button.center_right_btn {
    margin-top: 0;
    margin-bottom: 34px;
    margin-right: 0;
    top: auto;
    bottom: 50%;
    right: 0;
  }

  .slide-image-wrap {
    height: 380px;
    justify-content: center;
  }

  .icon-extra-large {
    width: 48px;
    height: auto;
  }

  .image-cover {
    object-fit: cover;
  }

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

  .slider-left-button {
    color: var(--text);
    background-color: rgba(255, 255, 255, 0);
    border-width: 0;
    border-radius: 7px;
    transition: all .4s;
    top: 0%;
    bottom: auto;
    left: auto;
    right: 90px;
  }

  .slider-left-button:hover {
    background-color: #ebebef;
  }

  .slider-left-button.center_left_btn {
    margin-bottom: 34px;
    margin-left: 0;
    top: auto;
    bottom: 50%;
    left: 0;
    right: auto;
  }

  .slide-content-wrap {
    max-width: 100%;
  }

  .slider_navbar {
    width: 100%;
  }

  .navbar_item.no_left_padding {
    padding: 0;
  }

  .tabs, .grid-3 {
    display: none;
  }

  .app_img_description {
    padding-right: 0;
  }

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

  .line_lg {
    display: inline;
  }

  .partners_logos {
    min-width: auto;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: row;
    justify-content: space-around;
    display: flex;
  }

  .partners_logos_wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .contact_us {
    flex-direction: column;
    overflow: hidden;
  }

  .contact_us_cover {
    min-height: auto;
    background-image: url('../images/657f0c0742a3aaa0353cdb26_6544a87db7bee8f8e86907c7_contact_us.png');
    background-size: cover;
    padding: 72px 18px;
  }

  .contact_us_form {
    padding-top: 32px;
  }

  .jobs-dropdown-toggle {
    align-items: center;
  }

  .graduient_img {
    background-image: url('../images/657f0ea276cabbfba119d847_657c00831a4b570cad15eda6_cover.webp');
  }

  .pagination_slider {
    z-index: 9;
    height: 48px;
    align-items: center;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    position: absolute;
    top: 0;
    bottom: auto;
    left: auto;
    right: 49px;
  }

  .pagination_slider.pagination_slider_bottom {
    width: 100%;
    height: auto;
    text-align: center;
    justify-content: center;
    margin-top: -10px;
    font-size: 14px;
    display: block;
    position: static;
    top: auto;
    bottom: 65px;
    right: 50%;
  }

  .slider_total {
    flex: 1;
  }

  .bottom_padding {
    padding-bottom: 60px;
  }

  .line_section {
    z-index: 1;
    min-height: 130px;
    justify-content: space-around;
    align-items: flex-start;
    margin-top: -74px;
    padding-left: 0;
  }

  .line_shape {
    display: none;
  }

  .status {
    text-align: center;
    margin-top: 0;
    margin-right: 0;
    display: block;
    position: static;
  }

  .staus_wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }

  .status_description {
    width: 343px;
  }

  .contact_us_form_head {
    font-size: 18px;
  }

  .line_shape_sm {
    width: 100px;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .thanks_illustration {
    z-index: -1;
    opacity: .9;
  }

  .container-2 {
    height: auto;
    max-width: 100%;
    flex-direction: column;
    flex: none;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
  }

  .purecounter {
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    font-size: 64px;
  }

  .percentage {
    width: 126px;
    background-image: linear-gradient(to bottom, var(--bg_start), var(--bg_end));
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 64px;
    line-height: 3.6rem;
    display: block;
  }

  .arrow_slider_img.arrow_slider_right.hide {
    flex: 1;
    display: none;
  }

  .arrow_slider_img.arrow_slider_left {
    width: 85%;
    transform: rotate(180deg);
  }
}

@media screen and (max-width: 767px) {
  .caption.lowercase {
    min-height: 50px;
    font-size: 14.5px;
  }

  .body_2.copyright_text {
    order: 1;
  }

  .floating_nav {
    margin-top: 1rem;
  }

  .floating_nav_wrapper {
    padding: .875rem 1.5rem;
  }

  .hero_right_wrapper {
    height: 30rem;
  }

  .v_space_4.v_1_5_rem {
    height: var(--v_space_4);
  }

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

  .header_centered.text_center.center_flow {
    text-align: center;
  }

  .icon-regular.lottie {
    height: 39px;
    flex: 1;
  }

  .icon-regular.hide {
    display: none;
  }

  .icon-extra-large {
    width: 42px;
  }

  .app_img_description {
    max-width: 78%;
  }

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

  .partner_logo_wrapper {
    width: 140px;
    height: 140px;
    border-top-left-radius: 52px;
    border-bottom-right-radius: 52px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .1);
  }

  .partners_logos_wrapper {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .partner_logo_wrapper_img {
    height: 20px;
  }

  .contact_us {
    border-bottom-left-radius: 60px;
  }

  .contact_us_form {
    padding-top: 32px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .field_row {
    flex-direction: column;
  }

  .footer_menu_wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
  }

  .footer_logo {
    align-self: flex-start;
  }

  .footer_menu {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-direction: column;
  }

  .footer_menu_link {
    padding-top: 0;
    padding-bottom: 0;
  }

  .divider {
    margin-top: 20px;
  }

  .copyright {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .line_section {
    min-height: 170px;
    justify-content: space-around;
  }

  .status {
    z-index: 1;
    position: relative;
    top: 0;
    right: 0;
  }

  .status_description {
    font-size: 25px;
  }

  .full_width_btn {
    text-align: center;
    flex: 1;
    display: block;
  }

  .line_shape_sm {
    width: 120px;
    margin-top: 10px;
  }

  .thanks_illustration {
    top: 474px;
  }

  .web-h2-headline.white-text.mobile-heading-2 {
    font-size: 28px;
    font-weight: 400;
    line-height: 36px;
  }

  .container-2 {
    justify-content: space-between;
  }

  .web-h4-headline.white-text.mobile-heading-2 {
    font-weight: 400;
  }

  .overlay_line_section {
    z-index: 0;
    width: 100%;
    height: 60%;
    background-image: linear-gradient(to top, #fff, rgba(255, 255, 255, 0));
    padding-bottom: 0;
    padding-right: 0;
    position: absolute;
    bottom: 0;
  }

  .arrow_slider_img {
    width: 85%;
  }

  .arrow_slider_img.hide {
    width: 85%;
    display: none;
  }

  .arrow_slider_img.arrow_slider_left {
    transform: rotate(180deg);
  }
}

@media screen and (max-width: 479px) {
  .caption.lowercase {
    min-height: 50px;
  }

  .section.line_fixed_margin.text_center_sm {
    text-align: center;
  }

  .bg-circle._2 {
    background-color: #4353ff;
  }

  .bg-circle._3 {
    background-color: #3fa1f7;
  }

  .bg-circle._4 {
    background-color: #20c788;
  }

  .bg-circle._5 {
    background-color: #ffab9d;
  }

  .bg-circle._6 {
    background-color: #ff6382;
  }

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

  .primary_card_icon {
    padding: 1.25rem;
  }

  .header_centered.text_center.center_flow {
    text-align: center;
  }

  .app_img_wrapper {
    width: auto;
  }

  .app_img_description {
    max-width: 100%;
  }

  .app_img {
    width: auto;
  }

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

  .contact_us {
    border-bottom-left-radius: 60px;
  }

  .contact_us_form {
    padding-top: 32px;
  }

  .footer_menu_wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .footer_logo {
    height: 47px;
  }

  .footer_menu_link {
    padding-top: 0;
    padding-bottom: 0;
  }

  .divider {
    margin-top: 20px;
  }

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

  .line_section {
    min-height: 222px;
  }

  .status {
    margin-top: 0;
  }

  .staus_wrapper {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    flex-direction: column;
    align-items: center;
  }

  .status_description {
    width: 100%;
    align-self: stretch;
    font-size: 21px;
  }

  .text_gradient {
    background-image: linear-gradient(45deg, #b202b6, var(--bg_start) 70%, var(--bg_end));
  }

  .line_shape_sm {
    width: 60px;
    margin-top: -9px;
    margin-left: auto;
    margin-right: auto;
  }

  .badge {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-direction: column;
  }

  .hero-sub-page {
    padding-top: 150px;
    padding-bottom: 32px;
  }
}

#w-node-bbcb5399-8282-d82c-4da9-9ddfc7f9179c-be6e795f, #w-node-_1b621d5b-5f6e-bd4d-69d4-bcf1bb961d5d-be6e795f, #w-node-b47b1deb-da1d-dd80-5f7a-0b8b3b65eeaa-be6e795f, #w-node-c5ae3aea-ef5c-0d7e-56f5-e6d50b2b9cb2-be6e795f, #w-node-_3b6e473c-d814-09c0-fa00-671b7e9dae39-be6e795f, #w-node-_05b8402a-1258-1c89-d125-b16e8eefd8ab-be6e795f, #w-node-fce2a3cc-0e61-d9b5-996d-1f2c08fa1764-be6e795f, #w-node-fce2a3cc-0e61-d9b5-996d-1f2c08fa1768-be6e795f, #w-node-fce2a3cc-0e61-d9b5-996d-1f2c08fa176c-be6e795f, #w-node-fce2a3cc-0e61-d9b5-996d-1f2c08fa1770-be6e795f, #w-node-fce2a3cc-0e61-d9b5-996d-1f2c08fa1774-be6e795f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_55842ad5-c723-a31b-6c6c-039a74b8dfe5-be6e795f, #w-node-f9c45f58-0dc1-21d5-aa3f-93185e4fcb23-be6e795f, #w-node-_3c426ead-ebe5-a006-3605-4f868166fa21-be6e795f, #w-node-_85f6d1cc-04dc-9030-7f92-64dffd4f1934-be6e795f, #w-node-fd1c02f3-fcde-b519-be2c-63ace5909b3c-be6e795f {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: auto;
  justify-self: auto;
}

/**
 * FAQ
 */
.faq_section .faq_item {
    border-bottom: 1px solid #e6e6e6;
    padding: 20px 0;
    position: relative;
}
.faq_section .faq_question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding-right: 40px;
}
.faq_section .faq_number {
    font-weight: bold;
    margin-right: 10px;
}
.faq_section .faq_title {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}
.faq_section .faq_toggle {
    position: absolute;
    right: 0;
    top: 20px;
    width: 30px;
    height: 30px;
    background-color: #0066FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}
.faq_section .arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    margin-top: -4px;
}
.faq_section .arrow.up {
    transform: rotate(-135deg);
    margin-top: 4px;
}
.faq_section .faq_answer {
    margin-top: 15px;
    color: #666;
    line-height: 1.5;
}
