@font-face {
  font-family: 'NATS';
  src: url("../fonts/NATS.ttf") format("truetype");
}
@font-face {
  font-family: 'Lexend';
  src: url("../fonts/Lexend.ttf") format("truetype");
}
@font-face {
  font-family: 'NYCD';
  src: url("../fonts/NothingYouCouldDo.ttf") format("truetype");
}
@font-face {
  font-family: 'Jost';
  src: url("../fonts/Jost.ttf") format("truetype");
}
/* line 1, ../scss/_nav.scss */
.nav {
  height: 60px;
  width: 100%;
  background-color: white;
  color: #343234;
  box-shadow: 0 4px 10px #99999925;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
@media screen and (min-width: 1024px) {
  /* line 1, ../scss/_nav.scss */
  .nav {
    height: 78px;
  }
}
/* line 16, ../scss/_nav.scss */
.nav__container {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 16px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
}
@media screen and (min-width: 1024px) {
  /* line 16, ../scss/_nav.scss */
  .nav__container {
    max-width: 1056px;
  }
}
/* line 32, ../scss/_nav.scss */
.nav__logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* line 37, ../scss/_nav.scss */
.nav__logo img {
  width: 40px;
  height: 40px;
  margin-right: 4px;
}
/* line 43, ../scss/_nav.scss */
.nav__logo a {
  font-family: "NATS", sans-serif;
  font-size: 30px;
  letter-spacing: -0.4px;
  color: #343234;
  text-decoration: none;
}
/* line 52, ../scss/_nav.scss */
.nav__menu {
  font-family: "Jost", sans-serif;
}
/* line 55, ../scss/_nav.scss */
.nav__menu a {
  display: none;
  text-decoration: none;
  color: #343234;
  margin-left: 24px;
  font-size: 18px;
}
@media screen and (min-width: 1024px) {
  /* line 55, ../scss/_nav.scss */
  .nav__menu a {
    display: inline-block;
  }
}
/* line 67, ../scss/_nav.scss */
.nav__menu--mobile {
  height: 0px;
  width: 100%;
  overflow: hidden;
  transition: 0.3s;
  position: absolute;
  left: 0;
  top: 60px;
  background-color: #7EC565;
}
@media screen and (min-width: 1024px) {
  /* line 67, ../scss/_nav.scss */
  .nav__menu--mobile {
    display: none !important;
  }
}
/* line 81, ../scss/_nav.scss */
.nav__menu--mobile--active {
  height: 100vh;
}
/* line 85, ../scss/_nav.scss */
.nav__menu--mobile a {
  font-family: "Lexend", sans-serif;
  display: block;
  text-decoration: none;
  color: white;
  text-align: center;
  font-size: 24px;
  text-transform: uppercase;
  margin-top: 42px;
  font-weight: 300;
}
/* line 98, ../scss/_nav.scss */
.nav__menu__button {
  width: 32px;
  height: 32px;
  background-image: url("../img/menu-icon.svg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: transparent;
}
@media screen and (min-width: 1024px) {
  /* line 98, ../scss/_nav.scss */
  .nav__menu__button {
    display: none;
  }
}
/* line 111, ../scss/_nav.scss */
.nav__menu__button--active {
  background-image: url("../img/close-icon.svg");
}

/* line 1, ../scss/_contact.scss */
.contact {
  width: 100%;
  background-color: #F4F4F4;
  color: #343234;
  padding: 32px 0 64px 0;
}
@media screen and (min-width: 1024px) {
  /* line 1, ../scss/_contact.scss */
  .contact {
    padding: 80px 0;
  }
}
@media screen and (min-width: 1024px) {
  /* line 11, ../scss/_contact.scss */
  .contact__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
/* line 19, ../scss/_contact.scss */
.contact__title {
  font-size: 28px;
  font-weight: 300;
  font-family: "Lexend", sans-serif;
  position: relative;
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  /* line 19, ../scss/_contact.scss */
  .contact__title {
    font-size: 36px;
  }
}
@media screen and (min-width: 1024px) {
  /* line 19, ../scss/_contact.scss */
  .contact__title {
    margin-bottom: 0px;
    padding-bottom: 50px;
    font-size: 40px;
    max-width: 470px;
  }
}
/* line 31, ../scss/_contact.scss */
.contact__title__extra {
  font-family: "NYCD", sans-serif;
  font-size: 36px;
  display: none;
  position: absolute;
  bottom: -30px;
  right: 0;
  transform: rotate(-10deg);
}
@media screen and (min-width: 1024px) {
  /* line 31, ../scss/_contact.scss */
  .contact__title__extra {
    display: block;
  }
}
/* line 45, ../scss/_contact.scss */
.contact__title__arrow {
  display: none;
  width: 200px;
  height: 30px;
  background-image: url("../img/arrow-long.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 200px;
  margin-top: 40px;
}
@media screen and (min-width: 1024px) {
  /* line 45, ../scss/_contact.scss */
  .contact__title__arrow {
    display: block;
  }
}
/* line 61, ../scss/_contact.scss */
.contact__form {
  display: block;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  /* line 61, ../scss/_contact.scss */
  .contact__form {
    background-color: #ededed;
    height: 464px;
    width: 443px;
    border-radius: 40px;
    padding: 48px 64px;
    box-sizing: border-box;
  }
}
/* line 74, ../scss/_contact.scss */
.contact__form__input {
  width: 100%;
  background-color: transparent !important;
  border-bottom: 2px solid #949494;
  margin-bottom: 24px;
  padding: 8px 0;
  color: #343234;
  font-size: 18px;
  font-family: "Lexend", sans-serif;
  font-weight: 300;
}
/* line 85, ../scss/_contact.scss */
.contact__form__input::placeholder {
  color: #949494;
}
/* line 89, ../scss/_contact.scss */
.contact__form__input:focus {
  outline: none;
}
/* line 94, ../scss/_contact.scss */
.contact__form__submit {
  background-color: #343234;
  width: 100%;
  color: white;
  border-radius: 60px;
  font-size: 18px;
  font-family: "Lexend", sans-serif;
  font-weight: 300;
  padding: 16px 0px;
  cursor: pointer;
}
/* line 106, ../scss/_contact.scss */
.contact__form__checkbox {
  margin-right: 8px;
  margin-top: 2px;
}
/* line 111, ../scss/_contact.scss */
.contact__form__submit-wrapper {
  display: flex;
  margin-bottom: 32px;
  color: #949494;
  font-size: 14px;
  font-family: "Lexend", sans-serif;
  font-weight: 300;
  align-items: flex-start;
  margin-top: 8px;
}
/* line 121, ../scss/_contact.scss */
.contact__form__submit-wrapper a {
  color: #7EC565;
  text-decoration: none;
}
/* line 127, ../scss/_contact.scss */
.contact__form__message {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
/* line 136, ../scss/_contact.scss */
.contact__form__message h1 {
  color: #343234;
  font-family: "Lexend", sans-serif;
  font-weight: 300;
  font-size: 28px;
  margin-bottom: 64px;
}
/* line 144, ../scss/_contact.scss */
.contact__form__message img {
  width: 64px;
  margin-bottom: 16px;
}
/* line 149, ../scss/_contact.scss */
.contact__form__message p {
  color: #343234;
  font-family: "Lexend", sans-serif;
  font-weight: 300;
  font-size: 18px;
  margin-bottom: 24px;
  text-align: center;
}
/* line 157, ../scss/_contact.scss */
.contact__form__message p a {
  text-decoration: none;
  color: #7EC565;
}

/* line 1, ../scss/_footer.scss */
.footer {
  width: 100%;
  color: white;
  background-color: #7EC565;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  /* line 1, ../scss/_footer.scss */
  .footer {
    height: 78px;
  }
}
/* line 13, ../scss/_footer.scss */
.footer__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
@media screen and (min-width: 1024px) {
  /* line 13, ../scss/_footer.scss */
  .footer__wrapper {
    flex-direction: row;
  }
}
/* line 24, ../scss/_footer.scss */
.footer__logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* line 29, ../scss/_footer.scss */
.footer__logo img {
  width: 40px;
  height: 40px;
  margin-right: 4px;
}
/* line 35, ../scss/_footer.scss */
.footer__logo a {
  font-family: "NATS", sans-serif;
  font-size: 36px;
  letter-spacing: -0.4px;
  color: white;
  text-decoration: none;
}
/* line 44, ../scss/_footer.scss */
.footer__menu {
  font-family: "Jost", sans-serif;
}
/* line 47, ../scss/_footer.scss */
.footer__menu a {
  text-decoration: none;
  color: white;
  margin-left: 24px;
  font-size: 18px;
  display: block;
  text-align: center;
  margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  /* line 47, ../scss/_footer.scss */
  .footer__menu a {
    display: inline-block;
    margin-bottom: 0px;
  }
}

/* line 1, ../scss/_regulations.scss */
.regulations {
  width: 100%;
  min-height: 800px;
  padding-top: 60px;
  position: relative;
  padding-bottom: 128px;
  color: #343234;
}
@media screen and (min-width: 1024px) {
  /* line 1, ../scss/_regulations.scss */
  .regulations {
    padding-top: 78px;
    padding-bottom: 160px;
  }
}
/* line 14, ../scss/_regulations.scss */
.regulations__title {
  font-size: 28px;
  font-weight: 300;
  font-family: "Lexend", sans-serif;
  margin-top: 64px;
}
@media screen and (min-width: 1024px) {
  /* line 14, ../scss/_regulations.scss */
  .regulations__title {
    font-size: 36px;
  }
}
@media screen and (min-width: 1024px) {
  /* line 14, ../scss/_regulations.scss */
  .regulations__title {
    margin-top: 80px;
  }
}
/* line 23, ../scss/_regulations.scss */
.regulations__undertitle {
  font-size: 18px;
  font-weight: 300;
  font-family: "Lexend", sans-serif;
  margin-top: 32px;
  max-width: 840px;
}
@media screen and (min-width: 1024px) {
  /* line 23, ../scss/_regulations.scss */
  .regulations__undertitle {
    font-size: 24px;
  }
}
/* line 45, ../scss/_typography.scss */
.regulations__undertitle span {
  color: #7EC565;
}
/* line 29, ../scss/_regulations.scss */
.regulations__section {
  margin-top: 64px;
}
/* line 32, ../scss/_regulations.scss */
.regulations__section h1 {
  font-size: 28px;
  font-weight: 300;
  font-family: "Lexend", sans-serif;
  margin-bottom: 32px;
}
@media screen and (min-width: 1024px) {
  /* line 32, ../scss/_regulations.scss */
  .regulations__section h1 {
    font-size: 36px;
  }
}
/* line 37, ../scss/_regulations.scss */
.regulations__section p {
  font-size: 18px;
  font-weight: 300;
  font-family: "Lexend", sans-serif;
  color: #949494;
}
@media screen and (min-width: 1024px) {
  /* line 37, ../scss/_regulations.scss */
  .regulations__section p {
    font-size: 24px;
  }
}
/* line 45, ../scss/_typography.scss */
.regulations__section p span {
  color: #7EC565;
}

/* line 1, ../scss/_section-main.scss */
.section-main {
  width: 100%;
  background-color: #F4F4F4;
  min-height: 800px;
  padding-top: 60px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  /* line 1, ../scss/_section-main.scss */
  .section-main {
    padding-top: 78px;
    min-height: 673px;
  }
}
/* line 13, ../scss/_section-main.scss */
.section-main__content {
  color: #343234;
  position: relative;
  z-index: 20;
}
/* line 18, ../scss/_section-main.scss */
.section-main__content__title {
  font-size: 28px;
  font-weight: 300;
  font-family: "Lexend", sans-serif;
  text-align: center;
  margin-top: 34px;
}
@media screen and (min-width: 1024px) {
  /* line 18, ../scss/_section-main.scss */
  .section-main__content__title {
    font-size: 36px;
  }
}
@media screen and (min-width: 1024px) {
  /* line 18, ../scss/_section-main.scss */
  .section-main__content__title {
    text-align: left;
    margin-top: 88px;
  }
}
/* line 34, ../scss/_section-main.scss */
.section-main__content__description {
  font-size: 18px;
  font-weight: 300;
  font-family: "Lexend", sans-serif;
  text-align: center;
  max-width: 318px;
  margin-top: 34px;
}
@media screen and (min-width: 1024px) {
  /* line 34, ../scss/_section-main.scss */
  .section-main__content__description {
    font-size: 24px;
  }
}
/* line 45, ../scss/_typography.scss */
.section-main__content__description span {
  color: #7EC565;
}
@media screen and (min-width: 420px) {
  /* line 34, ../scss/_section-main.scss */
  .section-main__content__description {
    max-width: 420px;
  }
}
@media screen and (min-width: 1024px) {
  /* line 34, ../scss/_section-main.scss */
  .section-main__content__description {
    text-align: left;
    max-width: 457px;
    margin-top: 22px;
  }
}
/* line 51, ../scss/_section-main.scss */
.section-main__content a {
  font-size: 18px;
  font-weight: 300;
  font-family: "Lexend", sans-serif;
  border-radius: 40px;
  background-color: #7EC565;
  color: white;
  text-align: center;
  width: 242px;
  height: 51px;
  margin-top: 34px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 34px auto 0 auto;
}
@media screen and (min-width: 1024px) {
  /* line 51, ../scss/_section-main.scss */
  .section-main__content a {
    font-size: 24px;
  }
}
/* line 45, ../scss/_typography.scss */
.section-main__content a span {
  color: #7EC565;
}
@media screen and (min-width: 1024px) {
  /* line 51, ../scss/_section-main.scss */
  .section-main__content a {
    width: 349px;
    margin: 34px 0 0 0;
  }
}
/* line 73, ../scss/_section-main.scss */
.section-main__background {
  position: absolute;
  bottom: 0;
  width: 100%;
  left: 0;
  height: 600px;
}
/* line 80, ../scss/_section-main.scss */
.section-main__background__bottom {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}
/* line 87, ../scss/_section-main.scss */
.section-main__background__people {
  width: 342px;
  height: 295px;
  background-image: url("../img/people.svg");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  bottom: 0;
  left: calc(50% - 171px);
}
@media screen and (min-width: 1024px) {
  /* line 87, ../scss/_section-main.scss */
  .section-main__background__people {
    width: 440px;
    height: 380px;
    left: calc(50% + 70px);
  }
}

/* line 1, ../scss/_section-how-it-works.scss */
.section-how-it-works {
  width: 100%;
  background-color: white;
  color: #343234;
  overflow: hidden;
}
/* line 7, ../scss/_section-how-it-works.scss */
.section-how-it-works__title {
  text-align: center;
}
/* line 10, ../scss/_section-how-it-works.scss */
.section-how-it-works__title h1 {
  font-size: 28px;
  font-weight: 300;
  font-family: "Lexend", sans-serif;
  margin: 64px 0 16px 0;
}
@media screen and (min-width: 1024px) {
  /* line 10, ../scss/_section-how-it-works.scss */
  .section-how-it-works__title h1 {
    font-size: 36px;
  }
}
@media screen and (min-width: 1024px) {
  /* line 10, ../scss/_section-how-it-works.scss */
  .section-how-it-works__title h1 {
    margin: 88px 0 16px 0;
  }
}
/* line 19, ../scss/_section-how-it-works.scss */
.section-how-it-works__title p {
  font-size: 18px;
  font-weight: 300;
  font-family: "Lexend", sans-serif;
  max-width: 840px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  /* line 19, ../scss/_section-how-it-works.scss */
  .section-how-it-works__title p {
    font-size: 24px;
  }
}
/* line 45, ../scss/_typography.scss */
.section-how-it-works__title p span {
  color: #7EC565;
}
/* line 26, ../scss/_section-how-it-works.scss */
.section-how-it-works__content {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 48px;
}
@media screen and (min-width: 1024px) {
  /* line 26, ../scss/_section-how-it-works.scss */
  .section-how-it-works__content {
    margin-bottom: 90px;
    margin-top: 80px;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
/* line 40, ../scss/_section-how-it-works.scss */
.section-how-it-works__content__box {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  /* line 40, ../scss/_section-how-it-works.scss */
  .section-how-it-works__content__box {
    margin-bottom: 0;
    flex-direction: column;
    width: 241px;
    justify-content: center;
  }
}
/* line 53, ../scss/_section-how-it-works.scss */
.section-how-it-works__content__box__circle {
  width: 84px;
  height: 84px;
  border-radius: 84px;
  background-color: #7EC565;
  flex-shrink: 0;
  background-image: url("../img/step-1.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 40px;
}
/* line 64, ../scss/_section-how-it-works.scss */
.section-how-it-works__content__box__circle--1 {
  background-image: url("../img/step-1.svg");
}
/* line 68, ../scss/_section-how-it-works.scss */
.section-how-it-works__content__box__circle--2 {
  background-image: url("../img/step-2.svg");
}
/* line 72, ../scss/_section-how-it-works.scss */
.section-how-it-works__content__box__circle--3 {
  background-image: url("../img/step-3.svg");
}
/* line 76, ../scss/_section-how-it-works.scss */
.section-how-it-works__content__box__circle--4 {
  background-image: url("../img/step-4.svg");
}
@media screen and (min-width: 1024px) {
  /* line 53, ../scss/_section-how-it-works.scss */
  .section-how-it-works__content__box__circle {
    background-size: 56px;
    width: 112px;
    height: 112px;
    border-radius: 112px;
  }
}
/* line 88, ../scss/_section-how-it-works.scss */
.section-how-it-works__content__box p {
  font-size: 16px;
  font-weight: 300;
  font-family: "Lexend", sans-serif;
  color: #949494;
  margin-left: 16px;
}
@media screen and (min-width: 1024px) {
  /* line 88, ../scss/_section-how-it-works.scss */
  .section-how-it-works__content__box p {
    font-size: 18px;
  }
}
/* line 59, ../scss/_typography.scss */
.section-how-it-works__content__box p span {
  color: #7EC565;
}
@media screen and (min-width: 1024px) {
  /* line 88, ../scss/_section-how-it-works.scss */
  .section-how-it-works__content__box p {
    text-align: center;
    margin-top: 32px;
    margin-left: 0px;
  }
}
/* line 102, ../scss/_section-how-it-works.scss */
.section-how-it-works__points {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 40px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  /* line 102, ../scss/_section-how-it-works.scss */
  .section-how-it-works__points {
    margin-top: 160px;
  }
}
/* line 113, ../scss/_section-how-it-works.scss */
.section-how-it-works__points h1 {
  margin: 0px 0 24px 0;
  text-align: center;
  font-size: 28px;
  font-weight: 300;
  font-family: "Lexend", sans-serif;
}
@media screen and (min-width: 1024px) {
  /* line 113, ../scss/_section-how-it-works.scss */
  .section-how-it-works__points h1 {
    font-size: 36px;
  }
}
@media screen and (min-width: 1024px) {
  /* line 113, ../scss/_section-how-it-works.scss */
  .section-how-it-works__points h1 {
    position: absolute;
    font-family: "NYCD", sans-serif;
    transform: rotate(-20deg);
    right: 0;
    top: 70px;
  }
}
/* line 127, ../scss/_section-how-it-works.scss */
.section-how-it-works__points p {
  font-size: 18px;
  font-weight: 300;
  font-family: "Lexend", sans-serif;
  max-width: 840px;
  margin: 0 0 20px 0;
  padding-left: 44px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  /* line 127, ../scss/_section-how-it-works.scss */
  .section-how-it-works__points p {
    font-size: 24px;
  }
}
/* line 45, ../scss/_typography.scss */
.section-how-it-works__points p span {
  color: #7EC565;
}
@media screen and (min-width: 1024px) {
  /* line 127, ../scss/_section-how-it-works.scss */
  .section-how-it-works__points p {
    margin: 0 0 32px 0;
    padding-left: 48px;
  }
}
/* line 139, ../scss/_section-how-it-works.scss */
.section-how-it-works__points p::before {
  width: 28px;
  height: 28px;
  position: absolute;
  left: 0;
  top: 0;
  content: " ";
  background-image: url("../img/checkbox.svg");
  background-position: center;
  background-size: 26px;
  background-repeat: no-repeat;
}
/* line 156, ../scss/_section-how-it-works.scss */
.section-how-it-works__example__title {
  font-size: 28px;
  font-weight: 300;
  font-family: "Lexend", sans-serif;
  text-align: center;
  margin: 64px 0 16px 0;
}
@media screen and (min-width: 1024px) {
  /* line 156, ../scss/_section-how-it-works.scss */
  .section-how-it-works__example__title {
    font-size: 36px;
  }
}
@media screen and (min-width: 1024px) {
  /* line 156, ../scss/_section-how-it-works.scss */
  .section-how-it-works__example__title {
    margin: 128px 0 16px 0;
  }
}
/* line 168, ../scss/_section-how-it-works.scss */
.section-how-it-works__example__undertitle {
  font-size: 18px;
  font-weight: 300;
  font-family: "Lexend", sans-serif;
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
  color: #949494;
}
@media screen and (min-width: 1024px) {
  /* line 168, ../scss/_section-how-it-works.scss */
  .section-how-it-works__example__undertitle {
    font-size: 24px;
  }
}
/* line 45, ../scss/_typography.scss */
.section-how-it-works__example__undertitle span {
  color: #7EC565;
}
/* line 176, ../scss/_section-how-it-works.scss */
.section-how-it-works__example__wrapper {
  display: flex;
  flex-direction: column;
  margin: 48px auto 0 auto;
  width: 100%;
  position: relative;
  padding-bottom: 280px;
}
@media screen and (min-width: 1024px) {
  /* line 176, ../scss/_section-how-it-works.scss */
  .section-how-it-works__example__wrapper {
    padding-bottom: 60px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
/* line 191, ../scss/_section-how-it-works.scss */
.section-how-it-works__example__wrapper__extra {
  display: none;
  width: 265px;
}
@media screen and (min-width: 1024px) {
  /* line 191, ../scss/_section-how-it-works.scss */
  .section-how-it-works__example__wrapper__extra {
    display: block;
  }
}
/* line 199, ../scss/_section-how-it-works.scss */
.section-how-it-works__example__wrapper__extra p {
  font-size: 18px;
  font-weight: 300;
  font-family: "Lexend", sans-serif;
  text-align: center;
  margin-bottom: 32px;
  font-weight: 400;
}
@media screen and (min-width: 1024px) {
  /* line 199, ../scss/_section-how-it-works.scss */
  .section-how-it-works__example__wrapper__extra p {
    font-size: 24px;
  }
}
/* line 45, ../scss/_typography.scss */
.section-how-it-works__example__wrapper__extra p span {
  color: #7EC565;
}
/* line 207, ../scss/_section-how-it-works.scss */
.section-how-it-works__example__wrapper__phone {
  position: absolute;
  bottom: -240px;
  left: calc(50% - 170px);
}
@media screen and (min-width: 1024px) {
  /* line 207, ../scss/_section-how-it-works.scss */
  .section-how-it-works__example__wrapper__phone {
    position: relative;
    bottom: auto;
    left: auto;
  }
}
/* line 218, ../scss/_section-how-it-works.scss */
.section-how-it-works__example__wrapper__phone img {
  position: relative;
  width: 340px;
  z-index: 10;
}
/* line 224, ../scss/_section-how-it-works.scss */
.section-how-it-works__example__wrapper__phone div {
  position: absolute;
  top: 50px;
  width: 340px;
  height: 340px;
  background-color: #7EC565;
  border-radius: 340px;
  border: 40px solid #e5f3e0;
  left: calc(50% - 210px);
}
/* line 236, ../scss/_section-how-it-works.scss */
.section-how-it-works__example__wrapper__text {
  display: none;
  font-size: 18px;
  font-weight: 300;
  font-family: "Lexend", sans-serif;
  color: #949494;
  width: 265px;
}
@media screen and (min-width: 1024px) {
  /* line 236, ../scss/_section-how-it-works.scss */
  .section-how-it-works__example__wrapper__text {
    font-size: 24px;
  }
}
/* line 45, ../scss/_typography.scss */
.section-how-it-works__example__wrapper__text span {
  color: #7EC565;
}
@media screen and (min-width: 1024px) {
  /* line 236, ../scss/_section-how-it-works.scss */
  .section-how-it-works__example__wrapper__text {
    display: block;
  }
}

/* line 1, ../scss/_section-why-us.scss */
.section-why-us {
  width: 100%;
  background-color: #F4F4F4;
  color: #343234;
  padding-top: 64px;
}
@media screen and (min-width: 1024px) {
  /* line 1, ../scss/_section-why-us.scss */
  .section-why-us {
    padding-top: 88px;
  }
}
/* line 11, ../scss/_section-why-us.scss */
.section-why-us__title {
  font-size: 28px;
  font-weight: 300;
  font-family: "Lexend", sans-serif;
  text-align: center;
  margin: 0px 0 16px 0;
}
@media screen and (min-width: 1024px) {
  /* line 11, ../scss/_section-why-us.scss */
  .section-why-us__title {
    font-size: 36px;
  }
}
/* line 17, ../scss/_section-why-us.scss */
.section-why-us__undertitle {
  font-size: 18px;
  font-weight: 300;
  font-family: "Lexend", sans-serif;
  text-align: center;
  max-width: 638px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  /* line 17, ../scss/_section-why-us.scss */
  .section-why-us__undertitle {
    font-size: 24px;
  }
}
/* line 45, ../scss/_typography.scss */
.section-why-us__undertitle span {
  color: #7EC565;
}
/* line 24, ../scss/_section-why-us.scss */
.section-why-us__content {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  padding-bottom: 32px;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  /* line 24, ../scss/_section-why-us.scss */
  .section-why-us__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 64px;
  }
}
/* line 38, ../scss/_section-why-us.scss */
.section-why-us__content__box {
  text-align: center;
  max-width: 280px;
  margin-bottom: 24px;
}
/* line 43, ../scss/_section-why-us.scss */
.section-why-us__content__box__title {
  font-size: 18px;
  font-weight: 300;
  font-family: "Lexend", sans-serif;
  margin-bottom: 8px;
}
@media screen and (min-width: 1024px) {
  /* line 43, ../scss/_section-why-us.scss */
  .section-why-us__content__box__title {
    font-size: 24px;
  }
}
/* line 45, ../scss/_typography.scss */
.section-why-us__content__box__title span {
  color: #7EC565;
}
/* line 48, ../scss/_section-why-us.scss */
.section-why-us__content__box__description {
  font-size: 16px;
  font-weight: 300;
  font-family: "Lexend", sans-serif;
  color: #949494;
}
@media screen and (min-width: 1024px) {
  /* line 48, ../scss/_section-why-us.scss */
  .section-why-us__content__box__description {
    font-size: 18px;
  }
}
/* line 59, ../scss/_typography.scss */
.section-why-us__content__box__description span {
  color: #7EC565;
}
@media screen and (min-width: 1024px) {
  /* line 48, ../scss/_section-why-us.scss */
  .section-why-us__content__box__description {
    font-size: 20px;
  }
}
/* line 57, ../scss/_section-why-us.scss */
.section-why-us__content__box img {
  width: 65px;
  height: 65px;
  margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  /* line 57, ../scss/_section-why-us.scss */
  .section-why-us__content__box img {
    margin-bottom: 24px;
    width: 80px;
    height: 80px;
  }
}

/* line 1, ../scss/_section-offer.scss */
.section-offer {
  width: 100%;
  color: #343234;
  padding-top: 64px;
}
@media screen and (min-width: 1024px) {
  /* line 1, ../scss/_section-offer.scss */
  .section-offer {
    padding-top: 88px;
  }
}
/* line 10, ../scss/_section-offer.scss */
.section-offer__title {
  font-size: 28px;
  font-weight: 300;
  font-family: "Lexend", sans-serif;
  margin: 0px 0 16px 0;
}
@media screen and (min-width: 1024px) {
  /* line 10, ../scss/_section-offer.scss */
  .section-offer__title {
    font-size: 36px;
  }
}
/* line 15, ../scss/_section-offer.scss */
.section-offer__undertitle {
  font-size: 18px;
  font-weight: 300;
  font-family: "Lexend", sans-serif;
  max-width: 444px;
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  /* line 15, ../scss/_section-offer.scss */
  .section-offer__undertitle {
    font-size: 24px;
  }
}
/* line 45, ../scss/_typography.scss */
.section-offer__undertitle span {
  color: #7EC565;
}
@media screen and (min-width: 1024px) {
  /* line 15, ../scss/_section-offer.scss */
  .section-offer__undertitle {
    margin-bottom: 80px;
  }
}
/* line 25, ../scss/_section-offer.scss */
.section-offer__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid #99999940;
  margin-bottom: 8px;
}
@media screen and (min-width: 1024px) {
  /* line 25, ../scss/_section-offer.scss */
  .section-offer__row {
    margin-bottom: 32px;
  }
}
/* line 38, ../scss/_section-offer.scss */
.section-offer__row__text__title {
  font-size: 18px;
  font-weight: 300;
  font-family: "Lexend", sans-serif;
  margin-bottom: 4px;
}
@media screen and (min-width: 1024px) {
  /* line 38, ../scss/_section-offer.scss */
  .section-offer__row__text__title {
    font-size: 24px;
  }
}
/* line 45, ../scss/_typography.scss */
.section-offer__row__text__title span {
  color: #7EC565;
}
/* line 43, ../scss/_section-offer.scss */
.section-offer__row__text__undertitle {
  font-size: 16px;
  font-weight: 300;
  font-family: "Lexend", sans-serif;
  color: #949494;
}
@media screen and (min-width: 1024px) {
  /* line 43, ../scss/_section-offer.scss */
  .section-offer__row__text__undertitle {
    font-size: 18px;
  }
}
/* line 59, ../scss/_typography.scss */
.section-offer__row__text__undertitle span {
  color: #7EC565;
}
@media screen and (min-width: 1024px) {
  /* line 43, ../scss/_section-offer.scss */
  .section-offer__row__text__undertitle {
    font-size: 20px;
  }
}
/* line 53, ../scss/_section-offer.scss */
.section-offer__row__price {
  font-size: 18px;
  font-weight: 300;
  font-family: "Lexend", sans-serif;
  font-size: 16px;
}
@media screen and (min-width: 1024px) {
  /* line 53, ../scss/_section-offer.scss */
  .section-offer__row__price {
    font-size: 24px;
  }
}
/* line 45, ../scss/_typography.scss */
.section-offer__row__price span {
  color: #7EC565;
}
@media screen and (min-width: 1024px) {
  /* line 53, ../scss/_section-offer.scss */
  .section-offer__row__price {
    font-size: 30px;
  }
}
/* line 63, ../scss/_section-offer.scss */
.section-offer__extra-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
}
@media screen and (min-width: 1024px) {
  /* line 63, ../scss/_section-offer.scss */
  .section-offer__extra-row {
    margin-top: 80px;
  }
}
/* line 73, ../scss/_section-offer.scss */
.section-offer__extra-row__text {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
@media screen and (min-width: 1024px) {
  /* line 73, ../scss/_section-offer.scss */
  .section-offer__extra-row__text {
    margin-bottom: 32px;
  }
}
/* line 82, ../scss/_section-offer.scss */
.section-offer__extra-row__text__title {
  font-family: "Lexend", sans-serif;
  font-weight: 300;
  width: 172px;
  font-size: 14px;
}
@media screen and (min-width: 420px) {
  /* line 82, ../scss/_section-offer.scss */
  .section-offer__extra-row__text__title {
    font-size: 18px;
    width: 255px;
  }
}
@media screen and (min-width: 1024px) {
  /* line 82, ../scss/_section-offer.scss */
  .section-offer__extra-row__text__title {
    font-size: 24px;
    width: auto;
  }
}
/* line 100, ../scss/_section-offer.scss */
.section-offer__extra-row img {
  width: 32px;
  margin-right: 16px;
}
@media screen and (min-width: 1024px) {
  /* line 100, ../scss/_section-offer.scss */
  .section-offer__extra-row img {
    width: 50px;
    margin-right: 24px;
  }
}
/* line 110, ../scss/_section-offer.scss */
.section-offer__extra-row__price {
  font-size: 20px;
  font-family: "Lexend", sans-serif;
  font-weight: 300;
  color: #7EC565;
}
@media screen and (min-width: 420px) {
  /* line 110, ../scss/_section-offer.scss */
  .section-offer__extra-row__price {
    font-size: 24px;
  }
}
@media screen and (min-width: 1024px) {
  /* line 110, ../scss/_section-offer.scss */
  .section-offer__extra-row__price {
    font-size: 40px;
  }
}

/* line 1, ../scss/_section-faq.scss */
.section-faq {
  width: 100%;
  color: #343234;
  margin-top: 64px;
  padding-bottom: 32px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  /* line 1, ../scss/_section-faq.scss */
  .section-faq {
    margin-top: 80px;
    padding-bottom: 120px;
    padding-top: 80px;
  }
}
/* line 14, ../scss/_section-faq.scss */
.section-faq__title {
  font-size: 28px;
  font-weight: 300;
  font-family: "Lexend", sans-serif;
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  /* line 14, ../scss/_section-faq.scss */
  .section-faq__title {
    font-size: 36px;
  }
}
@media screen and (min-width: 1024px) {
  /* line 14, ../scss/_section-faq.scss */
  .section-faq__title {
    margin-bottom: 40px;
  }
}
/* line 23, ../scss/_section-faq.scss */
.section-faq__box {
  border-bottom: 2px solid #9999993a;
}
/* line 26, ../scss/_section-faq.scss */
.section-faq__box--last-box {
  border-bottom: 0px solid #9999993a;
}
/* line 30, ../scss/_section-faq.scss */
.section-faq__box__question {
  font-size: 18px;
  font-weight: 300;
  font-family: "Lexend", sans-serif;
  margin: 16px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  /* line 30, ../scss/_section-faq.scss */
  .section-faq__box__question {
    font-size: 24px;
  }
}
/* line 45, ../scss/_typography.scss */
.section-faq__box__question span {
  color: #7EC565;
}
/* line 38, ../scss/_section-faq.scss */
.section-faq__box__question span {
  margin-right: 8px;
  font-size: 30px;
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("../img/arrow.svg");
  background-size: 16px;
  background-position: center;
  background-repeat: no-repeat;
}
/* line 51, ../scss/_section-faq.scss */
.section-faq__box__question--active span {
  transform: rotate(180deg);
}
/* line 57, ../scss/_section-faq.scss */
.section-faq__box__answer {
  display: none;
  font-size: 16px;
  font-weight: 300;
  font-family: "Lexend", sans-serif;
  color: #949494;
  margin-bottom: 24px;
}
@media screen and (min-width: 1024px) {
  /* line 57, ../scss/_section-faq.scss */
  .section-faq__box__answer {
    font-size: 18px;
  }
}
/* line 59, ../scss/_typography.scss */
.section-faq__box__answer span {
  color: #7EC565;
}
@media screen and (min-width: 1024px) {
  /* line 57, ../scss/_section-faq.scss */
  .section-faq__box__answer {
    margin-left: 100px;
    padding-left: 16px;
    border-left: 2px solid #42ac1b7c;
  }
}
/* line 72, ../scss/_section-faq.scss */
.section-faq__special-text {
  font-family: "NYCD", sans-serif;
  position: absolute;
  bottom: 40px;
  display: none;
  font-size: 36px;
  transform: rotate(20deg);
  left: calc(50% - 510px);
}
@media screen and (min-width: 1024px) {
  /* line 72, ../scss/_section-faq.scss */
  .section-faq__special-text {
    display: block;
  }
}

/* line 14, ../scss/style.scss */
html {
  scroll-behavior: smooth;
}

/* line 18, ../scss/style.scss */
* {
  border: 0;
  padding: 0;
  margin: 0;
}

/* line 24, ../scss/style.scss */
.container {
  width: 100%;
  max-width: 350px;
  padding: 0 16px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (min-width: 420px) {
  /* line 24, ../scss/style.scss */
  .container {
    max-width: 452px;
  }
}
@media screen and (min-width: 1024px) {
  /* line 24, ../scss/style.scss */
  .container {
    max-width: 1056px;
  }
}

@media screen and (min-width: 1024px) {
  /* line 42, ../scss/style.scss */
  .mobile {
    display: none;
  }
}
