/* =============================================
   FAQ — MOBILE BASE STYLES
   ============================================= */

/* FAQ Hero */
.faq_hero {
  background-image: url("../images/hero_bg.webp");
  background-size: cover;
  color: rgb(255, 255, 255);
  padding: 60px 0;
  position: relative;
}
.faq_hero:before {
  content: "";
  display: block;
  background-color: rgba(3, 70, 255, 0.92);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.faq_hero .wrap {
  margin: 0 20px;
  position: relative;
  z-index: 2;
}
.faq_hero .wrap h1 {
  font-size: 2rem;
  line-height: 1.15;
  color: rgb(255, 255, 255);
  font-family: avenir-lt-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
  margin: 0 0 12px 0;
}
.faq_hero .wrap p {
  font-size: 1rem;
  line-height: 1.55;
  opacity: 0.85;
}

/* FAQ List */
.faq_list {
  margin: 50px 0 0 0;
}
.faq_list .wrap {
  margin: 0 20px;
}

/* FAQ Item */
.faq_item {
  border-bottom: 1px solid rgb(230, 230, 230);
}
.faq_item:first-child {
  border-top: 1px solid rgb(230, 230, 230);
}

/* FAQ Question Button */
.faq_question {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  gap: 20px;
}
.faq_question h3 {
  font-size: 1rem;
  line-height: 1.35;
  font-family: avenir-lt-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
  color: rgb(56, 56, 56);
  margin: 0;
  -webkit-transition: color 200ms ease;
  transition: color 200ms ease;
}
.faq_question:hover h3 {
  color: rgb(3, 70, 255);
}

/* FAQ Icon */
.faq_icon {
  -webkit-flex: 0 0 24px;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  position: relative;
}
.faq_icon:before,
.faq_icon:after {
  content: "";
  display: block;
  background-color: rgb(3, 70, 255);
  position: absolute;
  -webkit-transition: -webkit-transform 300ms ease;
  transition: transform 300ms ease;
}
.faq_icon:before {
  width: 14px;
  height: 2px;
  top: 11px;
  left: 5px;
}
.faq_icon:after {
  width: 2px;
  height: 14px;
  top: 5px;
  left: 11px;
}
.faq_item.open .faq_icon:after {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

/* FAQ Answer */
.faq_answer {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 400ms ease, padding 400ms ease;
  transition: max-height 400ms ease, padding 400ms ease;
  padding: 0 0 0 0;
}
.faq_item.open .faq_answer {
  max-height: 600px;
  padding: 0 0 25px 0;
}
.faq_answer p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgb(99, 99, 99);
  margin: 0 0 12px 0;
}
.faq_answer p:last-child {
  margin-bottom: 0;
}
.faq_answer p a {
  color: rgb(3, 70, 255);
  text-decoration: none;
  font-family: avenir-lt-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
  cursor: pointer;
}
.faq_answer p a:hover {
  text-decoration: underline;
}

/* Homepage FAQ Preview */
.faq_preview {
  margin: 60px 0 0 0;
}
.faq_preview .wrap {
  margin: 0 20px;
}
.faq_preview .wrap > header {
  text-align: center;
  margin: 0 0 30px 0;
}
.faq_preview .wrap > header h3 {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgb(3, 70, 255);
  margin: 0 0 10px 0;
  font-family: avenir-lt-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
}
.faq_preview .wrap > header h2 {
  font-size: 1.375rem;
  line-height: 1.2;
  color: rgb(56, 56, 56);
  font-family: avenir-lt-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
}
.faq_preview .faq_preview_list .faq_item {
  border-bottom: 1px solid rgb(230, 230, 230);
}
.faq_preview .faq_preview_list .faq_item:first-child {
  border-top: 1px solid rgb(230, 230, 230);
}
.faq_preview .faq_view_all {
  text-align: center;
  margin: 30px 0 0 0;
}
.faq_preview .faq_view_all a {
  display: inline-block;
  font-size: 0.9375rem;
  color: rgb(3, 70, 255);
  font-family: avenir-lt-pro, sans-serif;
  font-weight: 700;
  font-style: normal;
  text-decoration: none;
  -webkit-transition: color 200ms ease;
  transition: color 200ms ease;
}
.faq_preview .faq_view_all a:hover {
  text-decoration: underline;
}
