* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
:root {
  --primary-color: 63, 8, 151;
  --secondary-color: #b4a0fc;
  --tertiary-color: black;
  --background-color: #fbf8fd;
  --button: #4e1e73;
}
html {
  font-size: 62.5%;
}
body {
  font-family: "Rubik", sans-serif;
  font-weight: 400;
  line-height: 1;
  background: linear-gradient(
    180deg,
    black 0%,
    rgba(var(--primary-color)) 5%,
    var(--secondary-color)
  );
}
header {
  display: flex;
  flex-direction: row;
  font-size: 2.4rem;
  color: rgba(var(--primary-color));
  font-weight: 800;
  font-family: Rubik;
  align-items: center;
  gap: 1.4rem;
  margin-top: 1.8rem;
  margin-left: 2rem;
  margin-bottom: 10rem;
}
main {
  padding: 2rem;
}
h1 {
  font-size: 8rem;
  font-weight: 700;
  background: linear-gradient(to right, white, var(--secondary-color));
  background-clip: text;
  color: transparent;
  text-align: center;
}
.awaken {
  color: rgb(233, 213, 247);
  font-size: 2rem;
  text-align: center;
  font-weight: 500;
}
.hero-description {
  color: rgb(227, 201, 245);
  font-size: 2rem;
  line-height: 2.8rem;
  text-align: center;
  font-weight: 400;
  padding-top: 4rem;
}
.download {
  justify-self: center;
  margin-top: 3.4rem;
  margin-bottom: 3.4rem;
}
.button {
  display: flex;
  flex-direction: row;
  gap: 0.6rem;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
    to right,
    rgba(var(--primary-color)),
    rgb(123, 77, 197)
  );
  border-color: #faf9fa;
  border-style: solid;
  padding: 1.4rem;
  cursor: pointer;
  border-radius: 1.4rem;
}
.button:hover,
.button:active {
  background: rgb(42, 10, 99);
}

.download-link {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
}
.download-icon {
  width: 4rem;
  height: 4rem;
}
.hero-image {
  width: 100%;
  height: 100%;
  align-self: center;
  justify-self: center;
  margin-bottom: 3rem;
}
.zodiac {
  color: white;
  font-size: 4.5rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}
.zodiac-description,
.feature-to-guide-you-description {
  color: rgb(233, 213, 247);
  font-size: 2rem;
  text-align: center;
  font-weight: 300;
  margin-bottom: 2rem;
}

.zodiac-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  border-radius: 1rem;
  /* box-shadow: 0 0 1rem 0.5rem rgba(0, 0, 0, 0.2); */
  overflow: hidden;
  /* background-color: #1a0c2f; */
}
.scroll-track {
  display: flex;
  gap: 2rem;
  animation: scroll 50s linear infinite;
  width: max-content;
}
@keyframes scroll {
  from {
    transform: translateX(10%);
  }
  to {
    transform: translateX(-100%);
  }
}

.zodiac-sign,
.steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem;
  flex-shrink: 0;
}
.zodiac-img {
  height: 80px;
  width: 80px;
  border-radius: 8rem;
  border: solid;
  border-width: 3px;
  border-color: var(--secondary-color);
  padding: 1.4rem;
}
.zodiac-name {
  color: white;
  font-size: 1.4rem;
}

.features {
  margin-top: 6rem;
  color: white;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.feature {
  /* background-color: #b4a0fc; */
  border-radius: 1.2rem;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  border-color: white;
  border-width: 1px;
  border-style: solid;
}

.feature-icon {
  width: 4rem;
  height: 4rem;
  margin-bottom: 2rem;
}
.feature-title {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.feature-text {
  font-size: 1.4rem;
  line-height: 2rem;
}
.who-we-are,
.why-choose-us,
.features-to-guide-you,
.how-to-get-started,
.contact-us {
  color: white;
  font-size: 4rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  margin-top: 10rem;
}
.who,
.why,
.what {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.who img,
.why img,
.what img {
  width: 100%;
  padding: 3rem;
}
.who-description,
.why-description,
.what-description {
  color: white;
  font-size: 1.8rem;
  align-self: center;
  line-height: 2.8rem;
}

.faq-title {
  font-size: 4.2rem;
  color: white;
  margin: 6.4rem 0 2.4rem 0;
  text-align: center;
}
.single-faq {
  width: 100%;
  border: 1px solid white;
  border-radius: 0.8rem;
  padding: 1.6rem;
  margin-bottom: 1.2rem;
  background: linear-gradient(180deg, rgba(var(--primary-color), 0.1), #5b01a0);
}
.question {
  display: flex;
  font-size: 1.8rem;
  font-weight: 500;
  justify-content: space-between;
  color: white;
}

.down {
  width: 2.4rem;
  height: 2.4rem;
}
.up {
  display: none;
  width: 2.4rem;
  height: 2.4rem;
}
.answer {
  display: none;
  font-size: 1.6rem;
  margin-top: 1.6rem;
  border-top: 1px solid rgb(209, 207, 207);
  padding-top: 1.6rem;
  color: rgb(252, 249, 249);
  line-height: 2.4rem;
}
.how-to-get-started {
  margin-bottom: 4rem;
}
.how-to-get-started-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-radius: 2.4rem;
  box-shadow: 0 0 1rem 0.5rem rgba(0, 0, 0, 0.2);
  overflow: hidden;
  justify-content: center;
  align-items: center;
  padding: 3rem 3rem;
}
.step {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.steps {
  width: 400px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}
.steps-pic {
  width: 200px;
  height: auto;
  object-fit: contain;
}
.step-info {
  display: flex;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  align-self: center;
  text-align: center;
  font-size: 2rem;
}
.arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}

.vector {
  width: 60px;
  color: rgb(71, 3, 128);
}

.vector-mobile {
  height: 60px;
  color: rgb(71, 3, 128);
  display: none;
}
.contact-us {
  margin-bottom: 4rem;
}
.contact {
  box-shadow: 0 0 1rem 0.5rem rgba(0, 0, 0, 0.1);
  padding: 2rem;
  border-radius: 2rem;
}
.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 40rem;
  background: linear-gradient(
    0deg,
    var(--secondary-color),
    rgba(var(--primary-color))
  );
  color: white;
  text-align: center;
  font-size: 2rem;
  border-radius: 2rem;
  padding: 2rem;
}
.contact-text {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.2rem;
  line-height: 4rem;
  border-right: 1px solid rgb(184, 187, 194);
  padding: 2rem;
}

.contacts-box {
  padding: 4rem;
}
h4 {
  font-size: 4rem;
  margin-bottom: 2rem;
}
.contacts-box p {
  font-size: 2.4rem;
  line-height: 4rem;
}
.quote-author {
  font-size: 1.6rem;
}
.support {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.support-img {
  width: 20px;
  height: 20px;
}

footer {
  height: 24rem;
  background-color: rgba(var(--primary-color));
  margin-top: 5rem;
}
.footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 4rem;
}

h2 {
  color: white;
  font-size: 4rem;
}
.footer-links {
  justify-self: center;
}
.useful-links {
  color: white;
  font-size: 3rem;
  font-weight: 600;
}
.links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}
.link {
  color: white;
  text-decoration: none;
  font-size: 1.6rem;
}

.footer-three {
  justify-self: end;
}
.follow {
  color: white;
  font-size: 3rem;
  font-weight: 600;
}
.footer-pics {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}
.footer-pic {
  width: 30px;
  height: 30px;
}
