/**
 * Settings
 */
/**
   * Base
   */
/* line 85, app/assets/stylesheets/home.scss */
*,
*:before,
*:after {
  box-sizing: border-box;
}

/* line 90, app/assets/stylesheets/home.scss */
body {
  font-family: 'Poppins', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
  background-color: #ffffff;
}

@media screen and (min-width: 1024px) {
  /* line 90, app/assets/stylesheets/home.scss */
  body {
    background-color: #f6f6f6;
  }
}

/* line 102, app/assets/stylesheets/home.scss */
#android-banner {
  background-color: #f6f6f6;
  padding: 10px;
  border-bottom: 1px solid #818181;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

/* line 111, app/assets/stylesheets/home.scss */
.c-content__app-icon-banner {
  border-radius: 15px;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3);
  padding: 5px;
  background-color: #ffffff;
}

/**
   * Button component
   */
/* line 122, app/assets/stylesheets/home.scss */
.c-buttons {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 20px 0 0 0;
}

/* line 129, app/assets/stylesheets/home.scss */
.c-button {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
  background-color: #00698c;
  border-radius: 999px;
  box-sizing: border-box;
  box-shadow: 2px 0px 7px 4px rgba(0, 0, 0, 0.1);
  color: #ffffff;
  padding: 15px 20px;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.25s ease-in-out;
}

/* line 141, app/assets/stylesheets/home.scss */
.c-button:hover {
  opacity: 0.75;
}

/* line 146, app/assets/stylesheets/home.scss */
.c-button--50 {
  width: calc(50% - 10px);
}

/**
   * Header component
   */
/* line 154, app/assets/stylesheets/home.scss */
.c-header {
  align-items: center;
  display: flex;
  justify-content: center;
  padding: 30px 20px;
  position: absolute;
  left: 0;
  right: 0;
  z-index: 1;
}

@media screen and (min-width: 1024px) {
  /* line 154, app/assets/stylesheets/home.scss */
  .c-header {
    justify-content: space-between;
  }
}

@media screen and (min-width: 1400px) {
  /* line 154, app/assets/stylesheets/home.scss */
  .c-header {
    padding: 30px 40px;
  }
}

/* line 171, app/assets/stylesheets/home.scss */
.c-header__logo {
  margin: 0;
}

/* line 175, app/assets/stylesheets/home.scss */
.c-header__menu {
  align-items: center;
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 1024px) {
  /* line 175, app/assets/stylesheets/home.scss */
  .c-header__menu {
    display: flex;
  }
}

/* line 187, app/assets/stylesheets/home.scss */
.c-header__menu-item + .c-header__menu-item {
  margin: 0 0 0 40px;
}

/* line 191, app/assets/stylesheets/home.scss */
.c-header__menu-link {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
  align-items: center;
  color: #00698c;
  display: flex;
  text-decoration: none;
}

@media screen and (min-width: 1024px) {
  /* line 191, app/assets/stylesheets/home.scss */
  .c-header__menu-link {
    font-size: 16px;
  }
}

/* line 198, app/assets/stylesheets/home.scss */
.c-header__menu-link:hover {
  text-decoration: underline;
}

/* line 202, app/assets/stylesheets/home.scss */
.c-header__menu-link svg {
  margin: 0 10px 0 0;
  max-width: 18px;
}

/* line 206, app/assets/stylesheets/home.scss */
.c-header__menu-link svg path {
  fill: currentColor;
}

/**
   * Container component
   */
/* line 216, app/assets/stylesheets/home.scss */
.c-container {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1320px;
  min-height: 100vh;
  padding: 0 20px;
  position: relative;
  overflow: hidden;
}

@media screen and (min-width: 1024px) {
  /* line 216, app/assets/stylesheets/home.scss */
  .c-container {
    overflow: visible;
  }
  /* line 227, app/assets/stylesheets/home.scss */
  .c-container:before {
    content: '';
    background-color: #ffffff;
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 50%;
    left: -999em;
    z-index: 0;
  }
}

/**
   * Content component
   */
/* line 245, app/assets/stylesheets/home.scss */
.c-content {
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 50px 0 20px;
  width: 100%;
  background-color: #ffffff;
  position: relative;
}

@media screen and (min-width: 1024px) {
  /* line 245, app/assets/stylesheets/home.scss */
  .c-content {
    width: 50%;
    padding: 110px 0 0 0;
  }
}

/* line 260, app/assets/stylesheets/home.scss */
.c-content__inner {
  flex: 1;
  max-width: 570px;
  position: relative;
  margin: 0 auto;
}

@media screen and (min-width: 1024px) {
  /* line 260, app/assets/stylesheets/home.scss */
  .c-content__inner {
    padding-right: 50px;
    margin: 0;
  }
}

/* line 270, app/assets/stylesheets/home.scss */
.c-content__header {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin: 0 0 30px 0;
  text-align: center;
  flex-wrap: wrap;
  position: relative;
}

/* line 278, app/assets/stylesheets/home.scss */
.c-content__header:before {
  content: '';
  position: absolute;
  background-color: #f6f6f6;
  left: -999em;
  right: -999em;
  top: -999em;
  bottom: 0;
}

/* line 286, app/assets/stylesheets/home.scss */
.c-content__header:before:before {
  display: none;
}

@media screen and (min-width: 1024px) {
  /* line 270, app/assets/stylesheets/home.scss */
  .c-content__header {
    align-items: flex-start;
    flex-direction: row;
    text-align: left;
  }
  /* line 295, app/assets/stylesheets/home.scss */
  .c-content__header .c-content__content {
    margin-top: 25px;
  }
  /* line 298, app/assets/stylesheets/home.scss */
  .c-content__header:before {
    display: none;
  }
}

/* line 304, app/assets/stylesheets/home.scss */
.c-content__app-icon {
  border-radius: 15px;
  margin: 0 0 20px 0;
  box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3);
  height: 80px;
  width: 80px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #ffffff;
}

@media screen and (min-width: 1024px) {
  /* line 304, app/assets/stylesheets/home.scss */
  .c-content__app-icon {
    height: 100px;
    width: 100px;
    margin: 0 20px 0 0;
  }
}

@media only screen and (max-width: 600px) {
  /* line 304, app/assets/stylesheets/home.scss */
  .c-content__app-icon {
    margin-top: 35px;
  }
}

/* line 326, app/assets/stylesheets/home.scss */
.c-content__app-inner {
  display: flex;
  position: relative;
  flex-direction: column;
  flex: 1;
  padding-bottom: 40px;
}

@media screen and (min-width: 1024px) {
  /* line 326, app/assets/stylesheets/home.scss */
  .c-content__app-inner {
    padding-bottom: 0;
  }
}

/* line 337, app/assets/stylesheets/home.scss */
.c-content__label {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  color: #00698c;
  margin: 0;
}

@media screen and (min-width: 1024px) {
  /* line 337, app/assets/stylesheets/home.scss */
  .c-content__label {
    font-size: 18px;
  }
}

/* line 343, app/assets/stylesheets/home.scss */
.c-content__title {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  color: #0a4260;
  margin: 0 0 50px 0;
}

@media screen and (min-width: 1024px) {
  /* line 343, app/assets/stylesheets/home.scss */
  .c-content__title {
    font-size: 27px;
  }
}

/* line 349, app/assets/stylesheets/home.scss */
.c-content__pointstitle {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  color: #00698c;
  margin-bottom: 20px;
}

@media screen and (min-width: 1024px) {
  /* line 349, app/assets/stylesheets/home.scss */
  .c-content__pointstitle {
    font-size: 27px;
  }
}

@media screen and (max-width: 1024px) {
  /* line 349, app/assets/stylesheets/home.scss */
  .c-content__pointstitle {
    text-align: center;
  }
}

/* line 358, app/assets/stylesheets/home.scss */
.c-content__cta {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
  border: 1px solid #00698c;
  color: #00698c;
  border-radius: 50px;
  width: 100%;
  text-decoration: none;
  display: block;
  text-align: center;
  position: relative;
  padding: 0 20px;
  height: 47px;
  line-height: 43px;
  margin-bottom: 90px;
  transition: opacity 0.25s ease-in-out;
}

@media screen and (min-width: 1024px) {
  /* line 358, app/assets/stylesheets/home.scss */
  .c-content__cta {
    font-size: 16px;
  }
}

@media screen and (min-width: 1024px) {
  /* line 358, app/assets/stylesheets/home.scss */
  .c-content__cta {
    max-width: 440px;
    border: 2px solid #00698c;
    border-radius: 15px;
    height: 59px;
    line-height: 55px;
  }
}

/* line 380, app/assets/stylesheets/home.scss */
.c-content__cta svg {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* line 387, app/assets/stylesheets/home.scss */
.c-content__cta:hover {
  opacity: 0.75;
}

/* line 392, app/assets/stylesheets/home.scss */
.c-content__subtitle {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  color: #0a4260;
  margin: 0 0 20px 0;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  /* line 392, app/assets/stylesheets/home.scss */
  .c-content__subtitle {
    font-size: 22px;
  }
}

@media screen and (min-width: 1024px) {
  /* line 392, app/assets/stylesheets/home.scss */
  .c-content__subtitle {
    text-align: left;
  }
}

/* line 402, app/assets/stylesheets/home.scss */
.c-content__subtitle--no-mb {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0;
}

@media screen and (min-width: 1024px) {
  /* line 402, app/assets/stylesheets/home.scss */
  .c-content__subtitle--no-mb {
    font-size: 17px;
  }
}

/* line 407, app/assets/stylesheets/home.scss */
.c-content__content {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.78;
  color: #818181;
  margin: 0 0 40px 0;
  position: relative;
}

@media screen and (min-width: 1024px) {
  /* line 407, app/assets/stylesheets/home.scss */
  .c-content__content {
    font-size: 18px;
  }
}

/* line 414, app/assets/stylesheets/home.scss */
.c-content__content--small {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
  margin: 0 0 10px 0;
}

@media screen and (min-width: 1024px) {
  /* line 414, app/assets/stylesheets/home.scss */
  .c-content__content--small {
    font-size: 16px;
  }
}

/* line 419, app/assets/stylesheets/home.scss */
.c-content__list {
  list-style: none;
  margin: 0 0 50px;
  padding: 0;
}

/* line 424, app/assets/stylesheets/home.scss */
.c-content__list li {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
  color: #818181;
  counter-increment: steps;
  padding: 0 0 0 55px;
  position: relative;
}

@media screen and (min-width: 1024px) {
  /* line 424, app/assets/stylesheets/home.scss */
  .c-content__list li {
    font-size: 16px;
  }
}

@media screen and (min-width: 1024px) {
  /* line 424, app/assets/stylesheets/home.scss */
  .c-content__list li {
    padding: 0 0 0 70px;
  }
}

/* line 434, app/assets/stylesheets/home.scss */
.c-content__list li:before {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.45;
  content: counter(steps);
  align-items: center;
  color: #00698c;
  background-color: #ffffff;
  border-radius: 40px;
  box-shadow: 2px 0px 7px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  height: 40px;
  margin: 0 20px 0 0;
  min-width: 40px;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
}

@media screen and (min-width: 1024px) {
  /* line 434, app/assets/stylesheets/home.scss */
  .c-content__list li:before {
    font-size: 22px;
  }
}

@media screen and (min-width: 1024px) {
  /* line 434, app/assets/stylesheets/home.scss */
  .c-content__list li:before {
    height: 50px;
    width: 50px;
    border-radius: 50px;
  }
}

/* line 459, app/assets/stylesheets/home.scss */
.c-content__list li + li {
  margin: 30px 0 0 0;
}

/**
   * Store buttons component
   */
/* line 468, app/assets/stylesheets/home.scss */
.c-store-buttons {
  align-items: center;
  margin: 10px 0px 0 -55px;
  flex-direction: column;
  display: flex;
}

@media screen and (min-width: 1024px) {
  /* line 468, app/assets/stylesheets/home.scss */
  .c-store-buttons {
    margin: 20px -10px 0 -10px;
    flex-direction: row;
  }
}

/* line 480, app/assets/stylesheets/home.scss */
.c-store-button {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.55;
  align-items: center;
  text-align: center;
  background-color: #00698c;
  border-radius: 50px;
  box-sizing: border-box;
  color: #ffffff;
  display: flex;
  margin: 10px 0;
  padding: 10px 20px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.25s ease-in-out;
  width: 100%;
}

@media screen and (min-width: 1024px) {
  /* line 480, app/assets/stylesheets/home.scss */
  .c-store-button {
    font-size: 18px;
  }
}

/* line 495, app/assets/stylesheets/home.scss */
.c-store-button > span {
  display: flex;
  flex-direction: row;
  padding-left: 5vw;
}

@media screen and (min-width: 1024px) {
  /* line 495, app/assets/stylesheets/home.scss */
  .c-store-button > span {
    flex-direction: column;
    padding-left: 0;
  }
}

@media screen and (min-width: 1024px) {
  /* line 480, app/assets/stylesheets/home.scss */
  .c-store-button {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    text-align: left;
    margin: 0 10px;
    width: calc(50% - 10px);
    border-radius: 15px;
    box-shadow: 2px 0px 7px 4px rgba(0, 0, 0, 0.1);
  }
}

@media screen and (min-width: 1024px) and (min-width: 1024px) {
  /* line 480, app/assets/stylesheets/home.scss */
  .c-store-button {
    font-size: 17px;
  }
}

/* line 513, app/assets/stylesheets/home.scss */
.c-store-button:hover {
  opacity: 0.75;
}

/* line 517, app/assets/stylesheets/home.scss */
.c-store-button svg {
  margin: 0 15px 0 0;
  flex-shrink: 0;
  height: 24px;
  width: auto;
}

@media screen and (min-width: 1024px) {
  /* line 517, app/assets/stylesheets/home.scss */
  .c-store-button svg {
    height: 32px;
    width: auto;
  }
}

/* line 527, app/assets/stylesheets/home.scss */
.c-store-button svg path {
  fill: #ffffff;
}

/* line 533, app/assets/stylesheets/home.scss */
.c-store-button__label {
  padding-right: 3px;
}

@media screen and (min-width: 1024px) {
  /* line 533, app/assets/stylesheets/home.scss */
  .c-store-button__label {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.7;
    display: block;
    padding-right: 0;
    margin: 0 0 -5px 0;
  }
}

/**
   * Link component
   */
/* line 547, app/assets/stylesheets/home.scss */
.c-link {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.65;
  border-radius: 999px;
  border: 2px solid #00698c;
  color: #00698c;
  display: block;
  margin: 20px 0 0 0;
  padding: 11px 50px;
  pointer-events: none;
  position: relative;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.25s ease-in-out;
}

/* line 561, app/assets/stylesheets/home.scss */
.c-link:hover {
  opacity: 0.75;
}

/* line 565, app/assets/stylesheets/home.scss */
.c-link svg {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

/* line 571, app/assets/stylesheets/home.scss */
.c-link svg path {
  fill: currentColor;
}

/**
   * Flow component
   */
/* line 581, app/assets/stylesheets/home.scss */
.c-flow {
  align-items: center;
  min-height: calc(100vh - 220px);
  padding-top: 110px;
  position: relative;
  width: 50%;
  display: none;
}

@media screen and (min-width: 1024px) {
  /* line 581, app/assets/stylesheets/home.scss */
  .c-flow {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

/* line 596, app/assets/stylesheets/home.scss */
.c-flow__items {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* line 602, app/assets/stylesheets/home.scss */
.c-flow__item {
  display: flex;
  align-items: center;
  padding-left: 65px;
  position: relative;
}

/* line 608, app/assets/stylesheets/home.scss */
.c-flow__item svg {
  margin-right: -40px;
}

/* line 611, app/assets/stylesheets/home.scss */
.c-flow__item .c-flow__item-content-wrap {
  margin-right: -20px;
  flex: 1;
}

/* line 616, app/assets/stylesheets/home.scss */
.c-flow__item:first-child {
  padding-left: 40px;
}

/* line 618, app/assets/stylesheets/home.scss */
.c-flow__item:first-child svg {
  margin-right: 0;
}

/* line 622, app/assets/stylesheets/home.scss */
.c-flow__item:first-child .c-flow__item-content-wrap {
  margin-right: 0px;
}

/* line 627, app/assets/stylesheets/home.scss */
.c-flow__item:last-child {
  padding-left: 25px;
}

/* line 629, app/assets/stylesheets/home.scss */
.c-flow__item:last-child svg {
  margin-right: 0;
}

/* line 633, app/assets/stylesheets/home.scss */
.c-flow__item:last-child .c-flow__item-content-wrap {
  margin-right: 0px;
  padding-left: 20px;
}

/* line 640, app/assets/stylesheets/home.scss */
.c-flow__path {
  position: absolute;
  pointer-events: none;
  left: 38%;
  top: 90%;
}

/* line 647, app/assets/stylesheets/home.scss */
.c-flow__item-image {
  overflow: hidden;
  width: 240px;
  height: 240px;
}

/* line 653, app/assets/stylesheets/home.scss */
.c-flow__slice {
  position: absolute;
  z-index: 2;
  left: -22px;
  top: 0;
  bottom: 0;
  display: none;
}

@media screen and (min-width: 1180px) {
  /* line 653, app/assets/stylesheets/home.scss */
  .c-flow__slice {
    display: block;
  }
}

/* line 665, app/assets/stylesheets/home.scss */
.c-flow__slice svg {
  top: -1px;
  position: absolute;
  height: calc(100% + 1px);
  width: auto;
}

/* line 673, app/assets/stylesheets/home.scss */
.c-flow__slice-mobile {
  display: block;
  margin-top: -35px;
  margin-bottom: 50px;
  width: 100vw;
  margin-left: calc(-1 * (100vw - 570px) / 2);
  position: relative;
}

@media screen and (max-width: 640px) {
  /* line 673, app/assets/stylesheets/home.scss */
  .c-flow__slice-mobile {
    margin-left: -25px;
  }
}

/* line 684, app/assets/stylesheets/home.scss */
.c-flow__slice-mobile svg {
  width: 100%;
  height: auto;
}

@media screen and (min-width: 1024px) {
  /* line 673, app/assets/stylesheets/home.scss */
  .c-flow__slice-mobile {
    display: none;
  }
}

/* line 694, app/assets/stylesheets/home.scss */
.c-flow__arrow-down {
  width: 50px;
  height: 50px;
  border-radius: 50px;
  box-shadow: 0 2px 7px 4px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  margin-left: -25px;
  bottom: -17px;
  background-color: #ffffff;
}

/* line 708, app/assets/stylesheets/home.scss */
.c-flow__arrow-down svg {
  width: 18px;
  height: 18px;
  color: #00698c;
}

/* line 713, app/assets/stylesheets/home.scss */
.c-flow__arrow-down svg path {
  fill: currentColor;
}

/* line 719, app/assets/stylesheets/home.scss */
.c-flow__item-content {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.65;
  color: #818181;
  margin: 0;
}

@media screen and (min-width: 1024px) {
  /* line 719, app/assets/stylesheets/home.scss */
  .c-flow__item-content {
    font-size: 16px;
  }
}

/**
   * Phone component
   */
/* line 729, app/assets/stylesheets/home.scss */
.c-phone {
  background-color: #2a2a2a;
  border-radius: 60px;
  box-shadow: inset 0px -18px 30px 0px rgba(255, 255, 255, 0.12), 0px 3px 9px 0px rgba(0, 0, 0, 0.16), 0px 17px 26px 0px rgba(0, 0, 0, 0.18);
  display: none;
  height: 850px;
  width: 412px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% - 905px), -50%);
}

@media screen and (min-width: 1300px) {
  /* line 729, app/assets/stylesheets/home.scss */
  .c-phone {
    display: block;
  }
}

@media screen and (min-width: 1920px) {
  /* line 729, app/assets/stylesheets/home.scss */
  .c-phone {
    left: -150px;
    transition: left 0.2s ease-in-out;
    transform: translateY(-50%);
  }
}

@media screen and (min-width: 2080px) {
  /* line 756, app/assets/stylesheets/home.scss */
  .c-phone:hover {
    left: -50px;
  }
}

/* line 763, app/assets/stylesheets/home.scss */
.c-phone__screen {
  background-color: #3f3f3f;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 40px;
  height: 812px;
  width: 375px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* line 776, app/assets/stylesheets/home.scss */
.c-phone__screen:before {
  content: '';
  background-color: #2a2a2a;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  display: block;
  height: 30px;
  width: 200px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/* line 791, app/assets/stylesheets/home.scss */
.c-footer {
  display: flex;
  width: 100%;
  justify-content: center;
}

@media screen and (min-width: 1024px) {
  /* line 791, app/assets/stylesheets/home.scss */
  .c-footer {
    justify-content: flex-start;
  }
}

/* line 800, app/assets/stylesheets/home.scss */
.c-footer ul {
  display: inline-block;
  padding: 0;
}

/* line 804, app/assets/stylesheets/home.scss */
.c-footer ul li {
  display: inline-block;
  margin: 0 7px;
}

/* line 808, app/assets/stylesheets/home.scss */
.c-footer ul li:after {
  content: "|";
  font-weight: 300;
  position: relative;
  left: 10px;
  color: #818181;
}

/* line 816, app/assets/stylesheets/home.scss */
.c-footer ul li:last-child:after {
  content: "";
}

/* line 820, app/assets/stylesheets/home.scss */
.c-footer ul li a {
  text-decoration: none;
  color: #818181;
}
