﻿@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
html {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
}
button {
  cursor: pointer;
}
a {
  text-decoration: none;
}
li {
  list-style: none;
}
input {
  border: none;
}
.btn {
  font-size: 0.875rem;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  text-transform: capitalize;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  border: none;
  outline: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}
.btn__filled {
  background-color: #673ab7;
  color: #ffffff;
}
.btn__filled:hover {
  background-color: #5a33a0;
}
.btn__filled:focus {
  -webkit-box-shadow: inset 0 0 0 2px #1f1f1f;
          box-shadow: inset 0 0 0 2px #1f1f1f;
}
.btn__filled:active {
  background-color: #4d2b89;
}
.btn__outlined {
  background-color: transparent;
  color: #673ab7;
  -webkit-box-shadow: inset 0 0 0 0.125rem #673ab7;
          box-shadow: inset 0 0 0 0.125rem #673ab7;
}
.btn__outlined:hover {
  color: #ffffff;
  background-color: #673ab7;
}
.btn__outlined:focus {
  color: #ffffff;
  background-color: #673ab7;
  -webkit-box-shadow: inset 0 0 0 2px #1f1f1f;
          box-shadow: inset 0 0 0 2px #1f1f1f;
}
.btn__outlined:active {
  color: #ffffff;
  background-color: #5a33a0;
}
.btn__ghost {
  background-color: transparent;
  color: #673ab7;
}
.btn__ghost:hover {
  background-color: rgba(31, 31, 31, 0.08);
}
.btn__ghost:focus {
  background-color: rgba(31, 31, 31, 0.12);
}
.btn__ghost:active {
  background-color: rgba(31, 31, 31, 0.16);
}
.btn__icon-only {
  font-size: 1.25rem;
  width: 2.5rem;
  height: 2.5rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.375rem;
  border-radius: 50%;
  background-color: transparent;
  color: themed("buttonIconOnlyColor");
}
.btn__icon-only:hover {
  background-color: rgba(31, 31, 31, 0.08);
}
.btn__icon-only:focus {
  background-color: rgba(31, 31, 31, 0.12);
}
.btn__icon-only:active {
  background-color: rgba(31, 31, 31, 0.16);
}
.body {
  font-family: "Poppins", sans-serif;
  height: 100vh;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 1fr auto;
      grid-template-rows: auto 1fr auto;
      grid-template-areas: "header"
 "main"
 "footer";
}
.header {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: header;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  -webkit-transition: -webkit-box-shadow 500ms ease 0s;
  transition: -webkit-box-shadow 500ms ease 0s;
  transition: box-shadow 500ms ease 0s;
  transition: box-shadow 500ms ease 0s, -webkit-box-shadow 500ms ease 0s;
  background-color: #f1edf9;
}
.header__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto auto;
      grid-template-columns: auto auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.header__solid {
  -webkit-box-shadow: 0 3px 6px rgba(31, 31, 31, 0.24);
          box-shadow: 0 3px 6px rgba(31, 31, 31, 0.24);
}
.content-container {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.brand a {
  display: inline-block;
}
.brand a img {
  width: 2.5rem;
  height: 2.5rem;
  vertical-align: middle;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.12);
}
.hide {
  display: none;
}
.nav {
  position: fixed;
  top: 0;
  right: -12rem;
  height: 100%;
  white-space: nowrap;
  width: 12rem;
  background-color: #ffffff;
  -webkit-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.nav__close {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0.75rem 1.5rem;
}
.nav__active {
  right: 0;
}
.nav__list {
  padding: 1.5rem 0.75rem;
  display: -ms-grid;
  display: grid;
  grid-gap: 0.75rem;
}
.nav__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.btn__login, .btn__signup {
  width: 100%;
  text-align: center;
}
.btn__create-account {
  display: inline-block;
  margin-top: 1.5rem;
}
.main {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: main;
}
section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}
.hero {
  background-color: #f1edf9;
}
.hero__wrapper {
  display: -ms-grid;
  display: grid;
  grid-gap: 3rem;
}
.hero__text {
  text-align: center;
}
.hero__heading {
  line-height: 1.2;
  font-size: 2.25rem;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
.hero__description {
  margin-top: 0.75rem;
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}
.hero__illustration img {
  width: 100%;
  max-width: 30rem;
}
.section__text {
  margin-bottom: 3rem;
}
.section__heading {
  margin-bottom: 0.75rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}
.section__description {
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}
.card__heading {
  font-size: 1.25rem;
  font-weight: 600;
}
.card__description {
  font-size: 1rem;
  margin-top: 0.75rem;
}
.features__list {
  display: -ms-grid;
  display: grid;
  grid-row-gap: 3rem;
}
.features__icon {
  width: 3rem;
  height: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 0.75rem;
  background-color: #f1edf9;
  border-radius: 25%;
}
.features__icon i {
  font-size: 1.5rem;
  color: #673ab7;
}
.footer {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: footer;
  grid-row-start: 3;
  grid-row-end: 4;
  color: #ffffff;
  background-color: #331d5a;
}
.footer__wrapper {
  display: -ms-grid;
  display: grid;
  grid-row-gap: 3rem;
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}
.footer__section-heading {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.footer__bottom {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  border-top: 0.0625rem solid #ffffff;
}
.footer__links {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 1fr;
      grid-template-columns: 1fr 1fr 1fr;
  grid-column-gap: 3rem;
}
.footer__link {
  font-size: 0.75rem;
  font-weight: 400;
}
.footer__link a {
  color: #ffffff;
}
.footer__link a:hover {
  text-decoration: underline;
}
.social__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.social__link a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  margin-right: 0.375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  -webkit-transition: background-color 300ms ease-in-out;
  transition: background-color 300ms ease-in-out;
}
.social__link a i {
  font-size: 1.5rem;
}
.social__link a:hover {
  background-color: #ffffff;
}
.social__facebook:hover {
  color: #3b5998;
}
.social__twitter:hover {
  color: #00acee;
}
.product__link {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.product__link a {
  color: #ffffff;
}
.product__link a:hover {
  text-decoration: underline;
}
.social,
.product {
  padding-bottom: 1.5rem;
  border-bottom: 0.0625rem solid #ffffff;
}
.store__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.75rem;
}
.store__link:nth-child(n+2) {
  margin-left: 0.75rem;
}
.store__google, .store__apple {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.store__google img, .store__apple img {
  height: 3rem;
  -o-object-fit: contain;
     object-fit: contain;
}
.contact p {
  margin-top: 0.75rem;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
}
@media (min-width: 48rem) {
  .header__wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .content-container {
    max-width: 90rem;
    margin: 0 auto;
    padding-left: 3rem;
    padding-right: 3rem;
  }
  .brand a img {
    width: 3rem;
    height: 3rem;
  }
  .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .btn__menu {
    display: none;
  }
  .nav {
    position: relative;
    right: unset;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background-color: transparent;
  }
  .nav__close {
    display: none;
  }
  .nav__list {
    display: -ms-grid;
    display: grid;
    grid-auto-flow: column;
    padding: unset;
  }
  .hero__wrapper {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .hero__text {
    text-align: start;
  }
  .hero__heading {
    font-size: 3rem;
  }
  .hero__description {
    font-size: 1.25rem;
  }
  .hero__illustration {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .features__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
    grid-column-gap: 6rem;
    grid-row-gap: 3rem;
  }
  .footer__wrapper {
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 3rem;
  }
  .social,
  .product {
    padding-bottom: 0;
    border-bottom: none;
  }
}
@media (min-width: 72rem) {
  .features__list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 1fr 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 6rem;
  }
  .footer__wrapper {
    grid-column-gap: 6rem;
  }
  .footer__links {
    grid-column-gap: 6rem;
  }
}