@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
html {
  font-size: 62.5%;
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (max-width: 37.5em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (min-width: 112.5em) {
  html {
    font-size: 75%;
  }
}
body {
  background: #ebcbf7;
  background: linear-gradient(135deg, #ebcbf7 0%, white 42%) no-repeat;
  box-sizing: border-box;
  font-family: "DM Sans", sans-serif;
}
.signup-body {
  background: linear-gradient(90deg, #fdfcf9, #f7ebf9 5%, #f7ebf9 95%, #fdfcf9);
}
li {
  list-style-type: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  width: 100%;
}
.lead {
  font-size: 1.6rem;
  color: #6b7280;
  margin-bottom: 1rem;
}
.mb-1 {
  margin-bottom: 1rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
.heading-primary {
  font-size: 5rem;
  line-height: 1.1;
}
.heading-secondary {
  font-size: 4rem;
  line-height: 1.1;
}
.heading-tertiary {
  font-size: 1.6rem;
  font-weight: 500;
}
.link {
  font-weight: 700;
}
.hamburger-box {
  display: none;
  cursor: pointer;
}
@media only screen and (max-width: 37.5em) {
  .hamburger-box {
    display: block;
  }
}
.sidebar {
  position: fixed;
  inset: 0;
  background-color: #fff;
  padding: 4rem;
  transform: rotate(-105deg) translateY(-100%);
  transition: all 0.3s ease-in-out;
  transform-origin: 50% 0%;
  opacity: 0;
}
.sidebar .logo-box {
  width: 18rem;
}
.sidebar__menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 2.5rem;
}
.sidebar__item {
  margin: 1rem 0;
}
.sidebar__link {
  display: block;
  font-size: 2.5rem;
}
.sidebar .btn {
  margin-top: 2rem;
  color: #fff;
}
.sidebar .close {
  position: absolute;
  top: 4rem;
  right: 4rem;
  color: #664efc;
  cursor: pointer;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  .sidebar {
    display: none;
  }
}
.show {
  opacity: 100%;
  transform: rotate(0) translateY(0);
}
.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.highlight--white {
  font-weight: 700;
  color: #fff;
}
.highlight--blue {
  font-size: 1.6rem;
  color: #1d4ed8;
}
.highlight--purple {
  color: #5136fa;
  text-decoration: underline;
}
.btn {
  background-color: #664efc;
  padding: 1rem 1.25rem;
  border-radius: 3px;
  font-size: 1.6rem;
}
.btn__nav {
  margin-left: 0.5rem;
  color: #fff;
}
.btn__form {
  border: none;
  width: 100%;
  background-color: #664efc;
  color: #fff;
  font-size: 1.8rem;
  padding: 1.25rem 1.5rem;
}
.container {
  max-width: 137rem;
  margin: 0 auto;
  padding: 0 3rem;
  min-height: 100vh;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 4rem 0;
}
.header__back-home-box {
  display: flex;
  flex-direction: column;
}

@media only screen and (max-width: 600px) {
  .header__back-home {
    display: none;
  }
}
@media only screen and (max-width: 37.5em) {
  .main-nav {
    display: none;
  }
}
.main-nav__list {
  font-size: 1.7rem;
}
.nav__link {
  padding: 0 1.2rem;
}
.section-1 {
  display: flex;
  justify-content: center;
  margin-bottom: 8rem;
}
@media only screen and (max-width: 56.25em) {
  .section-1 {
    flex-direction: column-reverse;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 2rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .section-2 {
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 37.5em) {
  .section-3 {
    flex-direction: column;
  }
}
.section-4 {
  display: grid;
  grid-template-columns: 55% 45%;
  justify-content: center;
  font-size: 1.6rem;
  grid-gap: 2rem;
  padding: 1rem;
}
@media screen and (max-width: 800px) {
  .section-4 {
    grid-template-columns: 1fr;
  }
}
.section-4 li {
  padding: 1rem;
  margin: 2rem 0;
}
.section-4 .emoji {
  display: inline-block;
  font-size: 2rem;
}
.section__text {
  padding: 3rem;
}
.section__form {
  border-radius: 8px;
  padding: 3rem 5rem;
  background-color: #fff;
}
.section__form input {
  margin: 1rem 0;
  padding: 1.8rem;
  border-radius: 5px;
  font-family: inherit;
  border: 1px solid #bec5d3;
}
.section__form input[type="checkbox"] {
  display: flex;
}
.section__form input::-moz-placeholder {
  font-size: 1.8rem;
}
.section__form input:-ms-input-placeholder {
  font-size: 1.8rem;
}
.section__form input::placeholder {
  font-size: 1.8rem;
}
.form-group {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin: 2rem 0;
  font-weight: 700;
}
.hero-section__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.5rem;
  margin-top: 8rem;
}
@media only screen and (max-width: 56.25em) {
  .hero-section__text {
    margin-top: 2rem;
  }
}
.hero-section__img {
  width: 65%;
}
@media only screen and (max-width: 56.25em) {
  .hero-section__img {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 37.5em) {
  .hero-section__img {
    width: 100%;
  }
}
.section-2__img,
.section-3__img {
  width: 60%;
  margin: 5rem;
}
@media only screen and (max-width: 37.5em) {
  .section-2__img,
  .section-3__img {
    width: 80%;
  }
}
@media only screen and (max-width: 56.25em) {
  .section-2__img,
  .section-3__img {
    width: 100%;
  }
}
.footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 1.6rem;
  flex-wrap: wrap;
}
.footer li {
  color: #6b7280;
  margin: 0.5rem 0;
}
.footer div {
  padding: 0.5rem;
  margin: 2rem;
}
@media only screen and (max-width: 37.5em) {
  .footer div {
    margin: 1rem;
  }
}
.footer .indiebrew {
  flex-basis: 40%;
}
@media only screen and (max-width: 56.25em) {
  .footer .indiebrew {
    flex-basis: 30%;
  }
}
@media only screen and (max-width: 37.5em) {
  .footer .indiebrew {
    flex-basis: 100%;
    margin-top: 3rem;
  }
}
