
.hero-cont {
  margin-top: 2rem;
  background: #D9D9D9;
}

.hero-img {
  z-index: 1;
}

.faq-hero-container {
  /* background: url("assets/images/mrbeast-triangle.jpg"); */
  background-position: top;
  /* color: #fff; */
  padding: 1rem 1rem;
  text-align: center;
}

.faq-hero-subhead {
  margin-bottom: .5rem;
  font-size: var(--small-h-size);
  padding: .5rem;
  color: #000;
  border-radius: 2rem;
  display: inline-block;
}

.faq-hero-header {
  font-size: var(--biggest-h-size);
  text-align: center;
  margin-bottom: 1rem;
}

.apply-btn {
  text-align: center;
}

.main-faq-section {
  background: #EEEEEE;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  padding: 5rem 0;
}

.faq-box {
  background: #fff;
  padding: 1rem 1.4rem;
  border-radius: .5rem;
  border: 1px solid #DFDFE7;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-box .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.faq-question {
  font-size: var(--small-h-size);
  line-height: 1.6rem;
  font-weight: 500;
}

.faq-box button {
  border: none;
  min-width: 21px;
  min-height: 21px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: grid;
  place-content: center;
  background: #D6D6D6;
}

.faq-answer.hide {
  display: none;
}