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

.fn-button-dark {
  color: #ffd001;
  background-color: #1d1f1e;
  border: 1px solid #000;
  border-radius: 8px;
  padding: 12px 24px;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  line-height: 1.6em;
  transition: color .25s, background-color .25s;
}

.fn-button-dark:hover {
  color: #ffd001;
  background-color: #ffd001;
  background-image: linear-gradient(135deg, #3deb03, #279203);
  border-style: none;
  border-color: #0f1213;
}

.fn-button-dark.w--current {
  background-color: #1d1f1e;
}

.fn-button-dark.w--current:hover {
  background-color: rgba(0, 0, 0, 0);
}

.fn-button-secondery-dark {
  color: #1d1f1e;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #1d1f1e;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  line-height: 1.6em;
  transition: color .25s, background-color .25s;
  display: flex;
}

.fn-button-secondery-dark:hover {
  color: #3deb03;
  background-color: #1d1f1e;
}

.fn-button-secondery-dark.light {
  color: #ffd001;
  border-color: #ffd001;
}

.fn-button-secondery-dark.light:hover {
  color: #3deb03;
  background-color: #ffd001;
}

.fn-button-wrapper {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  display: grid;
}

.fn-navbar-link-box {
  color: #1d1f1e;
  padding-top: 32px;
  padding-bottom: 32px;
  font-family: Inconsolata, monospace;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3em;
  text-decoration: underline;
  transition: opacity .25s;
}

.fn-navbar-link-box:hover {
  opacity: .7;
  color: #3deb03;
}

.fn-navbar-link-box.navbar-link-box-last.w--current {
  color: #3deb03;
}

.fn-navbar-link-box.services {
  display: none;
}

.fn-navbar-links-wrapper {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.fn-navbar-menu-wrapper, .fn-navbar-menu-box {
  flex: 1;
  justify-content: space-between;
  display: flex;
}

.fn-contain-logo {
  width: 100%;
  height: 100%;
  color: #df0;
  object-fit: contain;
  object-position: 0% 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.fn-contain-logo.dark-logo {
  color: #1d1f1e;
  display: none;
}

.fn-brand-box {
  width: 106px;
  height: 21.55px;
  object-fit: contain;
  object-position: 0% 50%;
  margin-right: 0;
  transition: opacity .25s;
  display: block;
}

.fn-brand-box:hover {
  opacity: .7;
}

.fn-brand-box.side-margin {
  width: 235px;
  height: auto;
}

.fn-brand-box.side-margin.w--current {
  margin-right: 20px;
}

.fn-brand-box.footer {
  display: none;
}

.fn-navbar-container-box {
  width: 100vw;
  max-width: none;
  background-color: #ffd001;
  border-radius: 0;
  justify-content: space-between;
  align-items: center;
  padding-left: 24px;
  padding-right: 24px;
  display: flex;
}

.fn-navbar-box {
  width: 100%;
  background-color: rgba(0, 0, 0, 0);
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.body {
  background-color: #000;
}

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

.fh-hero-image-wrapper-second {
  width: 542px;
  height: 720px;
  border-radius: 300px;
  overflow: hidden;
}

.fn-button-secondery {
  min-width: 137px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  font-size: 16px;
  line-height: 1.6em;
  transition: background-color .25s;
  display: flex;
}

.fn-button-secondery:hover {
  background-color: #3e4545;
}

.fn-button {
  color: #0f1213;
  text-align: center;
  background-color: #df0;
  border: 1px solid #df0;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  transition: opacity .25s, border-color .25s;
  display: flex;
}

.fn-button:hover {
  opacity: .9;
  border-color: #0f1213;
}

.fn-paragraph {
  color: #cdd3d2;
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.6em;
}

.fn-heading-1 {
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 64px;
  line-height: 1.2em;
}

.fn-column {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.fn-container-grid {
  width: 100%;
  max-width: 1310px;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-left: 15px;
  padding-right: 15px;
  display: grid;
}

.fn-container-grid.relative {
  position: relative;
}

.fn-section {
  width: 100%;
  color: #ecf0ef;
  background-color: #000;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  font-family: Open Sans, sans-serif;
  display: flex;
}

.fn-get-a-demo-shape-second {
  width: 193px;
  height: 193px;
  color: #ffd001;
  border: 1px solid #ffd001;
  border-radius: 50%;
  flex: none;
  position: absolute;
  top: auto;
  bottom: auto;
  left: 0;
  right: auto;
}

.fn-get-a-demo-shape {
  width: 230px;
  height: 230px;
  color: #ffd001;
  border: 1px solid #df0;
  border-radius: 50%;
  flex: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.fn-get-a-demo-shape:hover {
  border-color: #279203;
}

.fn-get-a-demo-link {
  width: 260px;
  height: 230px;
  color: #df0;
  letter-spacing: .1em;
  text-transform: uppercase;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  line-height: 1.4em;
  text-decoration: none;
  transition: letter-spacing .25s;
  display: flex;
  position: relative;
}

.fn-get-a-demo-link:hover {
  color: #df0;
  letter-spacing: .3em;
}

.fn-get-a-demo-link.w--current:hover {
  color: #df0;
}

.fn-span-color-text {
  color: #ffd001;
}

.fn-heading-jambo {
  width: 111%;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 88px;
  font-weight: 400;
  line-height: 1.1em;
}

.fn-label-jambo {
  max-width: 480px;
  color: #cdd3d2;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.6em;
}

.fn-section-off-black {
  width: 100%;
  color: #ecf0ef;
  background-color: #000;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  font-family: Open Sans, sans-serif;
  display: flex;
  overflow: hidden;
}

.text-block {
  z-index: 2;
  color: #ffd001;
  position: relative;
}

.text-block:hover {
  color: #3deb03;
}

.fn-logos-image {
  width: auto;
  height: 42px;
  max-width: 150px;
  color: #687373;
  object-fit: contain;
  object-position: 50% 50%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.fn-logos-wrapper {
  width: 100%;
  grid-column-gap: 150px;
  grid-row-gap: 150px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.fn-label {
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  line-height: 1.6em;
}

.fn-section-2 {
  width: 100%;
  color: #ecf0ef;
  background-color: #000;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  font-family: Open Sans, sans-serif;
  display: flex;
}

.fn-section-2.overflow-none {
  background-color: #000;
  overflow: hidden;
}

.fh-features-image-wrapper {
  width: 100%;
  height: 500px;
  border-radius: 24px;
  overflow: hidden;
}

.fn-featured-tabs-content-wrapper {
  width: 100%;
}

.fn-featured-tabs-content {
  width: 60%;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 15px;
}

.fn-tabs-paragraph {
  flex: none;
  overflow: hidden;
}

.fn-tabs-link-title-icon {
  width: 19px;
  height: 19px;
  color: #ffd001;
  object-fit: contain;
}

.fn-tabs-link-title {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  color: #cdd3d2;
  align-items: center;
  display: flex;
}

.fn-tabs-link {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: #939b9b;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 12px;
  flex-direction: column;
  align-items: flex-start;
  padding: 15px;
  transition: opacity .25s;
  display: flex;
}

.fn-tabs-link:hover {
  opacity: .8;
  color: #939b9b;
}

.fn-tabs-link.w--current {
  background-color: #0f1213;
}

.fn-featured-tabs-menu {
  flex-direction: column;
  display: flex;
}

.fn-featured-tabs {
  width: 100%;
  margin-bottom: 32px;
  position: static;
}

.fn-heading-2 {
  margin-top: 0;
  margin-bottom: 24px;
  font-family: Open Sans, sans-serif;
  font-size: 52px;
  line-height: 1.2em;
}

.fn-footer-copyright {
  color: #687373;
  font-size: 16px;
}

.fn-footer-copyright.design:hover {
  color: #ffd001;
}

.fn-footer-legal-link {
  color: #939b9b;
  transition: color .25s;
}

.fn-footer-legal-link:hover {
  color: #ffd001;
}

.fn-legal-links-wrapper {
  grid-column-gap: 22px;
  grid-row-gap: 22px;
  flex-wrap: wrap;
  display: flex;
}

.fn-standard-white-link {
  color: #ecf0ef;
  font-size: 18px;
  line-height: 1.4em;
  transition: color .25s;
  display: block;
}

.fn-standard-white-link:hover, .fn-standard-white-link.w--current {
  color: #ffd001;
}

.fn-footer-line {
  width: 100%;
  height: 1px;
  background-color: #3e4545;
  margin-top: 36px;
  margin-bottom: 10px;
}

.fn-footer-second {
  width: 100%;
  color: #ecf0ef;
  background-color: #000;
  flex-direction: column;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
  font-family: Open Sans, sans-serif;
  display: flex;
}

.link-block {
  text-decoration: none;
}

.image {
  position: relative;
  top: -4px;
}

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

.team-section {
  padding: 100px 3%;
}

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

.team-line-bottom {
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  bottom: 32px;
}

.title-wrapper {
  margin-bottom: 72px;
}

.team-name {
  color: #ffd001;
  letter-spacing: -.04em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  line-height: 32px;
}

.h1-title {
  max-width: 480px;
  color: #ffd001;
  letter-spacing: -.04em;
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 42px;
  line-height: 51px;
}

.team-text {
  margin-top: 32px;
}

.container {
  width: 100%;
  max-width: 1200px;
  flex: 1;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: relative;
}

.team-line-side {
  width: 2px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 34px;
}

.team-block {
  z-index: 3;
  width: 70px;
  height: 70px;
  background-color: #186581;
  border-top-left-radius: 10px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  bottom: 0;
  right: 0;
}

.team-link {
  width: 100%;
  height: 460px;
  position: relative;
}

.title {
  color: #df0;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.team-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.brix---bg-overlay-team-v12 {
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6));
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.brix---text-200-medium {
  font-size: 18px;
  font-weight: 600;
  line-height: 20px;
}

.brix---color-neutral-100 {
  color: #fff;
}

.brix---heading-h3-size {
  margin-top: 0;
  margin-bottom: 12px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
}

.brix---team-v13-content {
  z-index: 1;
  text-decoration: none;
  position: absolute;
  top: auto;
  bottom: 40px;
  left: 32px;
  right: auto;
}

.brix---team-text-wrapper {
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.brix---avatar-image {
  max-width: 90%;
  filter: grayscale();
  object-fit: fill;
  border-radius: 20px;
}

.brix---team-v9-wrapper {
  border-radius: 15px;
  text-decoration: none;
  transition: transform .3s, color .3s;
  position: relative;
  overflow: hidden;
}

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

.brix---paragraph-default {
  color: #ffd001;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 18px;
  line-height: 30px;
}

.brix---color-neutral-600 {
  color: #6e7191;
}

.brix---heading-h2-size {
  color: #ffd001;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Ubuntu, Helvetica, sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 50px;
}

.brix---color-neutral-800 {
  color: #211f54;
}

.brix---mg-bottom-16px {
  margin-bottom: 16px;
}

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

.brix---inner-container-574px---center {
  max-width: 574px;
  margin-left: auto;
  margin-right: auto;
}

.brix---mg-bottom-48px {
  margin-bottom: 48px;
}

.brix---container-default {
  max-width: 1218px;
  padding-left: 24px;
  padding-right: 24px;
}

.brix---section {
  color: #fff;
  padding-top: 133px;
  padding-bottom: 176px;
}

.fn-cover-image-2 {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fh-section-image-wrapper-first {
  width: 100%;
  height: 490px;
  border-radius: 24px;
  overflow: hidden;
}

.fn-button-secondery-2 {
  min-width: 137px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #fff;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  font-size: 16px;
  line-height: 1.6em;
  transition: background-color .25s;
  display: flex;
}

.fn-button-secondery-2:hover {
  background-color: #3e4545;
}

.fn-button-2 {
  color: #0f1213;
  text-align: center;
  background-color: #df0;
  border: 1px solid #df0;
  border-radius: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px 24px;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  transition: opacity .25s, border-color .25s;
  display: flex;
}

.fn-button-2:hover {
  opacity: .9;
  border-color: #0f1213;
}

.fn-button-wrapper-2 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  display: grid;
}

.fn-list-checkmark-icon {
  width: 11px;
  height: 10px;
  color: #0f1213;
  object-fit: contain;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.fn-list-checkmark {
  width: 24px;
  height: 24px;
  background-color: #ffd001;
  border-radius: 50%;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  margin-right: 8px;
  display: flex;
  overflow: hidden;
}

.fn-list-item {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.fn-list {
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  color: #cdd3d2;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  margin-bottom: 45px;
  padding-left: 0;
  font-size: 16px;
  line-height: 1.6em;
  list-style-type: none;
  display: flex;
}

.fn-paragraph-2 {
  color: #cdd3d2;
  margin-bottom: 32px;
  font-size: 16px;
  line-height: 1.6em;
}

.fn-heading-3 {
  margin-top: 0;
  margin-bottom: 24px;
  font-family: Open Sans, sans-serif;
  font-size: 52px;
  line-height: 1.2em;
}

.fn-label-small {
  color: #df0;
  margin-bottom: 24px;
  line-height: 1em;
}

.fn-column-2 {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.fn-container-grid-2 {
  width: 100%;
  max-width: 1310px;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-left: 15px;
  padding-right: 15px;
  display: grid;
}

.fn-section-3 {
  width: 100%;
  color: #ecf0ef;
  background-color: #000;
  flex-direction: column;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 0;
  font-family: Open Sans, sans-serif;
  display: flex;
}

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

.brix---half-bg-bottom-70 {
  z-index: -1;
  width: 100%;
  height: 70%;
  background-color: #f7f7fc;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.brix---error-message {
  color: #ff5a65;
  text-align: center;
  background-color: #ffeff0;
  border-radius: 16px;
  margin-top: 20px;
  padding: 20px 24px;
  font-size: 18px;
  line-height: 30px;
}

.brix---color-neutral-801 {
  color: #fff;
}

.brix---icon-success-message-big {
  width: 60px;
  margin-bottom: 10px;
}

.brix---success-message {
  color: #fff;
  background-color: #4a3aff;
  border-radius: 24px;
  padding: 28px 28px 32px;
  font-size: 18px;
  line-height: 30px;
}

.brix---btn-primary {
  color: #fff;
  text-align: center;
  transform-style: preserve-3d;
  background-color: #4a3aff;
  border-radius: 48px;
  justify-content: center;
  padding: 26px 38px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition: background-color .3s, transform .3s, color .3s;
}

.brix---btn-primary:hover {
  color: #fff;
  background-color: #281ca5;
  transform: translate3d(0, -3px, .01px);
}

.brix---text-area {
  min-height: 144px;
  background-color: #fff;
  border: 1px solid #eff0f6;
  border-radius: 22px;
  padding: 16px 24px;
  font-size: 18px;
  line-height: 28px;
  transition: box-shadow .3s, color .3s, border-color .3s;
  box-shadow: 0 2px 7px rgba(20, 20, 43, .08);
}

.brix---text-area:hover {
  border-color: #4a3aff;
  box-shadow: 0 2px 12px rgba(20, 20, 43, .1);
}

.brix---text-area:focus {
  color: #211f54;
  border-color: #4a3aff;
}

.brix---text-area::-ms-input-placeholder {
  color: #6e7191;
  font-size: 18px;
}

.brix---text-area::placeholder {
  color: #6e7191;
  font-size: 18px;
}

.brix---input-label {
  color: #211f54;
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 20px;
}

.brix---input {
  min-height: 70px;
  background-color: #fff;
  border: 1px solid #eff0f6;
  border-radius: 100px;
  margin-bottom: 0;
  padding: 16px 24px;
  font-size: 18px;
  line-height: 20px;
  transition: box-shadow .3s, color .3s, border-color .3s;
  box-shadow: 0 2px 7px rgba(20, 20, 43, .08);
}

.brix---input:hover {
  border-color: #4a3aff;
  box-shadow: 0 2px 12px rgba(20, 20, 43, .1);
}

.brix---input:focus {
  color: #211f54;
  border-color: #4a3aff;
}

.brix---input::-ms-input-placeholder {
  color: #6e7191;
  font-size: 18px;
}

.brix---input::placeholder {
  color: #6e7191;
  font-size: 18px;
}

.brix---form-grid-2-columns {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.brix---card-form {
  min-height: 576px;
  background-color: #fff;
  border: 1px solid #eff0f6;
  border-radius: 24px;
  margin-bottom: 0;
  padding: 56px 40px;
  box-shadow: 0 2px 7px rgba(20, 20, 43, .06);
}

.brix---icon-square-acent-36px {
  width: 36px;
  height: 36px;
  min-height: 36px;
  min-width: 36px;
  background-color: #4a3aff;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: transform .3s, background-color .3s, color .3s;
  display: flex;
}

.brix---icon-square-acent-36px:hover {
  transform: scale(.92);
}

.brix---social-media-grid-left {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex: 1;
  grid-template-rows: auto;
  grid-template-columns: repeat(auto-fit, 36px);
  justify-content: start;
  align-self: center;
  justify-items: start;
}

.brix---color-neutral-802 {
  color: #211f54;
}

.brix---mg-bottom-40px {
  margin-bottom: 40px;
}

.brix---mg-top-56px {
  margin-top: 56px;
}

.brix---text-200-bold {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
}

.brix---color-accent-1 {
  color: #4a3aff;
}

.brix---text-200 {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 18px;
  line-height: 20px;
}

.brix---mg-bottom-8px {
  margin-bottom: 8px;
}

.brix---big-icon-left {
  border-radius: 16px;
  margin-right: 16px;
}

.brix---card-link-icon-wrapper {
  color: #6e7191;
  transform-style: preserve-3d;
  background-color: #fff;
  border: 1px solid #f7f7fc;
  border-radius: 14px;
  align-items: center;
  padding: 14px 18px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  text-decoration: none;
  transition: transform .3s, border-color .3s, color .3s;
  display: flex;
  box-shadow: 0 2px 6px rgba(20, 20, 43, .06);
}

.brix---card-link-icon-wrapper:hover {
  border-color: #4a3aff;
  transform: scale3d(.96, .96, 1.01);
}

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

.brix---inner-container-400px {
  max-width: 400px;
}

.brix---paragraph-default-2 {
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 18px;
  line-height: 30px;
}

.brix---color-neutral-803 {
  color: #6e7191;
}

.brix---mg-bottom-32px {
  margin-bottom: 32px;
}

.brix---heading-h2-size-2 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 50px;
}

.brix---grid-2-contact-v9 {
  grid-column-gap: 120px;
  grid-row-gap: 28px;
  grid-template-rows: auto;
  grid-template-columns: .7fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.brix---link-icon-right {
  margin-left: 6px;
}

.brix---link-wrapper-color-primary {
  color: #4a3aff;
  align-items: center;
  font-size: 18px;
  line-height: 20px;
  text-decoration: none;
  transition: color .3s;
  display: flex;
}

.brix---link-wrapper-color-primary:hover {
  color: #281ca5;
}

.brix---mg-bottom-24px {
  margin-bottom: 24px;
}

.brix---square-icon {
  border-radius: 16px;
}

.brix---card-link-center {
  color: #6e7191;
  text-align: center;
  transform-style: preserve-3d;
  background-color: #fff;
  border: 1px solid #eff0f6;
  border-radius: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 48px 24px;
  text-decoration: none;
  transition: transform .3s, color .3s;
  display: flex;
  box-shadow: 0 2px 7px rgba(20, 20, 43, .06);
}

.brix---card-link-center:hover {
  transform: scale3d(.94, .94, 1.01);
}

.brix---3-columns-1-col-tablet {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.brix---mg-bottom-160px {
  margin-bottom: 160px;
}

.brix---heading-h1-size {
  color: #ffd001;
  margin-top: 0;
  margin-bottom: 16px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 54px;
  font-weight: 700;
  line-height: 66px;
}

.brix---subtitle {
  color: #4a3aff;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
}

.brix---inner-container-700px-center {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.brix---section-position-relative {
  padding-top: 176px;
  padding-bottom: 176px;
  position: relative;
  overflow: hidden;
}

.brix---opacity-10 {
  opacity: .1;
}

.brix---floating-image-hero-v1---1 {
  z-index: -1;
  position: absolute;
  top: auto;
  bottom: -32%;
  left: -41%;
  right: auto;
}

.brix---opacity-20 {
  opacity: .2;
}

.brix---floating-image-hero-v1---2 {
  z-index: -1;
  max-width: 600px;
  position: absolute;
  top: auto;
  bottom: 8%;
  left: auto;
  right: 11%;
  transform: rotate(140deg);
}

.brix---btn-secondary {
  color: #211f54;
  text-align: center;
  transform-style: preserve-3d;
  background-color: #fff;
  border: 1px solid #eff0f6;
  border-radius: 48px;
  padding: 26px 38px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 18px;
  line-height: 20px;
  transition: border-color .3s, transform .3s, background-color .3s, color .3s;
  box-shadow: 0 4px 10px rgba(20, 20, 43, .04);
}

.brix---btn-secondary:hover {
  color: #fff;
  background-color: #4a3aff;
  border-color: #4a3aff;
  transform: translate3d(0, -3px, .01px);
}

.brix---button-row-left {
  margin-right: 24px;
}

.brix---buttons-row {
  align-items: center;
  display: flex;
}

.brix---paragraph-default-3 {
  color: #f7f7fc;
  margin-bottom: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 18px;
  line-height: 30px;
}

.brix---color-neutral-804 {
  color: #6e7191;
}

.brix---color-neutral-805 {
  color: #211f54;
}

.brix---grid-hero-v1 {
  grid-column-gap: 80px;
  grid-row-gap: 28px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.brix---section-hero-primary {
  padding-top: 140px;
  padding-bottom: 140px;
  position: relative;
  overflow: hidden;
}

.text-span {
  color: #ffd001;
}

.faqs-container {
  max-width: 75%;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.faq-question {
  z-index: 2;
  grid-column-gap: 16px;
  background-color: #3b3b3b;
  border-radius: 12px;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  padding: 16px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  position: relative;
}

.faq-answer {
  z-index: 1;
  opacity: 1;
  color: #fff;
  mix-blend-mode: normal;
  margin-bottom: 0;
  position: relative;
  overflow: hidden;
}

.faq-icon-wrap {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.faq-answer-wrap {
  z-index: -1;
  max-width: 95%;
  background-image: linear-gradient(135deg, rgba(18, 194, 233, .61), rgba(113, 144, 237, .6) 50%, #4a3aff);
  border-radius: 12px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 42px 20px 12px;
  display: flex;
  position: relative;
  transform: translate(0, -35px);
}

.minus-icon {
  width: 2px;
  height: 16px;
  background-color: #fff;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  transform: rotate(90deg);
}

.container-small {
  width: 100%;
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
}

.plus-icon {
  width: 2px;
  height: 16px;
  background-color: #fff;
}

.toggle-icon {
  width: 28px;
  filter: invert();
}

.faq {
  margin-top: 80px;
  padding-top: 0;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.faq-toggle {
  z-index: 2;
  grid-column-gap: 30px;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
  transform: translate(16px);
}

.faq-wrap {
  cursor: pointer;
}

.faqsubheading {
  color: #fff;
}

.faqheading {
  color: #fff;
  margin-bottom: 40px;
  font-family: Lato, sans-serif;
}

.faqquestion {
  color: #fff;
}

.m-h3-heading {
  color: #fff;
  letter-spacing: -.02em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  line-height: 1.2;
}

.m-margin-bottom-08 {
  margin-bottom: 8px;
}

.m-text-color-blue {
  color: #ffd001;
}

.m-section-large {
  color: #fff;
  background-color: #000;
  padding: 120px 5%;
}

.m-shape-wrapper {
  position: absolute;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.m-icon-regular {
  width: 24px;
  height: 24px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.m-container-large {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.m-feature-header-block {
  max-width: 620px;
}

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

.m-feature-shape {
  justify-content: center;
  display: flex;
}

.m-subheading-large {
  font-size: 18px;
  font-weight: 600;
  line-height: 24px;
}

.m-feature-icon-wrapper {
  width: 40px;
  height: 40px;
  background-color: #22242f;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
  display: flex;
}

.m-feature-card {
  color: #fff;
  background-color: #111218;
  border-radius: 24px;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.m-paragraph-small {
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
}

.m-paragraph-small.m-text-color-gray-400 {
  color: #f7f7fc;
}

.m-button-outline {
  min-height: 56px;
  color: #ffd001;
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  border: 2px solid #333647;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  padding: 8px 32px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  transition: all .3s;
  display: flex;
}

.m-button-outline:hover {
  color: #ffd001;
  border-color: #ffd001;
}

.m-feature-header {
  max-width: 1060px;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 120px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.apollologo {
  height: 100px;
  filter: invert();
}

.pocketsquarelogo {
  height: 100px;
  margin-top: -37px;
}

.mercurylogo {
  height: 100px;
  filter: invert();
  margin-top: -42px;
}

.teambio {
  color: #fff;
  padding-top: 20px;
  padding-right: 45px;
}

.image-2 {
  border-radius: 20px;
}

.highlight-word {
  color: #f7f7fc;
}

.icon {
  width: 24px;
  height: 24px;
  color: #160042;
  justify-content: center;
  align-items: center;
  display: flex;
}

@media screen and (min-width: 1440px) {
  .body {
    background-color: #000;
  }

  .fn-container-grid {
    justify-items: stretch;
  }

  .fn-section-off-black {
    background-color: #000;
  }

  .fn-logos-wrapper {
    grid-column-gap: 135px;
    grid-row-gap: 135px;
    justify-content: center;
  }

  .fn-section-2, .fn-section-2.overflow-none, .fn-footer-second {
    background-color: #000;
  }

  .brix---bg-overlay-team-v12 {
    margin-left: auto;
    margin-right: auto;
  }

  .brix---text-200-medium {
    font-family: Montserrat, sans-serif;
  }

  .brix---team-v13-content {
    color: #fff;
    padding-right: 30px;
    display: block;
  }

  .brix---form-grid-2-columns {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .brix---grid-hero-v1 {
    grid-column-gap: 90px;
  }

  .faq {
    display: block;
    position: relative;
  }

  .body-4 {
    color: #0f1213;
    background-color: #0f1213;
  }

  .m-text-color-blue {
    color: #ffd001;
  }

  .m-button-outline {
    color: #ffd001;
    border-color: rgba(255, 208, 1, .45);
  }

  .m-button-outline:hover {
    color: #ffd001;
    border-color: #ffd001;
  }

  .apollologo {
    height: 100px;
    max-width: none;
    filter: invert();
    margin-bottom: -23px;
  }

  .apollologo:hover {
    transform: scale(1.2);
  }

  .pocketsquarelogo {
    height: 100px;
    margin-bottom: 21px;
  }

  .pocketsquarelogo:hover {
    transform: scale(1.2);
  }

  .mercurylogo {
    height: 100px;
    max-width: none;
    filter: invert();
    margin-bottom: 20px;
  }

  .mercurylogo:hover {
    transform: scale(1.2);
  }

  .teambio {
    margin-top: 10px;
    font-family: Merriweather, serif;
  }
}

@media screen and (max-width: 991px) {
  .fn-nav-line-3, .fn-nav-line-2, .fn-nav-line-1 {
    width: 16px;
    height: 2px;
    background-color: #19224c;
    border-radius: 4px;
    margin-top: 2px;
    margin-bottom: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .nav-menu-button-wrap {
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .fn-menu-button {
    margin-right: -18px;
    padding-right: 18px;
  }

  .fn-menu-button.w--open {
    z-index: 2;
    background-color: rgba(0, 0, 0, 0);
  }

  .fn-button-dark:hover {
    color: #df0;
    background-color: #1d1f1e;
  }

  .fn-button-secondery-dark {
    transition: none;
  }

  .fn-button-secondery-dark:hover {
    color: #1d1f1e;
    background-color: rgba(0, 0, 0, 0);
  }

  .fn-navbar-link-box {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 12px 0;
    transition: none;
  }

  .fn-navbar-link-box:hover {
    opacity: 1;
  }

  .fn-navbar-link-box.navbar-link-box-last {
    margin-bottom: 12px;
  }

  .fn-navbar-links-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .fn-navbar-menu-wrapper {
    background-color: #df0;
    border-radius: 16px;
    flex-direction: column;
    justify-content: flex-start;
    padding: 12px 24px 24px;
    display: flex;
    position: relative;
  }

  .fn-navbar-menu-box {
    background-color: rgba(0, 0, 0, 0);
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
  }

  .fn-brand-box {
    z-index: 2;
    transition: none;
  }

  .fn-brand-box:hover {
    opacity: 1;
  }

  .fn-navbar-container-box {
    padding-left: 15px;
    padding-right: 15px;
  }

  .fn-navbar-box {
    width: 100vw;
    margin-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .fh-hero-image-wrapper-second {
    width: 100%;
    height: 460px;
  }

  .fn-button-secondery {
    transition: none;
  }

  .fn-button-secondery:hover {
    background-color: rgba(0, 0, 0, 0);
  }

  .fn-heading-1 {
    font-size: 48px;
  }

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

  .fn-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .fn-get-a-demo-shape-second {
    width: 184px;
    height: 184px;
    left: auto;
  }

  .fn-get-a-demo-shape {
    width: 218px;
    height: 218px;
    top: auto;
    bottom: auto;
    right: auto;
  }

  .fn-get-a-demo-link {
    width: 218px;
    height: 218px;
  }

  .fn-get-a-demo-link:hover {
    letter-spacing: .1em;
  }

  .fn-heading-jambo {
    font-size: 76px;
  }

  .fn-label-jambo {
    margin-bottom: 26px;
  }

  .fn-section-off-black {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .fn-logos-image {
    max-width: 100px;
  }

  .fn-logos-wrapper {
    grid-column-gap: 26px;
    grid-row-gap: 26px;
  }

  .fn-section-2 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .fh-features-image-wrapper {
    height: 450px;
  }

  .fn-featured-tabs-content {
    width: 58%;
  }

  .fn-tabs-link {
    transition: none;
  }

  .fn-tabs-link:hover {
    opacity: 1;
  }

  .fn-heading-2 {
    margin-bottom: 12px;
    font-size: 40px;
  }

  .fn-footer-legal-link {
    transition: none;
  }

  .fn-footer-legal-link:hover {
    color: #939b9b;
  }

  .fn-standard-white-link {
    transition: none;
  }

  .fn-standard-white-link:hover {
    color: #ecf0ef;
  }

  .fn-footer-second {
    padding-bottom: 60px;
  }

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

  .brix---heading-h3-size {
    font-size: 22px;
    line-height: 32px;
  }

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

  .brix---heading-h2-size {
    font-size: 30px;
    line-height: 46px;
  }

  .brix---mg-bottom-48px {
    margin-bottom: 40px;
  }

  .brix---section {
    padding-top: 118px;
    padding-bottom: 118px;
  }

  .fh-section-image-wrapper-first {
    height: 334px;
  }

  .fn-button-secondery-2 {
    transition: none;
  }

  .fn-button-secondery-2:hover {
    background-color: rgba(0, 0, 0, 0);
  }

  .fn-heading-3 {
    margin-bottom: 12px;
    font-size: 40px;
  }

  .fn-container-grid-2 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }

  .fn-section-3 {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .brix---btn-primary {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .brix---card-form {
    padding: 54px 32px;
  }

  .brix---social-media-grid-left {
    grid-column-gap: 10px;
  }

  .brix---mg-top-56px {
    margin-top: 40px;
  }

  .brix---mg-bottom-32px {
    margin-bottom: 24px;
  }

  .brix---heading-h2-size-2 {
    font-size: 30px;
    line-height: 46px;
  }

  .brix---grid-2-contact-v9 {
    grid-row-gap: 70px;
    grid-template-columns: 1fr;
  }

  .brix---3-columns-1-col-tablet {
    grid-template-columns: 1fr;
  }

  .brix---mg-bottom-160px {
    margin-bottom: 100px;
  }

  .brix---heading-h1-size {
    font-size: 48px;
    line-height: 60px;
  }

  .brix---section-position-relative {
    padding-top: 118px;
    padding-bottom: 118px;
  }

  .brix---floating-image-hero-v1---1 {
    bottom: -14%;
    left: -42%;
  }

  .brix---floating-image-hero-v1---2 {
    top: 24%;
    right: -30%;
  }

  .brix---grid-hero-v1 {
    grid-row-gap: 48px;
    grid-template-columns: 1fr;
  }

  .brix---section-hero-primary {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .minus-icon, .plus-icon {
    height: 16px;
  }

  .toggle-icon {
    max-width: 32px;
  }

  .faq {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

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

  .m-feature-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 767px) {
  .fn-button-dark {
    width: 100%;
  }

  .fn-navbar-link-box {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .fn-navbar-menu-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    padding: 18px;
  }

  .fn-brand-box {
    margin-right: 0;
    padding-left: 0;
  }

  .fh-hero-image-wrapper-second {
    display: none;
  }

  .fn-button {
    width: 100%;
  }

  .fn-paragraph {
    margin-bottom: 24px;
  }

  .fn-heading-1 {
    margin-bottom: 12px;
    font-size: 38px;
  }

  .fn-container-grid {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .fn-section {
    padding-top: 32px;
    padding-bottom: 32px;
    overflow: visible;
  }

  .fn-get-a-demo-shape-second, .fn-get-a-demo-shape {
    display: none;
  }

  .fn-get-a-demo-link {
    width: auto;
    height: auto;
  }

  .fn-heading-jambo {
    margin-bottom: 12px;
    font-size: 54px;
  }

  .fn-label-jambo {
    margin-bottom: 0;
  }

  .fn-section-off-black {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .fn-logos-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .fn-section-2 {
    padding-top: 32px;
    padding-bottom: 32px;
    overflow: visible;
  }

  .fh-features-image-wrapper {
    height: 350px;
  }

  .fn-featured-tabs-content {
    width: 100%;
    margin-top: 12px;
    position: static;
  }

  .fn-heading-2 {
    font-size: 34px;
  }

  .fn-footer-line {
    margin-top: 12px;
  }

  .fn-footer-second {
    text-align: center;
    padding-bottom: 40px;
  }

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

  .brix---text-200-medium {
    font-size: 16px;
    line-height: 18px;
  }

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

  .brix---heading-h2-size {
    font-size: 28px;
    line-height: 40px;
  }

  .brix---mg-bottom-16px {
    margin-bottom: 8px;
  }

  .brix---mg-bottom-48px {
    margin-bottom: 32px;
  }

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

  .fn-button-2 {
    width: 100%;
  }

  .fn-paragraph-2 {
    margin-bottom: 24px;
  }

  .fn-heading-3 {
    font-size: 34px;
  }

  .fn-label-small {
    margin-bottom: 12px;
  }

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

  .fn-section-3 {
    padding-top: 32px;
    padding-bottom: 32px;
    overflow: visible;
  }

  .brix---btn-primary {
    padding: 20px 32px;
  }

  .brix---text-area {
    border-radius: 18px;
  }

  .brix---input {
    min-height: 60px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

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

  .brix---card-form {
    min-height: 560px;
    padding: 36px 30px 48px;
  }

  .brix---social-media-grid-left {
    justify-content: start;
    justify-items: start;
  }

  .brix---mg-bottom-40px {
    margin-bottom: 24px;
  }

  .brix---text-200-bold, .brix---text-200 {
    font-size: 16px;
    line-height: 18px;
  }

  .brix---big-icon-left {
    max-width: 56px;
    border-radius: 12px;
  }

  .brix---inner-container-400px {
    max-width: 100%;
  }

  .brix---heading-h2-size-2 {
    font-size: 28px;
    line-height: 40px;
  }

  .brix---grid-2-contact-v9 {
    grid-template-columns: 1fr;
  }

  .brix---link-icon-right {
    width: 20px;
    margin-left: 8px;
  }

  .brix---square-icon {
    max-width: 56px;
    border-radius: 12px;
  }

  .brix---3-columns-1-col-tablet {
    grid-template-columns: 1fr;
  }

  .brix---mg-bottom-160px {
    margin-bottom: 80px;
  }

  .brix---heading-h1-size {
    margin-bottom: 12px;
    font-size: 38px;
    line-height: 46px;
  }

  .brix---subtitle {
    font-size: 17px;
    line-height: 19px;
  }

  .brix---section-position-relative {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .brix---floating-image-hero-v1---1 {
    max-width: 500px;
  }

  .brix---floating-image-hero-v1---2 {
    max-width: 480px;
  }

  .brix---btn-secondary {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .brix---button-row-left {
    margin-right: 16px;
  }

  .brix---grid-hero-v1 {
    grid-template-columns: 1fr;
  }

  .brix---section-hero-primary {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .faq-answer-wrap {
    max-width: 92%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .faq-toggle {
    transform: translate(12px);
  }

  .m-h3-heading {
    font-size: 40px;
  }

  .m-feature-header {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 479px) {
  .fn-button-wrapper, .fn-button-secondery, .fn-button {
    width: 100%;
  }

  .fh-features-image-wrapper {
    height: 220px;
  }

  .fn-legal-links-wrapper {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-direction: column;
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .brix---heading-h3-size {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 30px;
  }

  .brix---team-v13-content {
    bottom: 32px;
    left: 24px;
  }

  .brix---avatar-image {
    width: 100%;
  }

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

  .brix---paragraph-default {
    font-size: 17px;
    line-height: 28px;
  }

  .brix---heading-h2-size {
    font-size: 24px;
    line-height: 34px;
  }

  .brix---mg-bottom-16px {
    margin-bottom: 15px;
  }

  .brix---mg-bottom-48px {
    margin-bottom: 32px;
  }

  .brix---container-default {
    padding-left: 20px;
    padding-right: 20px;
  }

  .fh-section-image-wrapper-first {
    height: 220px;
  }

  .fn-button-secondery-2, .fn-button-2, .fn-button-wrapper-2 {
    width: 100%;
  }

  .brix---btn-primary {
    width: 100%;
    padding-top: 18px;
    padding-bottom: 18px;
    font-size: 17px;
    line-height: 19px;
  }

  .brix---text-area {
    padding-left: 18px;
    padding-right: 18px;
    font-size: 16px;
    line-height: 26px;
  }

  .brix---text-area::-ms-input-placeholder {
    font-size: 16px;
    line-height: 24px;
  }

  .brix---text-area::placeholder {
    font-size: 16px;
    line-height: 24px;
  }

  .brix---input {
    min-height: 54px;
    padding-left: 18px;
    padding-right: 18px;
    font-size: 16px;
    line-height: 18px;
  }

  .brix---input::-ms-input-placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .brix---input::placeholder {
    font-size: 16px;
    line-height: 16px;
  }

  .brix---card-form {
    padding-left: 23px;
    padding-right: 23px;
  }

  .brix---icon-square-acent-36px {
    width: 30px;
    height: 30px;
    min-height: 30px;
    min-width: 30px;
    border-radius: 6px;
    font-size: 14px;
  }

  .brix---social-media-grid-left {
    grid-template-columns: repeat(auto-fit, 30px);
  }

  .brix---text-200-bold, .brix---text-200 {
    font-size: 15px;
    line-height: 16px;
  }

  .brix---mg-bottom-8px {
    margin-bottom: 6px;
  }

  .brix---big-icon-left {
    max-width: 56px;
    border-radius: 14px;
    margin-bottom: 16px;
    margin-right: 0;
  }

  .brix---card-link-icon-wrapper {
    text-align: center;
    flex-direction: column;
    align-items: center;
    padding: 26px 24px;
  }

  .brix---inner-container-400px {
    max-width: 100%;
  }

  .brix---paragraph-default-2 {
    font-size: 17px;
    line-height: 28px;
  }

  .brix---heading-h2-size-2 {
    font-size: 24px;
    line-height: 34px;
  }

  .brix---link-icon-right {
    width: 18px;
  }

  .brix---mg-bottom-24px {
    margin-bottom: 16px;
  }

  .brix---square-icon {
    max-width: 56px;
    border-radius: 14px;
  }

  .brix---3-columns-1-col-tablet {
    grid-template-columns: 1fr;
  }

  .brix---mg-bottom-160px {
    margin-bottom: 60px;
  }

  .brix---heading-h1-size {
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 37px;
  }

  .brix---subtitle {
    font-size: 14px;
    line-height: 18px;
  }

  .brix---section-position-relative {
    padding-top: 96px;
    padding-bottom: 96px;
  }

  .brix---floating-image-hero-v1---1 {
    opacity: .2;
    bottom: -5%;
    left: -35%;
  }

  .brix---floating-image-hero-v1---2 {
    display: none;
  }

  .brix---btn-secondary {
    width: 100%;
    padding-top: 18px;
    padding-bottom: 18px;
    font-size: 17px;
    line-height: 19px;
  }

  .brix---button-row-left {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0;
  }

  .brix---buttons-row {
    flex-direction: column;
    align-items: stretch;
  }

  .brix---paragraph-default-3 {
    font-size: 17px;
    line-height: 28px;
  }

  .brix---section-hero-primary {
    padding-top: 48px;
    padding-bottom: 96px;
  }

  .faqs-container {
    max-width: 90%;
  }

  .faq-question {
    grid-column-gap: 12px;
    padding: 12px;
    font-size: 15px;
  }

  .faq-answer {
    font-size: 14px;
  }

  .faq-answer-wrap {
    max-width: 92%;
    padding-bottom: 12px;
  }

  .faq {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .faq-toggle {
    grid-column-gap: 20px;
  }

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

  .m-button-outline {
    width: 100%;
  }

  .m-feature-header {
    padding-left: 10px;
    padding-right: 10px;
  }
}

#w-node-c2cdaf0b-2497-b2fc-a844-6bf24007b25f-035ccbfc {
  grid-area: span 1 / span 7 / span 1 / span 7;
}

#w-node-c2cdaf0b-2497-b2fc-a844-6bf24007b261-035ccbfc {
  grid-area: span 1 / span 8 / span 1 / span 8;
}

#w-node-c2cdaf0b-2497-b2fc-a844-6bf24007b266-035ccbfc {
  grid-area: 1 / 9 / 3 / 13;
  align-self: center;
  justify-self: center;
}

#w-node-dfe6babe-c3ff-ea82-326a-dc01dec23e96-035ccbfc {
  grid-area: span 1 / span 12 / span 1 / span 12;
  justify-self: center;
}

#w-node-dfe6babe-c3ff-ea82-326a-dc01dec23e98-035ccbfc {
  grid-area: span 1 / span 12 / span 1 / span 12;
}

#w-node-_834c34ec-29b7-258c-3954-33a8a287bcdf-035ccbfc {
  grid-area: span 1 / span 4 / span 1 / span 4;
  align-self: center;
}

#w-node-_834c34ec-29b7-258c-3954-33a8a287bd08-035ccbfc {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_6bfe4563-9df8-0325-9c47-72474c91481a-4c914818 {
  grid-area: span 1 / span 12 / span 1 / span 12;
}

#w-node-_6bfe4563-9df8-0325-9c47-72474c91481b-4c914818 {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-_6bfe4563-9df8-0325-9c47-72474c914824-4c914818 {
  grid-area: span 1 / span 6 / span 1 / span 6;
  justify-self: end;
}

#w-node-_9d45d932-878d-28f0-789d-d99a2b2956ab-4c914818 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_3bc5df17-f667-fdd8-75f9-a04cdcaf3278-dcaf326a {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: start;
}

#w-node-_3bc5df17-f667-fdd8-75f9-a04cdcaf327a-dcaf326a {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
}

#w-node-b1a446d8-db18-638e-78c0-092eec5a607b-0f4426f3 {
  grid-area: span 1 / span 5 / span 1 / span 5;
  align-self: center;
}

#w-node-b1a446d8-db18-638e-78c0-092eec5a6095-0f4426f3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-b1a446d8-db18-638e-78c0-092eec5a6097-0f4426f3 {
  grid-area: 1 / 7 / 2 / 13;
  align-self: center;
  justify-self: end;
}

@media screen and (min-width: 1440px) {
  #w-node-c2cdaf0b-2497-b2fc-a844-6bf24007b261-035ccbfc {
    grid-area: span 1 / span 8 / span 1 / span 8;
  }

  #w-node-_834c34ec-29b7-258c-3954-33a8a287bd08-035ccbfc {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
  }
}

@media screen and (max-width: 991px) {
  #w-node-c2cdaf0b-2497-b2fc-a844-6bf24007b25f-035ccbfc, #w-node-c2cdaf0b-2497-b2fc-a844-6bf24007b261-035ccbfc {
    grid-column: span 7 / span 7;
  }

  #w-node-c2cdaf0b-2497-b2fc-a844-6bf24007b266-035ccbfc {
    order: 9999;
    grid-area: span 2 / span 8 / span 2 / span 8;
    justify-self: start;
  }

  #w-node-dfe6babe-c3ff-ea82-326a-dc01dec23e96-035ccbfc, #w-node-dfe6babe-c3ff-ea82-326a-dc01dec23e98-035ccbfc {
    grid-column: span 8 / span 8;
  }

  #w-node-_834c34ec-29b7-258c-3954-33a8a287bcdf-035ccbfc {
    grid-column: span 3 / span 3;
  }

  #w-node-_6bfe4563-9df8-0325-9c47-72474c91481a-4c914818 {
    grid-column: span 8 / span 8;
  }

  #w-node-_6bfe4563-9df8-0325-9c47-72474c91481b-4c914818, #w-node-_6bfe4563-9df8-0325-9c47-72474c914824-4c914818 {
    grid-column: span 8 / span 8;
    justify-self: center;
  }

  #w-node-_3bc5df17-f667-fdd8-75f9-a04cdcaf3278-dcaf326a {
    grid-column: span 2 / span 2;
    justify-self: stretch;
  }

  #w-node-_3bc5df17-f667-fdd8-75f9-a04cdcaf327a-dcaf326a {
    grid-column: span 2 / span 2;
  }

  #w-node-b1a446d8-db18-638e-78c0-092eec5a607b-0f4426f3 {
    grid-column: span 4 / span 4;
  }

  #w-node-b1a446d8-db18-638e-78c0-092eec5a6097-0f4426f3 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }
}

@media screen and (max-width: 767px) {
  #w-node-c2cdaf0b-2497-b2fc-a844-6bf24007b25f-035ccbfc, #w-node-c2cdaf0b-2497-b2fc-a844-6bf24007b261-035ccbfc {
    grid-column: span 4 / span 4;
  }

  #w-node-c2cdaf0b-2497-b2fc-a844-6bf24007b266-035ccbfc {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_834c34ec-29b7-258c-3954-33a8a287bcdf-035ccbfc {
    grid-column: span 4 / span 4;
  }

  #w-node-_3bc5df17-f667-fdd8-75f9-a04cdcaf3278-dcaf326a {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: center;
    justify-self: stretch;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_834c34ec-29b7-258c-3954-33a8a287bd08-035ccbfc {
    grid-column: span 2 / span 2;
  }

  #w-node-b1a446d8-db18-638e-78c0-092eec5a6095-0f4426f3 {
    grid-column: span 2 / span 2;
    justify-self: stretch;
  }
}


