/**
 * HERO SECTION
 */
.hero {
  width: 100%;
  background: var(--purple);
}

.hero-wrapper {
  height: 100%;
  max-width: var(--contentMaxWidth);
  margin: 0 auto;
  background: var(--purple);
  padding: 25px;
  color: var(--white);
  background-image: url("../assets/clouds.svg");
  background-position: 0px 100px;
  background-size: contain;
  background-repeat: no-repeat;
}

.hero-wrapper .city-illustration {
  display: none;
}

.hero-wrapper .hero-texts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}

.hero-wrapper .hero-texts .primary-btn {
  width: 100%;
}

.hero-wrapper .hero-texts img,
.hero-wrapper .hero-texts svg {
  width: clamp(100px, 100%, 205px);
  max-height: 100%;
}

@media screen and (min-width: 768px) {
  .hero-wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    gap: 50px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-bottom: 100px;
  }
  .hero-wrapper .hero-texts .primary-btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .hero-wrapper .city-illustration {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 100%;
    width: 100%;
  }
  .hero-wrapper .city-illustration * {
    width: clamp(100px, 100%, 50vw);
    max-height: 100%;
  }
}

/**
 * CARD SECTION
 */
.cards {
  position: relative;
  width: 100%;
  padding: 25px 15px;
  background-image: url("../assets/bg-illustration-mobile.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}

.cards .illustration {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 3;
  width: clamp(100px, 50vw, 200px);
}

.cards .illustration img {
  max-height: 100%;
  width: 100%;
}

.cards .card-items {
  width: 60%;
  height: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: (minmax(10px, 1fr))[3];
      grid-template-rows: repeat(3, minmax(10px, 1fr));
  -ms-flex-line-pack: center;
      align-content: center;
  gap: 20px;
}

.cards .card-items .card {
  border-radius: var(--card-radius);
  color: var(--white);
  background: var(--pink);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 15px;
}

@media screen and (min-width: 768px) {
  .cards {
    z-index: 5;
    bottom: 90px;
    background-image: none;
    max-width: var(--contentMaxWidth);
    margin: 0 auto;
  }
  .cards .illustration {
    display: none;
  }
  .cards .card-items {
    width: 100%;
    height: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (minmax(10px, 1fr))[3];
        grid-template-columns: repeat(3, minmax(10px, 1fr));
    -ms-grid-rows: 1fr;
        grid-template-rows: 1fr;
    -ms-flex-line-pack: center;
        align-content: center;
    gap: 20px;
  }
}

/**
 * SCORE SECTION
 */
.score {
  max-width: var(--contentMaxWidth);
  margin: 0 auto;
}

.score-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px;
  width: 100%;
}

.score-wrapper .chart-illustration {
  padding-top: 25px;
}

.score-wrapper .chart-illustration img {
  max-height: 100%;
  width: 100%;
}

.score-wrapper .score-info {
  width: 100%;
  color: var(--purple);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.score-wrapper .primary-btn {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .score {
    position: relative;
    bottom: 60px;
  }
  .score-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
  }
  .score-wrapper > :first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33%;
            flex: 0 0 33%;
  }
  .score-wrapper .primary-btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

/**
 * HOW-IT-WORKS SECTION
 */
.how-it-works {
  width: 100%;
  background: #7132b41a;
}

.how-it-works-wrapper {
  max-width: var(--contentMaxWidth);
  margin: 0 auto;
  padding: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  gap: 10px;
  color: var(--purple);
}

.how-it-works-wrapper .cards-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
      grid-template-columns: 1fr;
  -ms-grid-rows: (minmax(10px, 1fr))[3];
      grid-template-rows: repeat(3, minmax(10px, 1fr));
  gap: 10px;
}

.how-it-works-wrapper .cards-container .card {
  border-radius: var(--card-radius);
  border: 1px solid var(--purple);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px;
}

.how-it-works-wrapper .cards-container .card .content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 1fr;
      grid-template-columns: auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.how-it-works-wrapper .cards-container .card .content .circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--purple);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
  color: var(--white);
  font-weight: bold;
}

.how-it-works-wrapper .cards-container .card img {
  max-height: 100%;
  width: 100%;
}

.how-it-works-wrapper .cta-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.how-it-works-wrapper .primary-btn {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .how-it-works {
    padding-bottom: 50px;
  }
  .how-it-works-wrapper .cards-container {
    -ms-grid-columns: (minmax(10px, 1fr))[3];
        grid-template-columns: repeat(3, minmax(10px, 1fr));
    -ms-grid-rows: 1fr;
        grid-template-rows: 1fr;
  }
  .how-it-works-wrapper .cta-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .how-it-works-wrapper .cta-bottom .primary-btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

/**
 * SHOW-OFF SECTION
 */
.show-off {
  width: 100%;
}

.show-off-wrapper {
  max-width: var(--contentMaxWidth);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  width: 100%;
  padding: 15px;
  text-align: center;
  color: var(--pink);
}

.show-off-wrapper .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.show-off-wrapper .primary-btn {
  width: 100%;
}

.show-off-wrapper .devices {
  padding: 15px;
  background-image: url("../assets/Elipses.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center left;
}

.show-off-wrapper .devices img {
  max-height: 100%;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .show-off {
    background-image: url("../assets/Elipses.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right;
    padding-bottom: 50px;
  }
  .show-off-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 30px;
  }
  .show-off-wrapper .primary-btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .show-off-wrapper > :last-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
    background-image: none;
  }
}

/**
 * REGISTER SECTION
 */
.register {
  width: 100%;
  background-color: var(--purple);
}

.register-wrapper {
  max-width: var(--contentMaxWidth);
  margin: 0 auto;
  padding: 15px;
  background: var(--purple);
  color: var(--yellow);
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.register-wrapper .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.register-wrapper .illustration {
  padding: 15px;
}

.register-wrapper img {
  max-height: 100%;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .register-wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .register-wrapper > :first-child {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
            flex: 0 0 30%;
  }
}
/*# sourceMappingURL=landing.css.map */