:root {
  --black-text: #272a30;
  --primary: #119bdc;
  --line: #dee3ea;
  --white: white;
  --lighter-primary: #e5f3fe;
  --medium-text: #646c7d;
  --background: #f7f8f8;
}

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

body {
  color: #333;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

h1 {
  color: var(--black-text);
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 48px;
  font-weight: 600;
  line-height: 58px;
}

h2 {
  color: var(--black-text);
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 32px;
  font-weight: 600;
  line-height: 38px;
}

h3 {
  color: var(--black-text);
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
}

h4 {
  color: var(--black-text);
  margin-top: 0;
  margin-bottom: 4px;
  font-size: 22px;
  font-weight: 600;
  line-height: 32px;
}

h5 {
  color: var(--black-text);
  margin-top: 0;
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 600;
  line-height: 28px;
}

h6 {
  color: var(--black-text);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

a {
  color: var(--primary);
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
}

.sticky-nav {
  z-index: 5;
  border-bottom: 1px solid var(--line);
  background-color: var(--white);
  padding: 16px 0;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.nav-logo {
  width: 145px;
  height: 100%;
  object-fit: contain;
  object-position: 0% 50%;
  padding-top: 16px;
  padding-bottom: 16px;
}

.cta-button {
  border: 2px solid var(--primary);
  background-color: var(--white);
  opacity: .25;
  color: var(--primary);
  text-align: center;
  border-radius: 100px;
  padding: 16px 24px;
  font-weight: 600;
  transition: background-color .2s, transform .2s;
}

.cta-button:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translate(2px, -2px);
}

.cta-button:active {
  transform: none;
}

.cta-button.button-styleguide {
  font-weight: 600;
}

.container-navbar {
  max-width: 1248px;
  justify-content: flex-start;
  margin-left: auto;
  padding-left: 48px;
  padding-right: 48px;
}

.container {
  width: 100%;
  max-width: 1248px;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px;
  display: block;
  position: relative;
}

.container.footer {
  color: var(--lighter-primary);
  display: flex;
}

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

.content-medium {
  max-width: 506px;
  position: relative;
}

.copyright-text {
  color: var(--line);
}

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

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

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

.margin-bottom-32.align-center {
  text-align: center;
}

.hero-image {
  z-index: 1;
  position: static;
}

.pattern-2 {
  z-index: 2;
  position: absolute;
  top: 340px;
  right: 45px;
}

.pattern-1 {
  z-index: 2;
  position: absolute;
  top: 190px;
  left: -20px;
}

.hero-group-image {
  flex-direction: column;
  align-items: center;
  display: flex;
  position: relative;
}

.hero-background {
  width: 100%;
  height: 570px;
  background-image: url('../images/Hero-Background.png');
  background-position: 0%;
  background-size: cover;
  position: absolute;
  top: 0%;
  left: 0%;
}

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

.card-benefit {
  width: 100%;
  border: 1px solid var(--line);
  background-color: var(--white);
  border-radius: 12px;
  padding: 24px;
}

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

.margin-bottom-8 {
  margin-top: 13px;
  margin-bottom: 8px;
}

.grid-2x1 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
}

.subtitle {
  color: var(--medium-text);
  margin-bottom: 8px;
}

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

.description-feature {
  color: var(--medium-text);
}

.feature-background {
  width: 100%;
  height: 100%;
  background-image: url('../images/Background-Grey.png');
  background-position: 50%;
  background-size: cover;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.content-big {
  max-width: 1248px;
  position: relative;
}

.video-link {
  background-image: url('../images/Video.png');
  background-size: auto;
  border-radius: 30px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.play-button {
  width: 100px;
  height: 100px;
  transition: transform .2s;
  position: absolute;
}

.play-button:hover {
  transform: translate(4px, -4px);
}

.play-button:active {
  transform: none;
}

.provider-list {
  justify-content: center;
  display: flex;
}

.cta {
  width: 100%;
  height: 360px;
  max-width: 1248px;
  background-image: url('../images/CTA-Background.png');
  background-position: 0 0;
  background-size: auto;
  border-radius: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
  display: flex;
}

.cta-text {
  color: var(--white);
  text-align: center;
  margin-bottom: 32px;
  margin-left: 24px;
  margin-right: 24px;
}

.footer-section {
  border-top: 1px solid var(--line);
  background-color: #119bdc;
  padding-top: 24px;
  padding-bottom: 24px;
}

.footer-link {
  color: var(--black-text);
}

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

.footer-link.margin-right-32 {
  color: var(--white);
}

.image-feature {
  display: flex;
  position: relative;
}

.image-2nd {
  width: 248px;
  height: 500px;
  margin-top: 48px;
}

.image-1st {
  width: 248px;
  height: 500px;
}

.feature-tabs {
  flex-direction: row;
  justify-content: space-between;
  display: flex;
}

.tab-link-feature {
  max-width: 506px;
  background-color: rgba(0, 0, 0, 0);
  border-radius: 12px;
  margin-bottom: 8px;
  padding: 24px;
}

.tab-link-feature.w--current {
  width: 506px;
  background-color: var(--white);
  border-radius: 12px;
  padding: 24px;
}

.tabs-menu {
  flex-direction: column;
  margin-right: 32px;
  display: flex;
}

.feature-list {
  display: none;
  position: relative;
}

.right-navbar {
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

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

.download-button {
  width: 140px;
  transition: transform .2s;
}

.download-button:hover {
  transform: translate(2px, -2px);
}

.download-button.margin-right-32 {
  opacity: .5;
  transition-duration: .4s;
  transition-timing-function: cubic-bezier(.825, .173, .25, 1);
}

.download-button.google-play {
  opacity: .4;
  display: inline;
}

.video-cover {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 30px;
}

.provider-logo {
  margin-bottom: 0;
}

.background-color-light {
  width: 100%;
  height: 100%;
  background-image: url('../images/Background-color-light.png');
  background-position: 50%;
  background-size: cover;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.background-color-yellow {
  width: 100%;
  height: 100%;
  background-image: url('../images/Hero-Background.png');
  background-position: 50%;
  background-size: cover;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.license-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.background-color-blue {
  width: 100%;
  height: 100%;
  background-image: url('../images/Background-color-blue.png');
  background-position: 0 0;
  background-size: cover;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

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

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

.link-styleguide {
  width: 100%;
  color: var(--black-text);
  padding: 16px 24px;
}

.link-styleguide.w--current {
  background-color: var(--lighter-primary);
  color: var(--primary);
  border-radius: 8px;
  font-weight: 700;
}

.link-styleguide-wrapper {
  margin-bottom: 4px;
}

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

.styleguide-color {
  height: 60px;
  border-radius: 4px;
  margin-bottom: 16px;
}

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

.styleguide-color.black-text-color {
  background-color: var(--black-text);
}

.styleguide-color.medium-text-color {
  background-color: var(--medium-text);
}

.styleguide-color.white-color {
  border: 1px solid var(--line);
  background-color: var(--white);
}

.styleguide-color.background-color {
  background-color: var(--background);
}

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

.styleguide-color.line-color {
  background-color: var(--line);
}

.menu-styleguide {
  position: -webkit-sticky;
  position: sticky;
  top: 140px;
  bottom: auto;
  left: 0%;
  right: auto;
}

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

@media screen and (max-width: 991px) {
  .copyright-text {
    width: 320px;
  }

  .pattern-2 {
    right: -15px;
  }

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

  .provider-list {
    flex-wrap: wrap;
  }

  .footer-link.margin-right-32 {
    margin-right: 16px;
  }

  .image-2nd, .image-1st {
    width: 200px;
    height: 360px;
  }

  .feature-tabs {
    align-items: center;
  }

  .tab-link-feature, .tab-link-feature.w--current {
    width: 260px;
  }

  .provider-logo.margin-right-32 {
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 767px) {
  .container.footer {
    flex-direction: column-reverse;
  }

  .copyright-text {
    width: auto;
    text-align: center;
    margin-top: 16px;
  }

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

  .play-button {
    width: 56px;
    height: 56px;
  }

  .footer-section {
    display: flex;
  }

  .feature-tabs {
    display: none;
  }

  .feature-list {
    display: block;
  }

  .menu-button {
    background-color: var(--background);
    color: var(--medium-text);
    border-radius: 100%;
    margin-left: 8px;
  }

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

  .nav-menu {
    border-bottom: 1px solid var(--line);
    background-color: var(--white);
  }

  .video-cover {
    height: 320px;
  }
}

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

  .sticky-nav {
    padding: 4px 0;
  }

  .cta-button {
    display: none;
  }

  .cta-button.button-styleguide {
    display: inline-block;
  }

  .container-navbar, .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .copyright-text {
    font-size: 14px;
    line-height: 20px;
  }

  .download-list {
    flex-direction: column;
    display: flex;
  }

  .pattern-2 {
    right: -16px;
  }

  .footer-link {
    font-size: 14px;
    line-height: 20px;
  }

  .image-2nd, .image-1st {
    width: 140px;
    height: 290px;
  }

  .download-button {
    width: 140px;
  }

  .download-button.margin-right-32 {
    margin-bottom: 32px;
    margin-right: 0;
  }

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

  .menu-styleguide {
    display: none;
  }
}

#w-node-_2661bfc6-c5b5-1c5f-f3c9-e0f4ba844773-8a6bc78f, #w-node-_7f4aa20b-754f-1b06-04bf-a849e275148b-8a6bc78f {
  align-self: center;
}

@media screen and (max-width: 991px) {
  #w-node-_7f4aa20b-754f-1b06-04bf-a849e275148b-8a6bc78f {
    align-self: start;
  }
}


@font-face {
  font-family: 'Opensaucesans';
  src: url('../fonts/OpenSauceSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Opensaucesans';
  src: url('../fonts/OpenSauceSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}