#about-main {
  background-image: linear-gradient(rgba(12, 71, 0, 0.5), rgba(12, 71, 0, 0.5)),
    url("../assets/background/about.jpg");
}
#hero-section {
  text-align: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.hero-sub__heading {
  color: var(--color-white);
  font-size: 2rem;
}
.hero-main__heading {
  font-size: 6rem;
  text-transform: uppercase;
  margin: 0.5rem 0 2rem;
}
.hero-bottom__heading {
  padding: 0 8rem;
  font-size: 1.5rem;
  line-height: 1.56;
  margin: 0 0 10rem;
}
.hero-btn__container {
  display: flex;
  align-content: center;
  justify-content: center;
  gap: 4rem;
}

/* * ********FAQ SECTION******** * */
#FAQ-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}
.faq-sub__heading {
  font-size: 1.75rem;
  font-weight: 600;
  font-family: var(--font-mainHeading);
  padding: 0 15px;
  color: var(--color-white);
}
.faq-main__heading {
  font-size: 5rem;
  margin: 0.5rem 0 1.5rem;
}
.FAQ-bottom__heading {
  font-size: 1.6rem;
  margin: 0 0 5rem;
  color: var(--color-white);
}
#FAQ-button {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px 40px;
  font-weight: 800;
  width: fit-content;
}

/* * ********PROMISE SECTION******** * */
#promise-section {
  border-top: 2px dotted var(--color-acidic-green);
  border-bottom: 2px dotted var(--color-acidic-green);
  padding: 5rem 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.promise-heading {
  font-size: 3rem;
  padding: 0 2rem 0 0;
}
.promise-text {
  width: 60%;
  color: var(--color-white);
  line-height: 1.56;
  font-size: 1.3rem;
  margin: 3rem 0;
}
#promise-section .btn {
  margin: 0rem 2rem 0 0;
}

/* * ********QUESTION SECTION******** * */
.question-sub__heading {
  font-size: 1.75rem;
  color: var(--color-white);
  padding: 0 0 0 2rem;
}
.question-main__heading {
  font-size: 4rem;
  margin: 0.5rem 0 2rem;
}
.question-bottom__heading {
  font-size: 1.3rem;
  width: 70%;
  line-height: 1.56;
  font-weight: normal;
}
#question-section .btn {
  display: block;
  margin: 5rem 0 0;
  width: fit-content;
}

/* * ********HELP SECTION******** * */
#help-section {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.help-main__heading {
  font-size: 3rem;
  margin: 0.5rem 0 1.5rem;
}
.help-bottom__paragraph {
  color: var(--color-white);
  font-size: 1.3rem;
  width: 80%;
  margin: 0 0 5rem;
}
#question-section .btn {
  display: block;
}

/* * ********BREAKDOWN 1440px******** * */
@media screen and (max-width: 1440px) {
  html {
    font-size: 15px;
  }
}

/* * ********BREAKDOWN 1280px******** * */
@media screen and (max-width: 1280px) {
  html {
    font-size: 14px;
  }

  /* * ********PROMISE SECTION******** * */
  .promise-text {
    width: 70%;
  }
}

/* * ********BREAKDOWN 1080px******** * */
@media screen and (max-width: 1080px) {
  html {
    font-size: 13px;
  }

  /* * ********FAQ SECTION******** * */
  #FAQ-section {
    grid-template-columns: 1fr;
    justify-content: center;
    gap: 40px;
  }
  .FAQ-headings__container {
    text-align: center;
  }
  .faq-sub__heading {
    font-size: 2.5rem;
  }
  .faq-main__heading {
    font-size: 6rem;
  }
  .FAQ-bottom__heading,
  #FAQ-button {
    display: none;
  }

  /* * ********HERO SECTION******** * */
  .hero-main__heading {
    font-size: 5rem;
  }
  .hero-bottom__heading {
    padding: 0 4rem;
    margin: 0 0 6rem;
  }
  .hero-btn__container {
    gap: 3rem;
  }

  /* * ********PROMISE SECTION******** * */
  .promise-text {
    width: 90%;
  }
}

/* * ********BREAKDOWN 768px******** * */
@media screen and (max-width: 768px) {
  html {
    font-size: 12px;
  }
  /* * ********FAQ SECTION******** * */
  .faq-sub__heading {
    font-size: 2.2rem;
  }
  .faq-main__heading {
    font-size: 4.2rem;
  }

  /* * ********HERO SECTION******** * */
  .hero-main__heading {
    font-size: 5rem;
  }
  .hero-bottom__heading {
    padding: 0 2rem;
    margin: 0 0 6rem;
  }
  .hero-btn__container {
    gap: 2rem;
  }
  .hero-btn__container .btn {
    padding: 12px 45px;
  }

  /* * ********PROMISE SECTION******** * */
  #promise-section {
    align-items: center;
  }
  .promise-heading {
    font-size: 3rem;
  }
  .promise-text {
    width: 100%;
    text-align: center;
  }
  #promise-section .promise-btn {
    padding: .75rem 3rem;
    font-size: 1rem;
  }

  /* * ********PROMISE SECTION******** * */
  #question-section {
    text-align: center;
  }
  .question-main__heading {
    font-size: 3.5rem;
    margin: 0.5rem 0 2rem;
  }
  .question-bottom__heading {
    width: 100%;
  }
  #question-section .btn {
    display: block;
    margin: 5rem auto 0;
    width: fit-content;
    padding: .5rem 3rem;
    font-size: 1rem;
  }
  
}

/* * ********BREAKDOWN 576px******** * */
@media screen and (max-width: 576px) {
  html {
    font-size: 11px;
  }

  /* * ********HERO SECTION******** * */
  .hero-bottom__heading {
    padding: 0 1rem;
    margin: 0 0 5rem;
  }
  .hero-btn__container {
    gap: 2rem;
  }
  .hero-btn__container .btn {
    padding: 12px 40px;
    font-size: 13px;
  }

  /* * ********PROMISE SECTION******** * */
  .promise-text {
    width: 90%;
  }

  /* * ********QUESTION SECTION******** * */
  #help-section .btn {
    margin: 1rem auto 0;
    padding: .5rem 3rem;
    font-size: 1rem;
  }
  .help-bottom__paragraph {
    width: 100%;
  }
}

/* * ********BREAKDOWN 480px******** * */
@media screen and (max-width: 480px) {
  html {
    font-size: 10px;
  }

  /* * ********HERO SECTION******** * */
  .hero-bottom__heading {
    padding: 0 0.5rem;
    margin: 0 0 4rem;
  }
  .hero-btn__container {
    gap: 2rem;
  }
  .hero-btn__container .btn {
    padding: 10px 35px;
    font-size: 10px;
  }

  /* * ********PROMISE SECTION******** * */
  .promise-text {
    width: 95%;
  }
}
