* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Red Hat Display", sans-serif;
  background-color: #FAFAFA;
}

html, body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.navbar {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-top: 3rem;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.hero .hero-mobile-image {
  max-width: none;
  width: 115%;
  padding-top: 4rem;
}
.hero .hero-desktop-left,
.hero .hero-desktop-right {
  display: none;
}
.hero .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 3rem 2rem 2rem 2rem;
  text-align: center;
}
.hero .hero-content h1 {
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1.1;
  color: #28283D;
}
.hero .hero-content p {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  color: #87879D;
}
.hero .hero-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.hero .hero-buttons .btn-download {
  display: flex;
  padding: 1rem 2.5rem;
  gap: 0.25rem;
  background-color: #4D96A9;
  border-radius: 1.813rem;
  border: none;
  color: #FAFAFA;
  font-weight: 900;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
}
.hero .hero-buttons .btn-download span {
  color: #8FE3F9;
}
.hero .hero-buttons .btn-info {
  display: flex;
  padding: 1rem 2.5rem;
  background-color: #855FB1;
  border-radius: 1.813rem;
  border: none;
  color: #FAFAFA;
  font-weight: 900;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 2rem 4rem 2rem;
  gap: 4rem;
}
.main .number {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.main .number .number-line {
  width: 1px;
  height: 80px;
  background-color: #D1D1DF;
}
.main .number .number-circle {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 1px solid #D1D1DF;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.5;
  color: #87879D;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main .image-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.main .image-collage .image-1, .main .image-collage .image-2, .main .image-collage .image-3, .main .image-collage .image-4 {
  border-radius: 8px;
}
.main .text-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  max-width: 504px;
}
.main .text-content .title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.main .text-content .title .category {
  text-align: center;
  color: #4D96A9;
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.main .text-content .title h2 {
  text-align: center;
  color: #28283D;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.1;
}
.main .text-content p {
  text-align: center;
  color: #87879D;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.footer .number {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}
.footer .number .number-line {
  width: 1px;
  height: 80px;
  background-color: #D1D1DF;
}
.footer .number .number-circle {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 1px solid #D1D1DF;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.5;
  color: #87879D;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FAFAFA;
}
.footer .footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 2rem;
  margin-top: -28px;
  gap: 1.5rem;
  background-image: url("assets/1-mobile/image-footer.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.footer .footer-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(77, 150, 169, 0.9);
  z-index: 1;
}
.footer .footer-content > * {
  position: relative;
  z-index: 2;
}
.footer .footer-content h2 {
  text-align: center;
  color: #FAFAFA;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.1;
}
.footer .footer-content p {
  text-align: center;
  color: #FAFAFA;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
.footer .footer-content .btn-download {
  display: flex;
  padding: 1rem 2.5rem;
  gap: 0.25rem;
  background-color: #855FB1;
  border-radius: 1.813rem;
  border: none;
  color: #FAFAFA;
  font-weight: 900;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
}
.footer .footer-content .btn-download span {
  color: #D9B8FF;
}

@media (min-width: 768px) {
  .hero .hero-mobile-image {
    width: 107%;
  }
  .hero .hero-content {
    width: 460px;
    padding-top: 4.5rem;
    padding-bottom: 4rem;
  }
  .hero .hero-content h1 {
    font-size: 3rem;
  }
  .hero .hero-buttons {
    flex-direction: row;
  }
  .main {
    padding: 3.5rem 2rem 4rem 2rem;
  }
  .main .image-collage {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 1.5rem;
    max-width: 680px;
  }
  .main .text-content .title .category {
    font-size: 0.875rem;
  }
  .main .text-content .title h2 {
    font-size: 2.25rem;
    width: 445px;
  }
  .footer .footer-content {
    background-image: url("assets/2-tablet/image-footer.jpg");
    width: 100vw;
  }
  .footer .footer-content h2 {
    font-size: 2.25rem;
  }
  .footer .footer-content p {
    max-width: 504px;
  }
}
@media (min-width: 1440px) {
  .navbar {
    padding-top: 5rem;
  }
  .hero {
    flex-direction: row;
    align-items: center;
    overflow: hidden;
    position: relative;
  }
  .hero .hero-desktop-left,
  .hero .hero-desktop-right {
    display: block;
    width: 394px;
    height: 303px;
    flex-shrink: 0;
  }
  .hero .hero-desktop-left {
    margin: 0 95.852px 57px 0;
  }
  .hero .hero-desktop-right {
    margin: 57px 0 0 95.852px;
  }
  .hero .hero-mobile-image {
    display: none;
  }
  .hero .hero-content {
    gap: 2rem;
    width: 475px;
    margin-right: 1.125rem;
    margin-left: 1.125rem;
  }
  .hero .hero-content h1 {
    font-size: 4rem;
  }
  .hero .hero-content p {
    font-size: 1.125rem;
  }
  .main {
    padding: 3.5rem 5rem 4.5rem 5rem;
  }
  .main .image-collage {
    gap: 2rem;
    max-width: 1120px;
  }
  .main .text-content .title .category {
    font-size: 1rem;
  }
  .main .text-content .title h2 {
    font-size: 2.5rem;
  }
  .main .text-content p {
    font-size: 1.125rem;
    width: 550px;
  }
  .footer .footer-content {
    background-image: url("assets/3-desktop/image-footer.jpg");
    padding: 7rem 5rem;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
  }
  .footer .footer-content h2 {
    font-size: 2.5rem;
    width: 445px;
    text-align: left;
  }
  .footer .footer-content p {
    font-size: 1rem;
    width: 326px;
    text-align: left;
  }
  .footer .footer-content .btn-download {
    margin-left: 63px;
  }
}

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