/* app/assets/theme/views/pages/home/_about.css */
.about {
  margin: 80px 0;
  padding: 10px 0 60px;
  background-color: var(--purple8);
  background-size: 780px;
  background-position: -100px 0;
  background-repeat: no-repeat;
  color: var(--white);
  position: relative;
}
@media (min-width: 321px) {
  .about {
    padding: 10px 10px 60px;
  }
}
@media (min-width: 768px) {
  .about {
    background-size: contain;
    background-position: 0 0;
  }
}
@media (min-width: 1025px) {
  .about {
    background-size: cover;
  }
}
.about .container {
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--desktop);
  width: 98%;
  position: relative;
}
@media (min-width: 768px) and (max-width: 768px) {
  .about .container {
    padding-left: 270px;
  }
}
@media (min-width: 769px) {
  .about .container {
    padding-left: 350px;
  }
}
.about h2 {
  color: var(--white);
  margin: 215px 0 0;
}
@media (min-width: 425px) {
  .about h2 {
    margin: 0;
    padding: 90px 0 0 176px;
    height: 200px;
  }
}
@media (min-width: 768px) {
  .about h2 {
    height: auto;
    padding: 50px 0 0;
  }
}
.about blockquote {
  margin: 20px 0;
  opacity: 0.8;
  font-size: 17px;
  line-height: 1.4;
}
.about blockquote p {
  margin-bottom: 20px;
}
.about blockquote span {
  font: 22px cursive;
  line-height: 0;
}
.about blockquote a {
  color: var(--white);
  text-decoration: underline;
}
.about p {
  margin: 0;
}
.about p strong {
  font-size: 20px;
}
.about p small {
  opacity: 0.8;
  font-size: 14px;
}
.about ul {
  list-style: none;
  margin: 30px 0 10px;
  padding: 0;
}
.about ul li {
  display: inline-block;
  margin-right: 15px;
}
@media (min-width: 768px) {
  .about ul li {
    margin-right: 30px;
  }
}
.about ul li:last-child {
  margin-right: 0;
}
@media (max-width: 767px) {
  .about ul li img {
    width: 70px;
    height: auto;
  }
}
.about .button {
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 3px;
  appearance: none;
  transition: background-color ease-in-out 0.15s;
  cursor: pointer;
  box-shadow: var(--block-shadow-min);
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  border: 1px solid transparent;
  background-color: transparent;
  color: var(--white);
  box-shadow: none;
  border: 1px solid var(--white);
  margin-top: 40px;
  font-size: 15px;
}
.about .button:hover {
  background-color: var(--link-hover-color);
  color: var(--white);
}
.about .button:disabled {
  background-color: var(--gray4);
  font-weight: 300;
  cursor: not-allowed;
  color: var(--gray6);
  box-shadow: none;
}
.about .button:disabled,
.about .button:hover {
  background-color: var(--gray3);
  color: var(--primary-color);
}
.about__fade {
  background-image: linear-gradient(rgba(50, 42, 52, 0) 20%, var(--purple8) 60%);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}
@media (min-width: 1024px) {
  .about__fade {
    display: none;
  }
}

/* app/assets/theme/views/pages/home/_body.css */
body {
  margin: 0;
}
@media (min-width: 768px) {
  body {
    background-image: url(/images/speech_bubble.svg), url(/images/speech_bubble2.svg);
    background-repeat: no-repeat, no-repeat;
    background-position: -100px 700px, right 1500px;
    background-size: 680px;
  }
}
@media (min-width: 1024px) {
  body {
    background-position: -100px 300px, right 1200px;
    background-size: 1000px;
  }
}
@media (min-width: 1440px) {
  body {
    background-position: -100px 300px, right 1100px;
  }
}

/* app/assets/theme/views/pages/home/_bullets.css */
.bullets {
  text-align: center;
}
@media (min-width: 768px) {
  .bullets {
    text-align: left;
    margin: 0 0 30px;
  }
}
@media (min-width: 1024px) {
  .bullets {
    margin: 20px 0 0;
  }
}
.bullets .container {
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--desktop);
  width: 98%;
}
@media (min-width: 1024px) {
  .bullets .container {
    padding: 0 70px;
  }
}
@media (min-width: 768px) {
  .bullets .row {
    display: flex;
  }
}
@media (min-width: 768px) {
  .bullets .row div:first-child {
    width: 450px;
    margin-right: 50px;
  }
}
@media (min-width: 1024px) {
  .bullets .row div:first-child {
    width: 300px;
    margin-right: 100px;
  }
}
.bullets h2 {
  font-size: 18px;
  margin-bottom: 36px;
  color: var(--purple6);
}
@media (min-width: 768px) {
  .bullets h2 {
    margin-bottom: 0;
    font-size: 24px;
    text-align: right;
  }
}
@media (min-width: 1024px) {
  .bullets h2 {
    font-size: 28px;
  }
}
.bullets h3 {
  font-size: 20px;
}
.bullets p {
  border-bottom: 1px solid var(--gray4);
  padding-bottom: 20px;
}
.bullets p:last-child {
  border: none;
}

/* app/assets/theme/views/pages/home/_hero.css */
.hero {
  background: var(--purple8) url(/images/home_hero.jpg) no-repeat center;
  width: 100%;
  display: flex;
  position: relative;
  background-size: cover;
  color: var(--white);
  z-index: 97;
}
.hero h1,
.hero h2,
.hero h3 {
  font-weight: 300;
  color: var(--white);
  text-shadow: 0 0 4px rgba(56, 41, 60, 0.4);
}
.hero h1 {
  margin-top: 100px;
  font-weight: 500;
  line-height: 1.2;
  font-size: 36px;
}
@media (min-width: 321px) {
  .hero h1 {
    font-size: 38px;
  }
}
@media (min-width: 768px) {
  .hero h1 {
    font-size: 44px;
    margin-top: 140px;
  }
}
@media (min-width: 1024px) {
  .hero h1 {
    font-size: 62px;
  }
}
.hero h2 {
  font-size: 20px;
  max-width: 700px;
  margin: 20px auto;
  line-height: 1.3;
}
@media (min-width: 425px) {
  .hero h2 {
    font-size: 22px;
  }
}
@media (min-width: 768px) {
  .hero h2 {
    font-size: 24px;
  }
}
.hero h3 {
  font-size: 18px;
  margin-top: 50px;
  opacity: 0.8;
}
@media (min-width: 425px) {
  .hero h3 {
    margin-top: 30px;
  }
}
@media (min-width: 1024px) {
  .hero h3 {
    margin-top: 0;
  }
}
.hero-container {
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--desktop);
  width: 98%;
  position: relative;
  text-align: center;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .hero-container {
    margin-bottom: 100px;
  }
}
.hero-cta {
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 3px;
  appearance: none;
  transition: background-color ease-in-out 0.15s;
  cursor: pointer;
  box-shadow: var(--block-shadow-min);
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  border: 1px solid transparent;
  font-size: 22px;
  padding: 14px 20px 12px 20px;
  font-weight: 300;
  margin-top: 15px;
  box-shadow: var(--floating-shadow);
}
.hero-cta:hover {
  background-color: var(--link-hover-color);
  color: var(--white);
}
.hero-cta:disabled {
  background-color: var(--gray4);
  font-weight: 300;
  cursor: not-allowed;
  color: var(--gray6);
  box-shadow: none;
}
.hero-cta i {
  margin-right: 16px;
}
.hero-nav_fade {
  height: 276px;
  background-image:
    linear-gradient(
      -180deg,
      rgba(50, 42, 52, 0.5) 0%,
      rgba(50, 42, 52, 0) 76%);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.hero-bg_fade {
  background-color: var(--purple8);
  opacity: 0.68;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

/* app/assets/theme/views/pages/home/_how.css */
.how {
  margin-bottom: 80px;
  color: var(--purple6);
}
.how h2 {
  text-align: center;
  font-size: 36px;
}
.how .container {
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--desktop);
  width: 98%;
}
.how .container > a {
  margin-top: 30px;
  display: block;
  text-align: center;
}
.how .column {
  padding: 14px 0 0;
}
@media (min-width: 1024px) {
  .how .column {
    padding: 14px 14px 0;
  }
}
.how .column:first-child {
  padding-left: 0;
}
.how .column:last-child {
  padding-right: 0;
}
.how__card {
  padding: 0 20px;
  background-color: var(--white);
  box-shadow: 0 1px 10px 0 rgba(83, 55, 71, 0.1);
  border-radius: 3px;
  margin: 0 auto;
  min-height: 100%;
}
@media (min-width: 321px) {
  .how__card {
    padding: 0 30px;
  }
}
@media (min-width: 425px) {
  .how__card {
    padding: 0 40px;
  }
}
@media (min-width: 768px) {
  .how__card {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .how__card {
    display: block;
  }
}
.how__card h3 {
  font-size: 22px;
  margin: 6px 0 18px;
}
.how__card p {
  font-weight: 300;
  color: var(--gray7);
}
.how__card.how__card_1 div:first-child {
  background-image: url(/images/how_1.svg);
}
.how__card.how__card_2 div:first-child {
  background-image: url(/images/how_2.svg);
}
.how__card.how__card_3 div:first-child {
  background-image: url(/images/how_3_new.svg);
}
.how__card > div:first-child {
  background: var(--white) url(/images/how_1.svg) no-repeat center;
  width: 100%;
  height: 180px;
  padding-top: 50px;
}
.how__card > div:last-child {
  padding-bottom: 30px;
}

/* app/assets/theme/views/pages/home/_navigation.css */
.nav_scrolled {
  background: transparent;
  box-shadow: none;
  z-index: 98;
  position: absolute;
  transition: top 400ms ease 0s;
}
.nav_scrolled .nav__logo {
  background: transparent url(/images/logo_white.png) no-repeat;
  background-size: contain;
  background-position: 0 10px;
  display: block;
}
.nav_scrolled .nav__logo img {
  visibility: hidden;
}
@media (max-width: 767px) {
  .nav_scrolled button,
  .nav_scrolled a {
    color: var(--white);
  }
}
.nav_scrolled .nav__link {
  color: var(--white);
}
.nav_scrolled .nav__link::before {
  background-color: var(--purple2);
}
.nav_scrolled .nav__link_login {
  color: var(--white);
  border-color: var(--white);
}
.nav_scrolled .nav__link_login:hover {
  border-color: var(--purple2);
  background-color: var(--purple2);
}
.nav_scrolled .nav__link_icon {
  color: var(--white);
}
.nav_scrolled .nav__link_icon:hover {
  border-color: var(--purple2);
  background-color: var(--purple2);
}
body > nav:not(.nav_scrolled) {
  position: fixed;
  z-index: 97;
}

/* app/assets/theme/views/pages/home/_newsletter.css */
.newsletter {
  margin: 30px 0 100px;
  background-color: var(--blue4);
}
.newsletter .container {
  padding: 60px 10px;
  position: relative;
}
@media (min-width: 321px) {
  .newsletter .container {
    padding: 60px 30px;
  }
}
@media (min-width: 425px) {
  .newsletter .container {
    padding: 60px;
  }
}
@media (min-width: 1024px) {
  .newsletter .container {
    padding: 60px 10px;
  }
}
.newsletter .container .row {
  align-items: flex-start;
}
.newsletter .container .column:first-child {
  color: var(--black);
  font-size: 20px;
}
.newsletter .container .column:last-child {
  padding-top: 20px;
}
@media (min-width: 1024px) {
  .newsletter .container .column:last-child {
    padding-left: 40px;
    padding-top: 0;
  }
}
.newsletter input[type=email] {
  color: var(--input-color);
  background-color: var(--input-background);
  font-size: var(--input-font-size);
  font-weight: 300;
  line-height: 1.25rem;
  width: 100%;
  border-radius: 2px;
  border: 1px solid var(--input-border-color);
  transition: var(--input-transition);
  display: block;
  padding: 0.5rem;
  background-image: none;
  background-clip: padding-box;
}
.newsletter input[type=email]:hover:not(:disabled) {
  border-color: var(--input-hover-border-color);
}
.newsletter input[type=email]:focus {
  color: var(--input-color);
  background-color: var(--input-background);
  border-color: var(--input-hover-border-color);
  outline: none;
}
.newsletter input[type=email]:disabled,
.newsletter input[type=email][readonly] {
  background-color: var(--input-disabled-background);
  color: var(--input-disabled-color);
  cursor: not-allowed;
}
.newsletter input[type=email]::placeholder {
  color: var(--gray5);
  opacity: 1;
}
.newsletter input[type=submit] {
  background-color: var(--primary-color);
  color: var(--white);
  border-radius: 3px;
  appearance: none;
  transition: background-color ease-in-out 0.15s;
  cursor: pointer;
  box-shadow: var(--block-shadow-min);
  display: inline-block;
  text-align: center;
  white-space: nowrap;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  border: 1px solid transparent;
}
.newsletter input[type=submit]:hover {
  background-color: var(--link-hover-color);
  color: var(--white);
}
.newsletter input[type=submit]:disabled {
  background-color: var(--gray4);
  font-weight: 300;
  cursor: not-allowed;
  color: var(--gray6);
  box-shadow: none;
}
.newsletter .input {
  margin-bottom: 10px;
}
.newsletter .input__hint {
  color: var(--purple6);
}

/* app/assets/theme/views/pages/home/_rocket.css */
.rocket {
  margin: 0 0 80px;
  text-align: center;
  color: var(--purple6);
}
@media (min-width: 1024px) {
  .rocket {
    margin: 40px 0 120px;
  }
}
.rocket h2 {
  font-size: 36px;
  margin: 20px 0 6px;
}
.rocket h3 {
  font-size: 20px;
  font-weight: 300;
  margin: 0 0 30px;
}

/* app/views/pages/home.css */
/*# sourceMappingURL=home.css.map */