@font-face {
  font-family: Bdogrotesk;
  src: url('../fonts/BDOGrotesk-Light-BF648a656f46f93.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Bdogrotesk;
  src: url('../fonts/BDOGrotesk-Regular-BF648a656f74a27.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Bdogrotesk;
  src: url('../fonts/BDOGrotesk-Medium-BF648a656f49882.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Bdogrotesk;
  src: url('../fonts/BDOGrotesk-DemiBold-BF648a656f04a15.otf') format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: black;
  --white: white;
  --dark-gray: #333;
  --gray: #555;
  --primary-color: #f47820;
  --secondary-color: #fbefe6;
  --transparent: #0000;
  --dark-black: #252525;
}

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

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

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

body {
  color: var(--black);
  font-family: Bdogrotesk, Impact, sans-serif;
  font-size: 14px;
  line-height: 150%;
}

h1 {
  color: var(--white);
  letter-spacing: -.8px;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Bdogrotesk, Impact, sans-serif;
  font-size: 52px;
  font-weight: 600;
  line-height: 100%;
}

h2 {
  color: var(--dark-gray);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 48px;
  font-weight: 600;
  line-height: 150%;
}

h3 {
  color: var(--dark-gray);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 600;
  line-height: 150%;
}

h4 {
  color: var(--dark-gray);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 600;
  line-height: 150%;
}

p {
  color: var(--gray);
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 160%;
}

li {
  color: var(--gray);
  font-size: 18px;
  line-height: 160%;
}

.header-block {
  color: #333;
  background-color: #fff;
  padding-top: 16px;
  padding-bottom: 16px;
  font-family: Bdogrotesk, Impact, sans-serif;
  font-size: 13px;
  line-height: 120%;
  box-shadow: inset 0 1px 2px #00000029;
}

.header-block.fixed {
  z-index: 999;
  position: fixed;
  inset: 0% 0% auto;
  box-shadow: 0 1px 2px #00000029;
}

.container {
  width: 100%;
  max-width: 1336px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.nav-wrap {
  grid-column-gap: 40px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 40px;
  display: flex;
}

.nav-left {
  grid-column-gap: 40px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.nav-left.padding {
  position: absolute;
  left: 100px;
}

.hero-wrap {
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  width: 100%;
  display: flex;
  position: relative;
}

.hero-left {
  grid-row-gap: 30px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 600px;
  display: flex;
}

.hero-left.max-width {
  max-width: 720px;
  margin-right: 72px;
}

.hero-text {
  color: var(--white);
  text-align: center;
  font-family: Bdogrotesk, Impact, sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 160%;
}

.hero-left-top {
  grid-row-gap: 50px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.hero-bottom-text {
  color: var(--white);
  text-align: center;
  white-space: pre-wrap;
  width: 100%;
  font-family: Bdogrotesk, Impact, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
}

.hero-bottom-text.top {
  position: relative;
}

.hero-image {
  background-color: #d9d9d9;
  width: 100%;
  min-width: 50%;
  max-width: 50%;
  min-height: 720px;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.hero-image.none, .hero-image.d-none {
  display: none;
}

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

.body {
  font-family: Bdogrotesk, Impact, sans-serif;
}

.submit-button {
  border: 1px solid var(--primary-color);
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 38px;
  padding: 8px 16px;
  transition: all .3s;
  position: absolute;
  inset: 8px 8px 8px auto;
}

.submit-button:hover {
  border-color: var(--black);
  background-color: var(--black);
}

.text-field {
  border: 1px solid var(--black);
  color: var(--black);
  background-image: url('../images/Line-1.svg'), url('../images/gps-fix.svg');
  background-position: 58px, 24px;
  background-repeat: no-repeat, no-repeat;
  background-size: auto 24px, 24px 24px;
  background-attachment: scroll, scroll;
  border-radius: 50px;
  width: 100%;
  height: 60%;
  margin-bottom: 0;
  padding: 17.5px 84px 17.5px 68px;
  font-size: 15px;
  line-height: 120%;
  box-shadow: 0 42px 12px #00000003, 0 27px 11px #00000003, 0 15px 9px #0000000d, 0 7px 7px #00000012, 0 2px 4px #0000001a;
}

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

.form-block {
  margin-bottom: 0;
  position: relative;
}

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

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

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

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

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

.work-wrap {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.work-left {
  grid-row-gap: 8px;
  flex-flow: column;
  flex: 1;
  justify-content: space-between;
  align-self: stretch;
  align-items: flex-start;
  display: flex;
}

.section-heading {
  grid-row-gap: 8px;
  flex-flow: column;
  margin-bottom: 58px;
  display: flex;
}

.work-right {
  grid-row-gap: 64px;
  flex-flow: column;
  flex: 1;
  display: flex;
}

.work-right.gap {
  grid-row-gap: 52px;
}

.work-step {
  grid-column-gap: 32px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.number {
  width: 100%;
  max-width: 100px;
}

.work-number {
  color: var(--primary-color);
  font-size: 128px;
  font-weight: 500;
  line-height: 100%;
}

.work-content {
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
}

.alpha-cash-wrap {
  grid-row-gap: 64px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.cash-card {
  grid-row-gap: 24px;
  background-color: var(--secondary-color);
  border-radius: 16px;
  flex-flow: column;
  padding: 32px;
  display: flex;
}

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

.cash-card.thumb {
  grid-row-gap: 0px;
  border-radius: 16px;
  padding: 0;
}

.icon {
  background-color: var(--primary-color);
  border-radius: 80px;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  display: flex;
}

.icon.white-color {
  background-color: var(--white);
}

.card-content {
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
}

.card-content.padding {
  padding: 32px;
}

.cash-card-text {
  color: var(--gray);
  font-size: 16px;
  line-height: 160%;
}

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

.card-thumb {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  overflow: hidden;
}

.hero-main-content {
  z-index: 3;
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.top-line {
  background-color: var(--black);
  width: 26px;
  height: 2px;
  margin-bottom: 8px;
  padding-bottom: 0;
  padding-right: 0;
}

.middle-line {
  background-color: var(--black);
  width: 26px;
  height: 2px;
  padding-bottom: 0;
  padding-right: 0;
}

.bottom-line {
  background-color: var(--black);
  width: 26px;
  height: 2px;
  margin-top: 8px;
  padding-bottom: 0;
  padding-right: 0;
}

.menu-button {
  width: 42px;
  height: 42px;
  padding: 10px 8px;
}

.menu-button.w--open {
  background-color: var(--transparent);
}

.menu-button.block {
  z-index: 9;
  display: block;
  position: absolute;
  left: 40px;
}

.menu-button.block.w--open {
  background-color: var(--transparent);
  cursor: pointer;
}

.heading {
  grid-row-gap: 8px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.color-gray {
  color: var(--dark-gray);
}

.industries-wrap {
  grid-row-gap: 64px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.industrie-outer {
  grid-column-gap: 24px;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.serve-wrap {
  grid-column-gap: 24px;
  flex: none;
  display: flex;
}

.industrie-card {
  aspect-ratio: 10 / 13;
  object-fit: cover;
  border-radius: 16px;
  flex-flow: column;
  justify-content: flex-end;
  width: 100%;
  max-width: 400px;
  padding: 32px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.industries-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.industries-bottom {
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
  position: relative;
}

.industries-card-text {
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
}

.industries-top-layer {
  background-image: linear-gradient(#0000, #000c);
  position: absolute;
  inset: 0%;
}

.success-message {
  background-color: #f47820;
}

.success-message.bg-white {
  background-color: var(--white);
}

.text-block {
  color: #fff;
}

.get-app-wrap {
  grid-row-gap: 64px;
  flex-flow: column;
  display: flex;
}

.get-app-image {
  justify-content: center;
  align-self: center;
  align-items: center;
}

.get-app-buttons {
  grid-column-gap: 32px;
  border: 1px solid #e79235;
  border-radius: 10px;
  justify-content: center;
  align-self: center;
  align-items: center;
  padding: 16px;
  display: flex;
  position: relative;
}

.footer {
  background-color: var(--black);
  padding-top: 98px;
  padding-bottom: 64px;
}

.footer-wrap {
  grid-row-gap: 80px;
  flex-flow: column;
  display: flex;
}

.footer-top {
  grid-column-gap: 64px;
  display: flex;
}

.footer-bottom {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: grid;
}

.footer-top-left {
  grid-column-gap: 64px;
  display: flex;
}

.footer-top-right {
  grid-row-gap: 24px;
  flex-flow: column;
  flex: none;
  display: flex;
}

.footer-about {
  grid-row-gap: 24px;
  flex-flow: column;
  display: flex;
}

.footer-about-text {
  color: var(--white);
  font-size: 16px;
  line-height: 160%;
}

.footer-top-right-title {
  color: var(--white);
  font-size: 18px;
  font-weight: 500;
  line-height: 160%;
}

.footer-text-info {
  color: #fffc;
  font-size: 16px;
  line-height: 160%;
  transition: color .3s;
}

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

.footer-text-info.underline-remove {
  text-decoration: none;
}

.link-block {
  flex: none;
}

.footer-bottom-link, .footer-info {
  color: #fffc;
  font-size: 16px;
  line-height: 160%;
}

.footer-link {
  color: #fffc;
  font-size: 16px;
  line-height: 160%;
  text-decoration: none;
  transition: color .3s;
}

.footer-link:hover, .footer-link.w--current {
  color: var(--primary-color);
}

.alpha-cash-title {
  font-size: 24px;
}

.coming-soon-button {
  background-color: #fdfbd4;
  border-radius: 20px;
  justify-content: flex-start;
  align-items: center;
  padding: 4px;
  display: flex;
}

.coming-soon-button.bottom {
  position: absolute;
  top: -8px;
}

.coming-soon-button-text {
  color: #e79235;
  font-size: 10px;
  font-weight: 600;
  line-height: 100%;
}

.body-medium {
  color: #555;
  font-weight: 500;
  line-height: 160%;
}

.hero-two-section-heading {
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero-two {
  background-color: #f47820;
  height: 720px;
  display: flex;
  position: relative;
}

.hero-two.max-height {
  height: 780px;
  margin-top: 72px;
}

.hero-large {
  color: #fff;
  text-align: center;
  letter-spacing: -.8px;
  font-size: 80px;
  font-weight: 600;
  line-height: 110%;
}

.hero-paragraph {
  color: #fff;
  font-size: 32px;
  font-weight: 500;
  line-height: 130%;
}

.about-wrap {
  grid-row-gap: 64px;
  flex-flow: column;
  display: flex;
}

.about-title {
  color: var(--primary-color);
  font-size: 36px;
}

.about-text {
  color: #555;
  font-size: 16px;
  line-height: 160%;
}

.about-bottom-wrap {
  grid-row-gap: 74px;
  flex-flow: column;
  display: flex;
}

.about-information-wrap {
  grid-column-gap: 64px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.about-information-wrap.direction {
  flex-flow: row-reverse wrap;
}

.about-information-image {
  object-fit: cover;
  background-color: #d9d9d9;
  border-radius: 16px;
  flex: 1;
  overflow: hidden;
}

.about-information-image.show-logo {
  aspect-ratio: 16 / 9;
}

.about-information {
  grid-row-gap: 24px;
  flex-flow: column;
  flex: 1;
  display: flex;
}

.content-summery {
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
}

.about-alpha-title {
  color: #252525;
  font-size: 18px;
  font-weight: 600;
  line-height: 160%;
}

.work-step-top {
  grid-row-gap: 64px;
  flex-flow: column;
  display: flex;
}

.or {
  grid-column-gap: 15px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.line {
  background-color: #0003;
  flex: 1;
  height: 1px;
}

.or-comming {
  background-color: #fff;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  padding: 5px 14px;
  display: flex;
}

.or-text {
  color: var(--primary-color);
  font-size: 16px;
  font-weight: 500;
  line-height: 100%;
}

.work-left-text {
  font-size: 14px;
}

.work-left-image {
  background-color: #d9d9d9;
  border-radius: 10px;
  overflow: hidden;
}

.work-left-bottom {
  grid-row-gap: 10px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.why-alpha-cashe-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.why-alpha-cash-card {
  grid-row-gap: 14px;
  background-color: #fff;
  border-radius: 16px;
  flex-flow: column;
  padding: 24px;
  display: flex;
}

.why-alpha-cash-icon {
  width: 32px;
  height: 32px;
}

.why-alpha-cash-text {
  color: var(--gray);
  font-size: 20px;
  line-height: 160%;
}

.dark-gray {
  color: var(--dark-gray);
}

.why-alpha-cash-image {
  border-radius: 16px;
  overflow: hidden;
}

.cta {
  padding-bottom: 128px;
}

.cta-head {
  grid-row-gap: 50px;
  background-color: var(--primary-color);
  border-radius: 20px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 80px 72px;
  display: flex;
}

.cta-title {
  grid-row-gap: 5px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.cta-form {
  width: 100%;
  max-width: 576px;
}

.cta-text-field {
  color: #33333380;
  background-image: url('../images/mail-icon.svg');
  background-position: 24px;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 50px;
  height: 53px;
  margin-bottom: 0;
  padding: 8px 8px 8px 55px;
  font-size: 15px;
  line-height: 120%;
  position: relative;
  box-shadow: 0 2px 4px #0000001a, 0 7px 7px #00000017, 0 15px 9px #0000000d, 0 27px 11px #00000003, 0 42px 12px #0000;
}

.cta-submit-button {
  background-color: var(--primary-color);
  border-radius: 38px;
  margin-top: 8px;
  margin-bottom: 8px;
  margin-right: 8px;
  padding: 8px 16px;
  transition: all .3s;
  position: absolute;
  top: 0;
  right: 0;
}

.cta-submit-button:hover {
  background-color: var(--black);
}

.form {
  position: relative;
}

.hero-slider {
  background-color: var(--primary-color);
  border-radius: 20px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slide-01 {
  width: 100%;
  max-width: 616px;
  height: 584px;
}

.mask {
  border-radius: 20px;
}

.slider-image-01 {
  background-color: #d9d9d9;
  height: 100%;
  overflow: hidden;
}

.d-none {
  display: none;
}

.slide-02, .slide-03 {
  width: 100%;
  max-width: 616px;
  height: 584px;
}

.right-arrow, .left-arrow, .slider-icon {
  display: none;
}

.hero-left-text {
  grid-row-gap: 22px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.card-text-field {
  z-index: 9;
  grid-row-gap: 12px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 16px;
  display: flex;
  position: relative;
}

.card-text-title {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 160%;
  display: flex;
}

.nav-menu {
  z-index: 9;
  background-color: #00000061;
  width: 100%;
  max-width: 100%;
  position: fixed;
  inset: 72px 0% 0%;
}

.nav-data {
  z-index: 1;
  grid-row-gap: 15px;
  background-color: var(--white);
  color: var(--black);
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 320px;
  height: 100%;
  margin-top: 0;
  padding-top: 50px;
  display: flex;
  position: relative;
}

.navbar-top {
  grid-row-gap: 8px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  padding-left: 40px;
  padding-right: 48px;
  font-size: 14px;
  line-height: 170%;
  display: flex;
}

.nav-text-link {
  color: var(--black);
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 100%;
  text-decoration: none;
  transition: color .3s;
}

.nav-text-link:hover, .nav-text-link.w--current {
  color: var(--primary-color);
}

.nav-card {
  width: 100%;
  padding: 24px;
}

.card-support {
  grid-row-gap: 20px;
  background-color: var(--secondary-color);
  flex-flow: column;
  padding: 24px;
  display: flex;
}

.card-support-title {
  color: var(--primary-color);
  font-size: 20px;
  font-weight: 500;
  line-height: 160%;
}

.card-support-info {
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
}

.card-support-text {
  color: #000c;
  font-size: 16px;
  line-height: 160%;
}

.card-support-link {
  color: #000c;
  font-size: 16px;
  line-height: 160%;
  text-decoration: underline;
  transition: color .3s;
}

.card-support-link:hover {
  color: var(--primary-color);
}

.image {
  width: 940px;
}

.nav-color {
  background-color: #00000061;
  width: 100%;
  display: block;
  position: fixed;
}

.hero-center-text {
  grid-column-gap: 15px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.hero-dash-text {
  grid-column-gap: 20px;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.hero-left-center-text {
  color: var(--white);
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 130%;
}

.navbar-wrap {
  grid-column-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  margin-left: 40px;
  display: flex;
}

.nav-menu-icon {
  background-color: #0000;
  width: 100%;
  margin-top: 72px;
  height: calc(100vh - 72px) !important;
}

.black-overlay {
  z-index: 0;
  background-color: #00000061;
  position: fixed;
  inset: 0%;
}

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

.page-body {
  padding-top: 72px;
}

.search-input {
  border: 1px solid var(--black);
  background-color: var(--white);
  background-image: url('../images/gps-fix.svg');
  background-position: 16px;
  background-repeat: no-repeat;
  background-size: auto;
  border-radius: 48px;
  width: 100%;
  max-width: 540px;
  height: 52px;
  padding: 8px 24px 8px 54px;
  font-size: 16px;
  box-shadow: 0 1px 2px #0000001a, 0 3px 3px #00000017, 0 7px 4px #0000000d, 0 13px 5px #00000003;
}

.results-wrap {
  z-index: 9;
  background-color: var(--white);
  border-radius: 16px;
  width: 100%;
  max-width: 540px;
  padding: 8px;
  display: none;
  position: absolute;
  top: 58px;
  left: 0;
  right: 0;
  box-shadow: 0 1px 3px #0000001a;
}

.results-wrap.block {
  display: block;
}

.store-item {
  background-image: url('../images/location-pin.svg');
  background-position: 10px 8px;
  background-repeat: no-repeat;
  background-size: 20px;
  border-radius: 8px;
  padding: 8px 10px 8px 40px;
}

.store-item:hover {
  background-color: var(--secondary-color);
}

.address-text {
  font-size: 16px;
  font-weight: 500;
}

.zipcode-text {
  color: var(--gray);
}

.results {
  max-height: 200px;
  overflow: auto;
}

.search-embed {
  z-index: 99;
  width: 100%;
  max-width: 540px;
  position: relative;
}

.success-message-2 {
  background-color: var(--black);
  color: var(--white);
  border-radius: 10px;
  font-size: 16px;
}

.privacy-wrap {
  grid-row-gap: 64px;
  flex-flow: column;
  display: flex;
}

.info-wrap {
  grid-row-gap: 40px;
  flex-flow: column;
  display: flex;
}

.date-text {
  color: var(--dark-black);
  font-size: 18px;
  font-weight: 600;
  line-height: 160%;
}

.info-date {
  grid-column-gap: 10px;
  display: flex;
}

.date {
  color: #252525;
  font-size: 18px;
  line-height: 160%;
}

.info-text {
  color: var(--gray);
  font-size: 16px;
  line-height: 160%;
}

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

.info-data {
  grid-row-gap: 15px;
  flex-flow: column;
  display: flex;
}

.info-data.gap {
  grid-row-gap: 20px;
}

.info-title {
  color: var(--dark-black);
  font-size: 20px;
  line-height: 130%;
}

.info-block {
  grid-row-gap: 15px;
  flex-flow: column;
  display: flex;
}

.info-block-title {
  color: var(--dark-black);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 130%;
}

.info-lists {
  grid-row-gap: 12px;
  flex-flow: column;
  display: flex;
}

.info-block-text {
  color: var(--gray);
  font-size: 18px;
  line-height: 160%;
}

.policy-list {
  grid-row-gap: 5px;
  flex-flow: column;
  margin-bottom: 0;
  list-style-type: disc;
  display: flex;
}

.policy-list-item {
  color: var(--gray);
  font-size: 18px;
  line-height: 160%;
}

.medium {
  color: var(--black);
  font-weight: 500;
}

.info-mail {
  grid-row-gap: 10px;
  flex-flow: column;
  display: flex;
}

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

.contact-text {
  color: var(--dark-black);
  flex: none;
  font-size: 18px;
  font-weight: 600;
  line-height: 160%;
}

.contact-info-text {
  color: var(--dark-black);
  font-size: 18px;
  line-height: 160%;
  text-decoration: none;
  transition: color .3s;
}

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

.terms-wrap {
  grid-row-gap: 64px;
  flex-flow: column;
  display: flex;
}

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

.contact-text-address {
  color: var(--dark-black);
  font-size: 18px;
  font-weight: 400;
  line-height: 160%;
}

.policy-number-list {
  list-style-type: decimal;
}

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

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  p {
    font-size: 18px;
  }

  .nav-left {
    justify-content: space-between;
    align-items: center;
  }

  .nav-left.padding {
    position: relative;
    left: 0;
  }

  .hero-wrap {
    padding-top: 40px;
  }

  .hero-left.max-width {
    grid-row-gap: 20px;
    margin-right: 0;
  }

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

  .hero-left-top {
    grid-row-gap: 40px;
  }

  .hero-left-top.max-width {
    max-width: none;
  }

  .hero-image {
    display: flex;
  }

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

  .work-wrap {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .work-right {
    grid-row-gap: 50px;
  }

  .number {
    max-width: 60px;
  }

  .work-number {
    font-size: 90px;
  }

  .alpha-cash-wrap {
    grid-row-gap: 50px;
  }

  .cash-wrap {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .hero-main-content {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .hero-main-content.direction {
    flex-flow: column;
  }

  .top-line, .middle-line, .bottom-line {
    display: block;
  }

  .menu-button {
    z-index: 9;
    display: block;
  }

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

  .menu-button.block {
    z-index: 9;
    display: none;
    position: relative;
    left: 0;
  }

  .heading {
    font-size: 22px;
  }

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

  .industries-wrap, .get-app-wrap {
    grid-row-gap: 50px;
  }

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

  .footer-wrap {
    grid-row-gap: 45px;
  }

  .footer-top {
    grid-column-gap: 50px;
  }

  .footer-bottom {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    grid-template-columns: 1fr 1fr;
    display: flex;
  }

  .footer-top-left {
    grid-column-gap: 50px;
  }

  .footer-top-right {
    flex: 0 auto;
  }

  .footer-bottom-link {
    display: none;
  }

  .alpha-cash-title {
    font-size: 22px;
  }

  .hero-two.max-height {
    height: auto;
    padding-bottom: 20px;
  }

  .hero-large {
    font-size: 60px;
  }

  .hero-paragraph {
    font-size: 28px;
  }

  .about-wrap {
    grid-row-gap: 50px;
  }

  .about-bottom-wrap {
    grid-row-gap: 60px;
  }

  .about-information-wrap {
    grid-column-gap: 50px;
  }

  .why-alpha-cashe-wrap {
    grid-template-columns: 1fr 1fr;
  }

  .cta {
    padding-bottom: 100px;
  }

  .cta-head {
    padding: 60px 52px;
  }

  .slide-01, .slide-02, .slide-03 {
    max-width: none;
  }

  .card-text-field {
    padding-top: 20px;
  }

  .nav-data {
    padding-top: 42px;
  }

  .navbar-top {
    padding-left: 20px;
    padding-right: 20px;
  }

  .navbar-wrap {
    margin-left: 20px;
  }

  .privacy-wrap, .terms-wrap {
    grid-row-gap: 50px;
  }
}

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

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 20px;
  }

  .brand {
    padding-left: 0;
  }

  .hero-wrap {
    padding-top: 0;
  }

  .hero-left.max-width {
    grid-row-gap: 20px;
  }

  .hero-left-top {
    grid-row-gap: 30px;
  }

  .hero-bottom-text {
    position: relative;
  }

  .hero-image {
    max-width: none;
    min-height: auto;
    position: static;
  }

  .hero-image.none, .hero-image.d-none {
    display: none;
  }

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

  .work-wrap {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .work-right {
    grid-row-gap: 30px;
  }

  .work-step {
    grid-column-gap: 24px;
  }

  .number {
    max-width: 50px;
  }

  .work-number {
    font-size: 70px;
  }

  .alpha-cash-wrap {
    grid-row-gap: 40px;
  }

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

  .hero-main-content {
    flex-flow: column;
    padding-top: 40px;
    padding-bottom: 40px;
    position: static;
  }

  .menu-button.block.w--open {
    position: relative;
    left: 0;
  }

  .industries-wrap, .get-app-wrap, .footer-wrap {
    grid-row-gap: 40px;
  }

  .footer-top {
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .footer-bottom {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr 1fr;
  }

  .footer-top-left {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    flex-flow: column;
  }

  .alpha-cash-title {
    font-size: 20px;
  }

  .hero-two {
    height: auto;
  }

  .hero-two.max-height {
    padding-bottom: 0;
  }

  .hero-large {
    font-size: 54px;
  }

  .about-bottom-wrap {
    grid-row-gap: 50px;
  }

  .about-information-wrap {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
    flex-flow: column-reverse wrap;
  }

  .about-information-wrap.direction {
    flex-flow: column-reverse;
  }

  .about-information-image {
    width: 100%;
  }

  .why-alpha-cashe-wrap {
    grid-template-columns: 1fr;
  }

  .cta {
    padding-bottom: 80px;
  }

  .cta-head {
    grid-row-gap: 40px;
    padding: 40px;
  }

  .hero-left-text {
    grid-row-gap: 20px;
  }

  .card-text-field {
    padding-top: 10px;
  }

  .nav-data {
    max-width: 100%;
  }

  .hero-dash-text {
    justify-content: center;
    align-items: center;
  }

  .hero-left-center-text {
    font-size: 20px;
  }

  .nav-logo {
    padding-left: 0;
  }

  .policy-list, .policy-number-list {
    padding-left: 30px;
  }
}

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

  h3 {
    font-size: 20px;
  }

  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-left {
    grid-row-gap: 28px;
  }

  .hero-left-top {
    grid-row-gap: 24px;
  }

  .submit-button {
    width: 100%;
    margin-top: 8px;
    display: block;
    position: static;
  }

  .submit-button.color {
    background-color: var(--black);
  }

  .submit-button.color:hover {
    background-color: var(--dark-gray);
  }

  .text-field {
    background-position: 40px, 10px;
    padding: 15px 10px 15px 50px;
  }

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

  .work-right.gap {
    grid-row-gap: 40px;
  }

  .work-step {
    grid-row-gap: 16px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .work-number {
    font-size: 50px;
  }

  .cash-wrap {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
  }

  .hero-main-content {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .get-app-buttons {
    grid-row-gap: 32px;
    flex-flow: column;
  }

  .footer-bottom {
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-bottom-link {
    display: none;
  }

  .hero-large {
    font-size: 42px;
    line-height: 120%;
  }

  .hero-paragraph {
    font-size: 24px;
  }

  .about-title {
    font-size: 32px;
  }

  .work-step-top {
    grid-row-gap: 50px;
  }

  .cta {
    padding-bottom: 60px;
  }

  .cta-head {
    padding: 20px;
  }

  .cta-submit-button {
    background-color: var(--black);
    width: 100%;
    position: relative;
  }

  .cta-submit-button:hover {
    background-color: var(--gray);
  }

  .slide-01, .slide-02, .slide-03 {
    height: auto;
  }

  .card-text-field {
    padding-top: 0;
    padding-bottom: 0;
  }

  .nav-data {
    padding-top: 30px;
  }

  .nav-card, .card-support {
    padding: 15px;
  }

  .hero-dash-text {
    grid-column-gap: 4px;
    flex-flow: column;
  }

  .hero-left-center-text {
    font-size: 15px;
  }

  .policy-list {
    padding-left: 25px;
  }

  .mail {
    flex-flow: column;
  }

  .policy-number-list {
    padding-left: 25px;
  }
}

#w-node-e54b5225-4b9d-90d7-45d4-057c19cdd681-3d15c8c6, #w-node-_895a0de3-9b76-07e8-1257-c3d5dceaf1d3-3d15c8c6, #w-node-dd72ca39-c43e-0251-560c-d2f00d4caf35-3d15c8c6 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

@media screen and (max-width: 767px) {
  #w-node-e54b5225-4b9d-90d7-45d4-057c19cdd681-3d15c8c6 {
    grid-area: 2 / 1 / 2 / 2;
  }

  #w-node-_895a0de3-9b76-07e8-1257-c3d5dceaf1d3-3d15c8c6 {
    grid-area: 2 / 2 / 3 / 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_895a0de3-9b76-07e8-1257-c3d5dceaf1d3-3d15c8c6 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Bdogrotesk';
  src: url('../fonts/BDOGrotesk-Light-BF648a656f46f93.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bdogrotesk';
  src: url('../fonts/BDOGrotesk-Regular-BF648a656f74a27.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bdogrotesk';
  src: url('../fonts/BDOGrotesk-Medium-BF648a656f49882.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bdogrotesk';
  src: url('../fonts/BDOGrotesk-DemiBold-BF648a656f04a15.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}