/* css reset */
html {
  box-sizing: border-box;
  font-family: Poppins, Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #110937;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

/* general */

.button {
  border: none;
  border-radius: 0.2rem;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #110937;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.5rem;
  font-size: 0.7rem;
  min-width: 7rem;
}

.button:hover {
  transform: scale(102%);
}

.button--primary {
  background-color: #58c8fa;
}

.button--secondary {
  background-color: transparent;
}

.button--ghost {
  color: #fff;
  border: 2px solid #fff;
  background-color: transparent;
}

.button--bold {
  font-weight: 700;
}

.button__icon {
  margin-right: 0.1rem;
}

.button__icon--white {
  color: #fff;
}

.buttons {
  display: flex;
}

.title {
  font-size: 1.5rem;
  line-height: 1.7rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.title strong {
  color: #58c8fa;
}

.text {
  margin-bottom: 1rem;
}

.section {
  padding: 4rem 1rem 1rem 1rem;
}

/* navbar */
.nav {
  position: fixed;
  top: 0;
  z-index: 1;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0.5rem 1rem;
}

.nav__block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  height: 40px;
}

.nav__btn {
  height: 25px;
  width: 25px;
}

.nav__links {
  display: none;
}

.nav__links--mobile {
  flex-direction: column;
  align-items: inherit;
}

.nav__links--hide {
  display: none;
}

.nav__link {
  margin-right: 1rem;
  font-size: 1rem;
  text-decoration: none;
  color: inherit;
}

.nav__link:hover {
  color: #58c8fa;
}

.nav__link---mobile {
  margin: 1rem 1rem 1rem 0;
}

/* hero */
.hero {
  color: #110937;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__img {
  width: 80%;
  max-width: 560px;
}

/* features */
.features {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.features__content {
  width: 100%;
}

.features__title {
  text-align: center;
}

.features__cards {
  display: flex;
  overflow: scroll;
  width: 100%;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.features__cards::-webkit-scrollbar {
  display: none;
}

.card {
  flex-grow: 0;
  flex-shrink: 0;
  width: 341px;
  height: 224px;
  border-radius: 0.3rem;
  margin: 0 0.5rem 2rem 0;
  box-shadow: 4px 6px 14px rgba(11, 12, 13, 0.15);
  padding: 2rem;
}

.card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card__title {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.card__text {
  line-height: 1.2rem;
}

.features__circles {
  display: none;
}

.features__img {
  max-width: 80%;
}

/* contact-us */
.contact-us__purple {
  color: #fff;
  background-color: #7e3dea;
  border-radius: 0.3rem;
  padding: 2.5rem;
}

.contact-us__img {
  display: none;
}

/* faq */
.faq__gray {
  background-color: #f1f4f6;
  border-radius: 0.3rem;
  padding: 1rem;
}

.faq__box {
  background-color: #fff;
  border-radius: 0.3rem;
  padding: 1rem;
  margin-bottom: 1rem;
}

.faq__title {
  font-size: 1.2rem;
  line-height: 1.4rem;
  font-weight: 700;
  text-align: center;
  margin: 1.5rem;
}

.faq__q {
  font-size: 1rem;
  font-weight: 700;
  margin: 0.5rem;
  cursor: pointer;
}

.faq__a {
  line-height: 1.2rem;
  margin: 0.5rem;
}

.faq__a--hide {
  display: none;
}

/* footer */
.footer {
  background-color: #2c2c2c;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
}

.footer__logo {
  display: block;
  max-width: 10rem;
}

.footer__link {
  text-decoration: none;
  color: inherit;
  font-size: 0.8rem;
  margin: 0.5rem;
}

.footer__link:hover {
  color: #58c8fa;
}

/* tyc */
.tc {
  box-shadow: 4px 6px 14px rgba(11, 12, 13, 0.15);
  border-radius: 0.3rem;
  margin: 1rem;
  padding: 1rem;
}

.tc__title {
  text-align: center;
}

.tc p {
  margin-bottom: 1rem;
}

.tc h3 {
  color: #7e3dea;
  font-weight: 700;
  font-size: 1rem;
}

@media (min-width: 1024px) {
  /* general */
  .title {
    font-size: 2rem;
    line-height: 2.2rem;
  }

  .columns {
    display: flex;
  }

  .column {
    width: 50%;
  }

  .section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem 2rem;
  }

  .button {
    font-size: 1rem;
  }

  /* navbar */
  .nav {
    padding: 0.5rem 2rem;
  }

  .nav__btn {
    display: none;
  }

  .nav__links {
    display: flex;
    align-items: center;
  }

  /* hero */
  .hero {
    flex-direction: row-reverse;
  }

  .hero__img {
    max-width: 60%;
  }

  /* features */
  .features {
    flex-direction: row-reverse;
  }

  .features__content {
    width: 50%;
    margin-left: 1rem;
  }

  .features__title {
    text-align: left;
  }

  .features__circles {
    display: flex;
  }

  .features__circle {
    background-color: #d9d9d9;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    margin: 0 0.3rem;
    cursor: pointer;
  }

  .features__circle--active {
    background-color: #7e3dea;
  }

  .features__img {
    width: 50%;
    padding-right: 1rem;
  }

  .card--last {
    margin-right: 600px;
  }

  /* contact us */
  .contact-us {
    position: relative;
  }

  .contact-us__txt {
    max-width: 65%;
  }

  .contact-us__img {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: auto;
  }

  /* faq */
  .faq__title {
    font-size: 1.5rem;
    line-height: 1.7rem;
  }

  .faq__box {
    margin: 1rem;
  }

  /* footer */
  .footer {
    flex-direction: row;
    justify-content: space-between;
    padding: 2rem;
  }

  .footer__logo {
    margin: 0;
  }
}

@media (min-width: 1200px) {
  .title {
    font-size: 2.5rem;
    line-height: 2.7rem;
  }
}
