.hero {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 8rem;
}
.hero__img {
  width: 6rem;
  height: 6rem;
}

.hero__subtitle {
  padding: 20px;
  color: var(--clr-light);
  font-size: var(--size-base);
  line-height: 0.9;
}
.hero__title {
  color: var(--clr-slate400);
  text-transform: uppercase;
  font-size: var(--size-4xl);
  letter-spacing: -0.05em;
  line-height: 1.1;
}

.hero__description {
  max-width: 60ch;
  font-size: var(--size-sm);
  color: var(--clr-slate400);
  font-style: italic;
}
.hero__description2 {
  max-width: 60ch;
  font-size: var(--size-sm);
  color: var(--clr-slate400);
}

.hero__btn {
  text-transform: capitalize;
  font-size: var(--size-sm);
}

/* xxs */
@media (min-width: 300px) {
  .hero {
    margin-top: 10rem;
    gap: 1.5rem;
  }
  .hero__img {
    width: 7rem;
    height: 7rem;
  }
}

/*xs*/
@media (min-width: 475px) {
  .hero {
    margin-top: 12rem;
    gap: 1.5rem;
  }
  .hero__img {
    width: 6.5rem;
    height: 6.5rem;
  }

  .hero__subtitle {
    font-size: var(--size-lg);
  }
  .hero__title {
    font-size: var(--size-5xl);
  }

  .hero__description {
    font-size: var(--size-base);
  }
  .hero__description2 {
    font-size: var(--size-base);
  }

  .hero__btn {
    font-size: var(--size-base);
  }
}

/*sm*/
/* @media(min-width: 640px) {}  */

/*md*/
@media (min-width: 768px) {
  .hero {
    margin-top: 12rem;
  }
  .hero__img {
    width: 10rem;
    height: 10rem;
  }
}

/*lg*/
@media (min-width: 1024px) {
  .hero {
    margin-top: 10rem;
  }
  .hero__img {
    width: 10rem;
    height: 10rem;
  }

  .hero__subtitle {
    font-size: var(--size-2xl);
  }
  .hero__title {
    font-size: var(--size-7xl);
  }

  .hero__description {
    font-size: var(--size-lg);
  }
  .hero__description2 {
    font-size: var(--size-lg);
  }

  .hero__btn {
    font-size: var(--size-lg);
  }
}

/*xl*/
@media (min-width: 1280px) {
  .hero {
    margin-top: 14rem;
    gap: 2rem;
  }
  .hero__img {
    width: 12rem;
    height: 12rem;
  }

  .hero__subtitle {
    font-size: var(--size-4xl);
  }
  .hero__title {
    font-size: var(--size-6xl);
  }

  .hero__description {
    font-size: var(--size-xl);
  }
  .hero__description2 {
    font-size: var(--size-xl);
  }

  .hero__btn {
    font-size: var(--size-xl);
  }
}

/*2xl*/
@media (min-width: 1536px) {
  .hero {
    margin-top: 14rem;
    gap: 2rem;
  }
  .hero__img {
    width: 12rem;
    height: 12rem;
  }

  .hero__subtitle {
    font-size: var(--size-4xl);
  }
  .hero__title {
    font-size: var(--size-6xl);
  }

  .hero__description {
    font-size: var(--size-xl);
  }
  .hero__description2 {
    font-size: var(--size-xl);
  }

  .hero__btn {
    font-size: var(--size-xl);
  }
}
