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

body {
  display: grid;
  grid-template-rows: 1fr auto;
  place-items: center;
  margin: 0 auto;
  min-height: 100vh;
  font-family: "Red Hat Display", sans-serif;
  background-color: #FAFAFA;
  font-size: 16px;
  max-width: 1600px;
  gap: 10rem;
  color: #87879D;
}

h2,
h3,
p {
  margin: unset;
}

button {
  font-family: "Red Hat Display", sans-serif;
  font-weight: 800;
  width: fit-content;
  height: 55px;
  border: none;
  border-radius: 30px;
  padding: 0 3rem;
  color: #FAFAFA;
  font-size: 1.2rem;
}

header {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  margin-block-start: 3rem;
  align-items: center;
  width: 85%;
}
header img {
  align-self: center;
}

.hero {
  display: grid;
  grid-template: 1fr/1fr 1fr 1fr;
  gap: 2rem;
}
.hero__image {
  max-width: 100%;
}
.hero__image img {
  width: 100%;
  height: 100%;
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__content h1 {
  line-height: 4rem;
  font-size: 4rem;
  font-weight: 800;
  text-align: center;
  color: #28283D;
}
.hero__content p {
  margin-block-end: 3rem;
  text-align: center;
}
.hero__content__buttons {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  justify-content: center;
}
.hero__content__buttons__download {
  background-color: #4D96A9;
}
.hero__content__buttons__download span {
  color: #90E4F9;
}
.hero__content__buttons__download:hover {
  background-color: #8FE3F9;
}
.hero__content__buttons__download:hover span {
  color: #4D96A9;
}
.hero__content__buttons__what-is-it {
  background-color: #855FB1;
}
.hero__content__buttons__what-is-it:hover {
  background-color: #D9B8FF;
}

.features {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  padding-block-start: 5rem;
  gap: 2rem;
}
.features h2 {
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #4D96A9;
  font-weight: 800;
}
.features h3 {
  width: 33rem;
  font-size: 3rem;
  color: #28283D;
  font-weight: 800;
  text-align: center;
}
.features p {
  width: 50%;
  line-height: 1.3rem;
  text-align: center;
}
.features__images {
  display: flex;
  flex-direction: row;
  max-width: 100%;
  width: 55vw;
  gap: 2rem;
  justify-content: center;
  margin-block-end: 2rem;
}
.features__images img {
  border-radius: 0.5rem;
  max-width: 100%;
  flex: 0 1 25%;
  width: 25%;
}

footer {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  width: 100%;
  height: 400px;
  background-image: linear-gradient(hsla(195, 37%, 48%, 0.65), hsla(195, 37%, 48%, 0.65)), url(assets/desktop/image-footer.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 6rem;
  color: #FAFAFA;
  gap: 2rem;
}
footer h2 {
  width: 15rem;
  font-size: 1.85rem;
  font-weight: 800;
}
footer p {
  width: 18rem;
  font-weight: 500;
  line-height: 1.3rem;
}
footer button {
  background-color: #855FB1;
}
footer button span {
  color: #D9B8FF;
}
footer button:hover {
  background-color: #D9B8FF;
}
footer button:hover span {
  color: #855FB1;
}
footer .number {
  color: #87879D;
}

@media (max-width: 1270px) {
  .hero {
    grid-template: 1fr 1fr/1fr 1fr;
  }
  .hero__content {
    grid-column: 1/3;
    grid-row: 2;
  }
  .features__images img {
    width: 35%;
  }
  .img-right {
    grid-column: 2/3;
    grid-row: 1;
  }
  footer {
    flex-direction: row;
    text-align: center;
    flex-wrap: wrap;
    justify-content: center;
  }
  footer h2,
  footer p {
    flex: 100%;
  }
}
@media (max-width: 768px) {
  .hero__content__buttons {
    flex-wrap: wrap;
  }
  .hero__content__buttons button {
    width: 80%;
  }
  .features__images {
    flex-wrap: wrap;
    width: 100%;
  }
  .features__images img {
    width: 40%;
  }
}

/*# sourceMappingURL=style.css.map */
