:root {
  --bg-primary: #fdfdfd;
  --text-secondary: #494949;
  --text-primary: #1b1b1b;
  --bg-brand: #363636;
  --text-color-brand: white;
  --bg-secondary: #f3f3f3;
}

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

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

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

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

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

.w-form-formradioinput--inputType-custom {
  width: 12px;
  height: 12px;
  border: 1px solid #ccc;
  border-radius: 50%;
}

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

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

.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 {
  width: 12px;
  height: 12px;
  border: 1px solid #ccc;
  border-radius: 2px;
}

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

@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 {
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  margin-bottom: 16px;
  font-family: Lato, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

h1 {
  color: var(--text-primary);
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 86px;
  font-weight: 700;
  line-height: 1;
}

h2 {
  color: var(--text-primary);
  letter-spacing: -.03em;
  margin-top: 0;
  margin-bottom: 24px;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
}

h3 {
  color: var(--text-primary);
  letter-spacing: -.02px;
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
}

h4 {
  color: var(--text-primary);
  margin-top: 0;
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

h5 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

h6 {
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5;
}

p {
  margin-bottom: 16px;
}

a {
  color: var(--text-secondary);
  text-decoration: underline;
  transition: transform .3s cubic-bezier(.165, .84, .44, 1), color .3s cubic-bezier(.165, .84, .44, 1);
}

a:hover {
  color: var(--text-primary);
  text-decoration: none;
}

.section {
  aspect-ratio: auto;
  border: 1px #000;
  border-radius: 0;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.section.small {
  padding-top: 80px;
  padding-bottom: 80px;
}

.container {
  width: 90%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.container.navigation {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.hero-header-component {
  grid-column-gap: 32px;
  grid-row-gap: 48px;
  padding: 0;
}

.paragraph-container {
  max-width: 75ch;
}

.style-group {
  margin-top: 48px;
  padding-top: 40px;
  display: flex;
}

.caption {
  text-transform: uppercase;
  margin-bottom: 16px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
}

.styles-callout {
  color: #eceeff;
  text-transform: none;
  background-color: #4353ff;
  border: 1px solid #4353ff;
  border-radius: 4px;
  margin-bottom: 12px;
  padding: 1px 8px;
  line-height: 1.7;
  display: inline-block;
  position: relative;
  top: -1px;
}

.styles-callout.html-tag {
  color: #fff;
  background-color: #d13591;
  border-color: rgba(0, 0, 0, 0);
}

.paragraph-large {
  margin-bottom: 16px;
  font-size: 18px;
  line-height: 1.5;
}

.paragraph-small {
  font-size: 14px;
  line-height: 1.6;
}

.hero-content-cell {
  justify-content: center;
}

.button-primary {
  grid-column-gap: 16px;
  border: 1px solid var(--bg-brand);
  background-color: var(--bg-brand);
  color: var(--text-color-brand);
  border-radius: 4px;
  padding: 12px 18px;
  font-size: 18px;
  line-height: 1.5;
  text-decoration: none;
  transition: all .3s cubic-bezier(.165, .84, .44, 1);
  display: flex;
  box-shadow: 0 4px 2px rgba(16, 24, 40, .04);
}

.button-primary:hover {
  filter: brightness(75%);
  color: var(--text-color-brand);
  text-decoration: none;
}

.button-primary.full-width {
  width: 100%;
  text-align: center;
  display: inline-block;
}

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

.navigation {
  background-color: #fff;
}

.hero-paragraph-container {
  max-width: 350px;
  margin-bottom: 24px;
}

.hero-header-floating-image-wrapper {
  width: 368px;
  position: absolute;
  bottom: -32px;
  left: -32px;
}

.hero-header-image-wrapper {
  position: relative;
}

.hero-header-image {
  width: 100%;
  height: 100%;
  aspect-ratio: 2.39 / 1;
  object-fit: contain;
  border: 1px solid #000;
  border-radius: 20px;
  overflow: visible;
}

.hero-header-floating-image {
  border-radius: 4px;
}

.features-item-list {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  margin-bottom: 40px;
  padding: 0;
}

.features-item-icon-wrapper {
  width: 56px;
  height: 56px;
  background-color: var(--bg-brand);
  border: 5px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  margin-right: 16px;
  display: flex;
  box-shadow: 0 6px 4px rgba(0, 0, 0, .06);
}

.features-item-icon {
  width: 24px;
  height: 24px;
}

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

.pricing-components {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  padding: 0;
}

.pricing-plan {
  width: 100%;
  border: 1px solid var(--bg-secondary);
  background-color: var(--bg-secondary);
  border-radius: 4px;
  margin-top: 40px;
  padding: 32px 32px 48px;
  box-shadow: 0 4px 6px -2px rgba(16, 24, 40, .03), 0 12px 16px -4px rgba(0, 0, 0, .08);
}

.pricing-plan.popular {
  position: relative;
  overflow: hidden;
  transform: translate(0, -48px);
  box-shadow: 0 8px 36px -2px rgba(16, 24, 40, .1), 0 24px 48px -4px rgba(0, 0, 0, .06);
}

.pricing-plan-heading {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.3;
}

.pricing-content-align-center {
  text-align: center;
  flex-direction: column;
  align-items: center;
  margin-bottom: 16px;
  display: flex;
}

.pricing-price {
  color: #363636;
  margin-bottom: 10px;
  font-size: 72px;
  font-weight: 900;
  line-height: 1.4;
}

.pricing-text {
  padding-left: 4px;
  font-size: 16px;
  font-weight: 400;
}

.pricing-feature {
  grid-column-gap: 8px;
  align-items: center;
  padding-bottom: 16px;
}

.divider {
  height: 1px;
  background-color: #f0f0f0;
  margin-top: 24px;
  margin-bottom: 24px;
}

.button-secondary {
  border: 1px solid var(--bg-brand);
  color: var(--text-primary);
  background-color: rgba(0, 0, 0, 0);
  border-radius: 4px;
  padding: 12px 18px;
  font-size: 18px;
  line-height: 1.5;
  transition: all .3s cubic-bezier(.165, .84, .44, 1);
  box-shadow: 0 1px 2px rgba(16, 24, 40, .05);
}

.button-secondary:hover {
  background-color: var(--bg-secondary);
  text-decoration: none;
}

.button-secondary.full-width {
  width: 100%;
  text-align: center;
}

.pricing-feature-list {
  margin-bottom: 24px;
}

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

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

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

.inner-container {
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.inner-container.features {
  max-width: 600px;
  text-align: center;
  margin-bottom: 64px;
}

.eyebrow {
  height: auto;
  min-height: 30px;
  letter-spacing: .04em;
  text-transform: uppercase;
  object-fit: fill;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.5;
}

.features-stack {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  padding: 0;
}

.featured-image {
  height: 100%;
  mix-blend-mode: luminosity;
  object-fit: cover;
  border-radius: 15px;
}

.logos-row {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
  display: flex;
}

.logos-wrapper {
  min-width: 150px;
  flex: 1;
  justify-content: center;
  padding: 12px 24px;
  display: flex;
}

.logos-logo-image {
  width: 100%;
  max-height: 24px;
  min-width: 150px;
}

.logo-component {
  background-color: var(--bg-secondary);
  border-radius: 4px;
  padding: 64px;
}

.cta-component {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  background-color: var(--bg-brand);
  color: #fff;
  border-radius: 4px;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px;
  display: flex;
}

.logo-link {
  margin-bottom: 32px;
  text-decoration: none;
}

.footer-social-list {
  grid-column-gap: 24px;
  margin-top: 32px;
  display: flex;
}

.footer-top-wrapper {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  justify-content: space-between;
  display: flex;
}

.footer-menu-wrapper {
  grid-column-gap: 32px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  display: flex;
}

.footer-link-list {
  min-width: 140px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  align-items: flex-start;
  justify-items: start;
  display: flex;
}

.footer-link-list-heading {
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-link {
  grid-column-gap: 8px;
  color: var(--text-secondary);
  flex-wrap: nowrap;
  align-items: center;
  padding-top: 8px;
  padding-bottom: 8px;
  text-decoration: none;
  display: flex;
}

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

.social-link {
  color: #757575;
  text-decoration: none;
}

.social-link:hover {
  color: #222;
}

.features-content-cell {
  justify-content: center;
  padding-bottom: 32px;
}

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

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

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

.margin-top-16px {
  margin-top: 16px;
}

.typography-style-group-stack {
  width: 100%;
  padding: 0;
}

.h1 {
  color: var(--text-primary);
  letter-spacing: -.03em;
  margin-bottom: 24px;
  font-size: 86px;
  font-weight: 700;
  line-height: 1;
}

.h2 {
  color: var(--text-primary);
  letter-spacing: -.03em;
  margin-bottom: 16px;
  font-size: 60px;
  font-weight: 700;
  line-height: 1.1;
}

.styles-section-label {
  border-bottom: 1px solid var(--text-secondary);
  margin-top: 96px;
  margin-bottom: 32px;
  padding-bottom: 8px;
}

.h3 {
  color: var(--text-primary);
  letter-spacing: -.03em;
  margin-bottom: 16px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
}

.h4 {
  color: var(--text-primary);
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.component-card {
  border: 1px solid var(--bg-secondary);
  background-color: var(--bg-primary);
  border-radius: 4px;
  justify-content: center;
  padding: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px -2px rgba(16, 24, 40, .03), 0 12px 16px -4px rgba(0, 0, 0, .08);
}

.card-body {
  width: 100%;
  background-color: var(--bg-secondary);
  padding: 32px;
}

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

.styles-card-preview {
  min-height: 120px;
  color: var(--bg-primary);
  border-bottom: 1px solid #d8d8d8;
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer-section {
  background-color: var(--bg-secondary);
  margin-top: 20px;
  padding-top: 120px;
  padding-bottom: 80px;
  position: relative;
}

.text-white {
  color: #fff;
}

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

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

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

.text-color-primary {
  color: var(--text-primary);
}

.text-color-secondary {
  color: var(--text-secondary);
}

.text-color-brand {
  color: var(--text-color-brand);
}

.nav-link {
  border-bottom: 4px solid rgba(0, 0, 0, 0);
  padding-bottom: 16px;
}

.nav-link:hover {
  border-bottom: 4px solid var(--text-secondary);
  color: var(--text-primary);
}

.nav-link.last {
  margin-right: 10px;
}

.card {
  height: 100%;
  border: 1px solid var(--bg-secondary);
  background-color: var(--bg-secondary);
  box-shadow: none;
  border-radius: 4px;
  padding: 32px;
}

.form {
  width: 100%;
  height: 72px;
  position: relative;
}

.submit-button {
  background-color: var(--bg-brand);
  color: var(--text-color-brand);
  border-radius: 4px;
  padding: 12px 18px;
  display: inline-block;
}

.text-field {
  height: 100%;
  border-radius: 4px;
  padding-left: 32px;
}

.submit-button-wrapper {
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 12px;
}

.form-wrapper {
  max-width: 500px;
  min-width: 300px;
  flex-direction: column;
  flex: 1;
  align-items: stretch;
  margin-bottom: 0;
  display: flex;
}

.form-wrapper.full-width {
  width: 100%;
  max-width: none;
}

.success-message {
  color: #000;
}

.select-field {
  background-color: var(--bg-primary);
  color: var(--text-secondary);
  border-radius: 4px;
}

.radio-button, .checkbox {
  width: 16px;
  height: 16px;
  margin-top: 5px;
}

.pricing-title-wrapper {
  text-align: center;
  margin-bottom: 96px;
}

.utility-styles-column {
  width: 100%;
}

.utlity-styles-wrapper {
  border: 1px solid #f5f5f5;
  border-radius: 4px;
  margin-bottom: 20px;
  padding: 1px;
}

.utlity-styles-wrapper.margin {
  width: 100%;
  background-color: #f3f3f3;
  background-image: url('../images/bg-lines-lightblue3.svg');
  background-position: 0 0;
  background-size: 4px;
}

.utlity-styles-wrapper.padding {
  background-color: #f3f3f3;
  background-image: url('../images/bg-lines-green.svg');
  background-position: 0 0;
  background-size: 4px;
}

.margin-top-0px {
  margin-top: 0;
}

.utility-styles-card {
  color: #363636;
  background-color: #f3f3f3;
  border-radius: 4px;
  padding: 16px;
}

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

.margin-top-48px {
  margin-top: 48px;
}

.margin-bottom-0px {
  margin-bottom: 0;
}

.margin-bottom-32px {
  margin-bottom: 2em;
}

.margin-left-0px {
  margin-left: 0;
}

.margin-left-16px {
  margin-left: 1em;
}

.margin-left-32px {
  margin-left: 2em;
}

.margin-left-48px {
  margin-left: 3em;
}

.margin-right-0px {
  margin-right: 0;
}

.margin-right-16px {
  margin-right: 1em;
}

.margin-right-32px {
  margin-right: 2em;
}

.margin-right-48px {
  margin-right: 3em;
}

.padding-top-0px {
  padding-top: 0;
}

.padding-top-16px {
  padding-top: 1em;
}

.padding-top-32px {
  padding-top: 2em;
}

.padding-top-48px {
  padding-top: 3em;
}

.padding-bottom-16px {
  padding-bottom: 1em;
}

.padding-bottom-32px {
  padding-bottom: 2em;
}

.padding-bottom-48px {
  padding-bottom: 3em;
}

.padding-0px {
  padding: 0;
}

.padding-16px {
  padding: 1em;
}

.padding-32px {
  padding: 2em;
}

.icons-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-wrap: wrap;
  display: flex;
}

.social-icons-font {
  font-family: Social Icons Font, sans-serif;
  font-size: 20px;
  line-height: 1;
}

.icons-font {
  align-self: flex-start;
  font-family: Icons Font, sans-serif;
  font-size: 20px;
}

.social-icon-font {
  font-family: Social Icons Font, sans-serif;
  font-size: 20px;
  line-height: 1;
}

.color-overlay {
  z-index: 0;
  background-color: var(--bg-brand);
  opacity: .2;
  mix-blend-mode: color;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.featured-image-wrapper {
  height: 100%;
  position: relative;
}

.heading {
  color: #1b1b1b;
}

.image {
  mix-blend-mode: darken;
  border-radius: 14px;
}

.column, .column-2, .column-3, .column-4, .column-5, .column-6 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

  h2 {
    font-size: 52px;
  }

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

  .button-primary {
    justify-content: center;
  }

  .nav-menu {
    background-color: var(--bg-secondary);
    padding: 40px;
  }

  .hero-header-floating-image-wrapper {
    bottom: -12%;
    left: -2%;
  }

  .features-item-list, .pricing-components {
    grid-row-gap: 24px;
  }

  .pricing-plan {
    width: 100%;
    margin-top: 16px;
  }

  .pricing-plan.popular {
    transform: none;
  }

  .features-stack {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .footer-menu-wrapper {
    grid-column-gap: 64px;
  }

  .footer-link-list {
    min-width: 100px;
  }

  .h1 {
    font-size: 76px;
  }

  .h2 {
    font-size: 52px;
  }

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

  .nav-link {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-link.last {
    margin-bottom: 16px;
  }

  .form {
    min-width: 300px;
  }

  .menu-button {
    color: var(--text-primary);
  }

  .menu-button.w--open {
    background-color: var(--bg-primary);
    color: var(--text-secondary);
  }

  .pricing-title-wrapper {
    margin-bottom: 32px;
  }

  .margin-top-0px {
    margin-top: 0;
  }
}

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

  h2 {
    font-size: 40px;
  }

  h3 {
    font-size: 22px;
  }

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

  .features-item-list {
    grid-row-gap: 16px;
  }

  .button-group {
    width: 100%;
    flex-direction: column-reverse;
  }

  .pricing-components {
    grid-row-gap: 16px;
  }

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

  .features-stack {
    grid-row-gap: 16px;
  }

  .footer-top-wrapper {
    flex-wrap: wrap;
  }

  .footer-right-wrapper {
    width: 100%;
  }

  .footer-menu-wrapper {
    grid-column-gap: 64px;
  }

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

  .h1 {
    font-size: 58px;
  }

  .h2 {
    font-size: 40px;
  }

  .h3 {
    font-size: 22px;
  }

  .card {
    width: 100%;
  }
}

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

  h2 {
    font-size: 32px;
  }

  .button-primary {
    width: 100%;
  }

  .nav-menu {
    background-color: #fff;
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero-header-floating-image-wrapper {
    width: 60%;
  }

  .pricing-plan {
    margin-top: 0;
  }

  .cta-component {
    padding: 16px;
  }

  .footer-menu-wrapper {
    grid-template-columns: 1fr;
  }

  .h1 {
    font-size: 54px;
  }

  .h2 {
    font-size: 32px;
  }

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

  .features-item-wrapper {
    flex-direction: column;
  }

  .nav-link {
    padding-left: 0;
    padding-right: 0;
  }

  .card {
    padding: 16px;
  }

  .form {
    min-width: auto;
  }

  .text-field {
    padding-left: 16px;
  }

  .form-wrapper {
    min-width: auto;
  }

  .menu-button {
    background-color: var(--bg-primary);
  }

  .menu-button.w--open {
    background-color: var(--text-color-brand);
    color: var(--text-primary);
  }

  .margin-top-0px {
    margin-top: 0;
  }
}

#w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc1f-cfaff66d {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc20-cfaff66d, #w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc21-cfaff66d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_63b8e8f4-2c49-117b-8903-bd1ecbaf3679-cfaff66d {
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_63b8e8f4-2c49-117b-8903-bd1ecbaf367a-cfaff66d, #w-node-_63b8e8f4-2c49-117b-8903-bd1ecbaf367b-cfaff66d, #w-node-_2b2dbf00-28df-7942-1b00-15dd5c237d6c-cfaff66d, #w-node-_5f5de737-a337-7138-ba26-678732a06f96-cfaff66d, #w-node-a99e206d-fa6d-5fd5-fe0b-d2276b757ea7-cfaff66d, #w-node-_4c198263-8dd5-77b7-7a32-a66553c73d90-cfaff66d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6bc30bed-6c00-9127-1f32-58c9e1afde5a-cfaff66d {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_6bc30bed-6c00-9127-1f32-58c9e1afde5b-cfaff66d, #w-node-_6bc30bed-6c00-9127-1f32-58c9e1afde5f-cfaff66d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6bc30bed-6c00-9127-1f32-58c9e1afde60-cfaff66d {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
}

#w-node-_6bc30bed-6c00-9127-1f32-58c9e1afde61-cfaff66d, #w-node-_6bc30bed-6c00-9127-1f32-58c9e1afde6a-cfaff66d, #w-node-_6bc30bed-6c00-9127-1f32-58c9e1afde73-cfaff66d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_75801f72-b769-ebaf-af77-bae4d428855c-cfaff66d {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_75801f72-b769-ebaf-af77-bae4d428855d-cfaff66d, #w-node-_75801f72-b769-ebaf-af77-bae4d428855e-cfaff66d, #w-node-_42d6a974-0c8b-3856-04c5-660abcaf7f60-cfaff66d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_133d8b77-82b9-b448-1907-d5d3a129d50b-cfaff672 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_133d8b77-82b9-b448-1907-d5d3a129d50c-cfaff672, #w-node-_133d8b77-82b9-b448-1907-d5d3a129d513-cfaff672 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-b0b0d832-0cdd-2b24-5035-ca1582a51733-cfaff672 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-b0b0d832-0cdd-2b24-5035-ca1582a51734-cfaff672, #w-node-b0b0d832-0cdd-2b24-5035-ca1582a5173b-cfaff672 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_59405a65-65b7-2da2-932d-a80f6462e0de-cfaff672 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_59405a65-65b7-2da2-932d-a80f6462e0df-cfaff672, #w-node-_59405a65-65b7-2da2-932d-a80f6462e0e6-cfaff672 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9b9a0b7c-ef79-ea4b-2c80-7111949ec8ed-cfaff672 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_9b9a0b7c-ef79-ea4b-2c80-7111949ec8ee-cfaff672, #w-node-_9b9a0b7c-ef79-ea4b-2c80-7111949ec8f5-cfaff672 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c4f1609b-23fc-d632-08dc-5343e1911b52-cfaff672 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-c4f1609b-23fc-d632-08dc-5343e1911b53-cfaff672, #w-node-c4f1609b-23fc-d632-08dc-5343e1911b5a-cfaff672, #w-node-_73c3d91b-be58-018d-09a8-54e9c3a754fe-cfaff672 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8bd22a96-cd8e-645b-c62f-f614f0996058-cfaff672 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_8bd22a96-cd8e-645b-c62f-f614f0996059-cfaff672, #w-node-_8bd22a96-cd8e-645b-c62f-f614f0996064-cfaff672, #w-node-_8bd22a96-cd8e-645b-c62f-f614f099606f-cfaff672 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5dd3e340-98ea-c577-cd3f-1d057f3deeee-cfaff672 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_5dd3e340-98ea-c577-cd3f-1d057f3deeef-cfaff672, #w-node-_5dd3e340-98ea-c577-cd3f-1d057f3deefa-cfaff672, #w-node-_5dd3e340-98ea-c577-cd3f-1d057f3def05-cfaff672 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_5dd3e340-98ea-c577-cd3f-1d057f3def14-cfaff672 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_5dd3e340-98ea-c577-cd3f-1d057f3def15-cfaff672, #w-node-_5dd3e340-98ea-c577-cd3f-1d057f3def16-cfaff672 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_54cbb45e-3bba-83f8-5283-cec627f7ea6b-cfaff672 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

#w-node-_54cbb45e-3bba-83f8-5283-cec627f7ea6c-cfaff672, #w-node-_54cbb45e-3bba-83f8-5283-cec627f7ea90-cfaff672, #w-node-_54cbb45e-3bba-83f8-5283-cec627f7eab4-cfaff672, #w-node-_54cbb45e-3bba-83f8-5283-cec627f7ead8-cfaff672 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_54cbb45e-3bba-83f8-5283-cec627f7eb00-cfaff672 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

#w-node-_54cbb45e-3bba-83f8-5283-cec627f7eb01-cfaff672, #w-node-_54cbb45e-3bba-83f8-5283-cec627f7eb25-cfaff672, #w-node-_54cbb45e-3bba-83f8-5283-cec627f7eb49-cfaff672 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc1f-cfaff66d {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc20-cfaff66d, #w-node-_0ef35761-5cc9-e93e-2df1-5f090f64cc21-cfaff66d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_63b8e8f4-2c49-117b-8903-bd1ecbaf3679-cfaff66d {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_63b8e8f4-2c49-117b-8903-bd1ecbaf367a-cfaff66d, #w-node-_63b8e8f4-2c49-117b-8903-bd1ecbaf367b-cfaff66d, #w-node-_2b2dbf00-28df-7942-1b00-15dd5c237d6c-cfaff66d, #w-node-_5f5de737-a337-7138-ba26-678732a06f96-cfaff66d, #w-node-a99e206d-fa6d-5fd5-fe0b-d2276b757ea7-cfaff66d, #w-node-_4c198263-8dd5-77b7-7a32-a66553c73d90-cfaff66d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_6bc30bed-6c00-9127-1f32-58c9e1afde5a-cfaff66d {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_6bc30bed-6c00-9127-1f32-58c9e1afde5b-cfaff66d, #w-node-_6bc30bed-6c00-9127-1f32-58c9e1afde5f-cfaff66d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_75801f72-b769-ebaf-af77-bae4d428855c-cfaff66d {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_75801f72-b769-ebaf-af77-bae4d428855d-cfaff66d, #w-node-_75801f72-b769-ebaf-af77-bae4d428855e-cfaff66d, #w-node-_42d6a974-0c8b-3856-04c5-660abcaf7f60-cfaff66d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c4f1609b-23fc-d632-08dc-5343e1911b52-cfaff672 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-c4f1609b-23fc-d632-08dc-5343e1911b53-cfaff672, #w-node-c4f1609b-23fc-d632-08dc-5343e1911b5a-cfaff672, #w-node-_73c3d91b-be58-018d-09a8-54e9c3a754fe-cfaff672 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_8bd22a96-cd8e-645b-c62f-f614f0996058-cfaff672 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_8bd22a96-cd8e-645b-c62f-f614f0996059-cfaff672, #w-node-_8bd22a96-cd8e-645b-c62f-f614f0996064-cfaff672, #w-node-_8bd22a96-cd8e-645b-c62f-f614f099606f-cfaff672 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_5dd3e340-98ea-c577-cd3f-1d057f3deeee-cfaff672 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_5dd3e340-98ea-c577-cd3f-1d057f3deeef-cfaff672, #w-node-_5dd3e340-98ea-c577-cd3f-1d057f3deefa-cfaff672, #w-node-_5dd3e340-98ea-c577-cd3f-1d057f3def05-cfaff672 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_5dd3e340-98ea-c577-cd3f-1d057f3def14-cfaff672 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_5dd3e340-98ea-c577-cd3f-1d057f3def15-cfaff672, #w-node-_5dd3e340-98ea-c577-cd3f-1d057f3def16-cfaff672 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_54cbb45e-3bba-83f8-5283-cec627f7ea6b-cfaff672 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_54cbb45e-3bba-83f8-5283-cec627f7ea6c-cfaff672, #w-node-_54cbb45e-3bba-83f8-5283-cec627f7ea90-cfaff672, #w-node-_54cbb45e-3bba-83f8-5283-cec627f7eab4-cfaff672 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_54cbb45e-3bba-83f8-5283-cec627f7eb00-cfaff672 {
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
  }

  #w-node-_54cbb45e-3bba-83f8-5283-cec627f7eb01-cfaff672, #w-node-_54cbb45e-3bba-83f8-5283-cec627f7eb25-cfaff672 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_63b8e8f4-2c49-117b-8903-bd1ecbaf3679-cfaff66d {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_63b8e8f4-2c49-117b-8903-bd1ecbaf367a-cfaff66d, #w-node-_63b8e8f4-2c49-117b-8903-bd1ecbaf367b-cfaff66d, #w-node-_2b2dbf00-28df-7942-1b00-15dd5c237d6c-cfaff66d, #w-node-_5f5de737-a337-7138-ba26-678732a06f96-cfaff66d, #w-node-a99e206d-fa6d-5fd5-fe0b-d2276b757ea7-cfaff66d, #w-node-_4c198263-8dd5-77b7-7a32-a66553c73d90-cfaff66d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_6bc30bed-6c00-9127-1f32-58c9e1afde5a-cfaff66d {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_6bc30bed-6c00-9127-1f32-58c9e1afde5b-cfaff66d, #w-node-_6bc30bed-6c00-9127-1f32-58c9e1afde5f-cfaff66d {
    order: -9999;
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c4f1609b-23fc-d632-08dc-5343e1911b52-cfaff672 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-c4f1609b-23fc-d632-08dc-5343e1911b53-cfaff672, #w-node-c4f1609b-23fc-d632-08dc-5343e1911b5a-cfaff672, #w-node-_73c3d91b-be58-018d-09a8-54e9c3a754fe-cfaff672 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_8bd22a96-cd8e-645b-c62f-f614f0996058-cfaff672 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_8bd22a96-cd8e-645b-c62f-f614f0996059-cfaff672, #w-node-_8bd22a96-cd8e-645b-c62f-f614f0996064-cfaff672, #w-node-_8bd22a96-cd8e-645b-c62f-f614f099606f-cfaff672 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_5dd3e340-98ea-c577-cd3f-1d057f3deeee-cfaff672 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_5dd3e340-98ea-c577-cd3f-1d057f3deeef-cfaff672, #w-node-_5dd3e340-98ea-c577-cd3f-1d057f3deefa-cfaff672, #w-node-_5dd3e340-98ea-c577-cd3f-1d057f3def05-cfaff672 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_5dd3e340-98ea-c577-cd3f-1d057f3def14-cfaff672 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_5dd3e340-98ea-c577-cd3f-1d057f3def15-cfaff672, #w-node-_5dd3e340-98ea-c577-cd3f-1d057f3def16-cfaff672 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_54cbb45e-3bba-83f8-5283-cec627f7ea6b-cfaff672 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_54cbb45e-3bba-83f8-5283-cec627f7ea6c-cfaff672, #w-node-_54cbb45e-3bba-83f8-5283-cec627f7ea90-cfaff672, #w-node-_54cbb45e-3bba-83f8-5283-cec627f7eab4-cfaff672 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_54cbb45e-3bba-83f8-5283-cec627f7eb00-cfaff672 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_54cbb45e-3bba-83f8-5283-cec627f7eb01-cfaff672, #w-node-_54cbb45e-3bba-83f8-5283-cec627f7eb25-cfaff672 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_63b8e8f4-2c49-117b-8903-bd1ecbaf3679-cfaff66d {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  #w-node-_63b8e8f4-2c49-117b-8903-bd1ecbaf367a-cfaff66d, #w-node-_63b8e8f4-2c49-117b-8903-bd1ecbaf367b-cfaff66d, #w-node-_2b2dbf00-28df-7942-1b00-15dd5c237d6c-cfaff66d, #w-node-_5f5de737-a337-7138-ba26-678732a06f96-cfaff66d, #w-node-a99e206d-fa6d-5fd5-fe0b-d2276b757ea7-cfaff66d, #w-node-_4c198263-8dd5-77b7-7a32-a66553c73d90-cfaff66d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_133d8b77-82b9-b448-1907-d5d3a129d50b-cfaff672 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_133d8b77-82b9-b448-1907-d5d3a129d50c-cfaff672, #w-node-_133d8b77-82b9-b448-1907-d5d3a129d513-cfaff672 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-b0b0d832-0cdd-2b24-5035-ca1582a51733-cfaff672 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-b0b0d832-0cdd-2b24-5035-ca1582a51734-cfaff672, #w-node-b0b0d832-0cdd-2b24-5035-ca1582a5173b-cfaff672 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_59405a65-65b7-2da2-932d-a80f6462e0de-cfaff672 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_59405a65-65b7-2da2-932d-a80f6462e0df-cfaff672, #w-node-_59405a65-65b7-2da2-932d-a80f6462e0e6-cfaff672 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_9b9a0b7c-ef79-ea4b-2c80-7111949ec8ed-cfaff672 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  #w-node-_9b9a0b7c-ef79-ea4b-2c80-7111949ec8ee-cfaff672, #w-node-_9b9a0b7c-ef79-ea4b-2c80-7111949ec8f5-cfaff672 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Social Icons Font';
  src: url('../fonts/fa-brands-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Icons Font';
  src: url('../fonts/MaterialIconsOutlined-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.flex-container{
  display: flex; /* Use flexbox */
  align-items: center; /* Center items vertically */
}

.stripe {
  background-image: url('../images/tech_background_bw.jpg'); /* Replace 'path/to/your/image.jpg' with the actual path to your image file */
  background-repeat: repeat-x; /* Repeat the image only horizontally */
  background-size: 100% 4in; /* 100% width, 2 inches height */
  height: 2in; /* Set the height of the container to match the height of the stripe */
  display: flex;
  align-items: center; /* Center content vertically if needed */
}

/* @media (max-width: 767px) {
  .center-on-mobile {
      text-align: center;
  }
} */

.g-recaptcha-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px; /* Adjust the margin as needed */
}

.submenu { display: none; }
.submenu.show { display: block; }

/* Optional: rotate the chevron when open */
.js-submenu-toggle .bi { transition: transform .2s ease; }
.js-submenu-toggle[aria-expanded="true"] .bi { transform: rotate(180deg); }

