/* General */
.download__btn{
  background-color: black;
  padding: 1rem 1.34rem;
  border-radius: 0.5rem;
  gap: 0.75rem;
  display: flex;
  align-items: center;
  color: white;
  cursor: pointer;
}

.download__btn .download__subtitle{
  font-size: 0.875rem;
}

.download__btn > div{
  gap: 0.1rem;
}

.download__btn img{
  width: 2rem;
  height: 2rem;
}

.section__header{
  max-width: 40rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
  gap: 0.5rem;
  text-align: center;
}

.section__header h2{
  color: #06054C;
}

.section__header p{
  font-size: 1.25rem;
  color: #6B6A7D;
  font-weight: 400;
}

.section{
  display: flex;
  flex-direction: column;
  gap: 3rem;
}


/* Hero */

.hero{
  min-height: 100vh;
  background-image: url("../images/hero-bg.png");
  background-repeat: no-repeat;
  background-position: calc(100% + 14rem);
  background-size: auto 50rem;
}

.hero__text{
  gap: 2.5rem;
}

.hero__logo{
  width: 10rem;
  margin-bottom: 4rem;
}

.hero__logo img{
  width: 100%;
}

.hero h4{
  color: #6B6A7D;
}

.hero__img img{
  width: 40rem;
}

/* Features */

.features__item{
  border-radius: 1.25rem;
  background: #3F3D97;
  gap: 1.5rem;
  padding: 1.5rem;
  color: white;
}

.features__item .features__img{
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: white;
}

.features__item .features__img img{
  width: 2rem;
  height: 2rem;
}

/* Screens */

.screens__list{
  gap: 3.5rem;
}

.screens__item{
  width: 15rem;
}

.screens__item img{
  width: 100%;
}

/* Footer */
footer{
  background: linear-gradient(180deg, #3F3D97 66.61%, #232250 100%);
  gap: 7.5rem;
}

.footer__text p{
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
}

.footer__img{
  width: 19.5rem;
}

.footer__img img{
  width: 100%;
}

@media (max-width: 1024px) {
  .hero__img img{
    width: 30rem;
  }
}

@media (max-width: 640px) {
  .hero{
    flex-direction: column-reverse;
    background-position: center 2rem;
    background-size: auto 34rem;
    gap: 5rem;
  }

  .hero__logo{
    margin-bottom: 2rem;
  }

  .hero__text, .hero__img{
    width: 100% !important;
  }
  .hero__img img{
    margin: auto;
  }

  footer{
    flex-direction: column-reverse;
    gap: 3rem;
  }

  .footer__img{
    width: 15rem;
  }
}