/* faqs.php ================================================================================================ */
/* #box1/#box2/#box3 and .accordioncontainer base styles come from ourprocess.css, linked before this file. */

/* Jump nav ------------------------------------------------------------- */
#faqJumpNav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 50px;
}

#faqJumpNav a {
  display: inline-block;
  background: #f4f4f4;
  color: #000;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  font-size: 16px;
  text-decoration: none !important;
  padding: 12px 22px;
  border-radius: 30px;
  border: 1px solid #e0e0e0;
  transition: 0.2s;
}

#faqJumpNav a:hover {
  background: #d9272e;
  color: #fff;
  border-color: #d9272e;
}

#faqJumpNav a.faqJumpNav-linkout {
  background: #1e1c1b;
  color: #fff;
  border-color: #1e1c1b;
}

#faqJumpNav a.faqJumpNav-linkout:hover {
  background: #d9272e;
  border-color: #d9272e;
}

/* Category sections ------------------------------------------------------ */
.faq-category {
  scroll-margin-top: 110px;
}

/* Each category is wrapped in its own div, so ourprocess.css's
   "h2:not(:first-of-type)" gap rule never matches (every h2 is the only
   h2 in its wrapper). Add the same gap directly on the wrapper instead. */
.faq-category + .faq-category {
  margin-top: 4.375rem;
}

.faq-category-intro {
  max-width: 820px;
  margin: -10px 0 30px;
  text-align: left;
  font-size: 18px;
}

.faq-category-intro a {
  white-space: nowrap;
}

.faq-subhead {
  scroll-margin-top: 110px;
  color: #d9272e;
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 14px;
}

.faq-subhead:not(:first-of-type) {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  #faqJumpNav {
    gap: 8px;
    margin-bottom: 35px;
  }

  #faqJumpNav a {
    font-size: 14px;
    padding: 10px 16px;
  }

  .faq-category-intro {
    margin-top: 0;
  }
}
