/* ===== Home FAQ Section ===== */
.home-faq{
  padding: 60px 0 80px;
  background: #fff;
}

.faq-wrap{
  width: min(1100px, calc(100% - 72px));
  margin: 0 auto;
}

.faq-head{
  text-align: center;
  margin-bottom: 28px;
}

.faq-kicker{
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .3px;
  text-transform: uppercase;
  color: rgba(0,0,0,.55);
  font-family: "Nunito", sans-serif;
}

.faq-title{
  margin: 0 0 10px;
  font-size: 38px;
  font-weight: 1000;
  color: #111;
  font-family: "Italiana", serif;
}

.faq-sub{
  margin: 0 auto;
  max-width: 680px;
  font-size: 14px;
  font-weight: 800;
  color: rgba(0,0,0,.55);
  line-height: 1.6;
  font-family: "Nunito", sans-serif;
}

/* Accordion */
.faq-accordion{
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item{
  background: #fff;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 22px;
  box-shadow: 0 14px 40px rgba(0,0,0,.08);
  overflow: hidden;
  transition: .25s ease;
}

.faq-item.active{
  box-shadow: 0 18px 55px rgba(0,0,0,.12);
}

.faq-question{
  width: 100%;
  border: none;
  background: transparent;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: "Nunito", sans-serif;
}

.faq-question span{
  font-size: 17px;
  font-weight: 900;
  color: #111;
}

.faq-question i{
  font-size: 16px;
  color: rgba(0,0,0,.65);
  transition: transform .25s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question i{
  transform: rotate(45deg);
}

/* Answer */
.faq-answer{
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}

.faq-answer p{
  margin: 0;
  padding: 0 22px 20px;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 800;
  color: rgba(0,0,0,.60);
  font-family: "Nunito", sans-serif;
}

/* Mobile */
@media (max-width: 560px){
  .faq-wrap{
    width: calc(100% - 32px);
  }

  .faq-title{
    font-size: 30px;
  }

  .faq-question{
    padding: 18px 16px;
  }

  .faq-question span{
    font-size: 15px;
  }

  .faq-answer p{
    padding: 0 16px 18px;
    font-size: 13px;
  }
}