/* app/views/landing_pages/index.css */
main {
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--desktop);
  width: 98%;
}
h1 {
  font-weight: 100;
  font-size: 32px;
  margin: 10px 0 30px;
}
h2 {
  text-align: center;
  font-size: 28px;
  margin: 20px 0 6px;
}
h3 {
  margin-bottom: 22px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--gray4);
}
h4 {
  font-size: 22px;
  text-align: center;
  font-weight: 300;
  margin: 0 0 30px;
}
.lists {
  padding: 30px 0 0;
}
@media (min-width: 768px) {
  .lists {
    display: flex;
    padding-bottom: 50px;
  }
}
@media (min-width: 1024px) {
  .lists {
    padding: 30px 40px 50px;
  }
}
.lists section {
  flex: 1;
  margin: 0 0 45px;
}
.lists section:first-child {
  margin-left: 0;
}
.lists section:last-child {
  margin-right: 0;
}
@media (min-width: 768px) {
  .lists section {
    margin: 0 20px;
  }
}
.lists ul {
  margin: 0;
  padding: 0;
}
.lists li {
  list-style: none;
  margin: 8px 0 0;
}
.lists li i {
  position: relative;
  color: var(--green2);
  transition: left 0.2s ease-in-out 0s;
}
.lists li:hover i {
  left: 2px;
}
.lists li.child {
  margin-left: 20px;
  margin-top: 3px;
}
.hero {
  background-color: var(--purple1);
  color: var(--white);
  padding: 60px 0 50px;
}
.hero > div {
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--desktop);
  width: 98%;
}
/*# sourceMappingURL=index.css.map */