/* FAQ */

.welcome .h1 {
  display: none !important;
}

.welcome {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.xore-faq {
  max-width: 800px;
  padding: 0;
  text-align: left;
}

.xore-faq__inner {
  width: 100%;
  text-align: left;
}

.xore-faq__head {
  margin-bottom: 30px;
  text-align: center;
}

.xore-faq__head h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 600;
}

.xore-faq__list {
  width: 100%;
}

div#faq {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.xore-faq__item {
  border-top: 1px solid #d9d9d9;
}

.xore-faq__item:last-child {
  border-bottom: 1px solid #d9d9d9;
}

.xore-faq__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: transparent;
  border: 0;
  padding: 22px 0;
  margin: 0;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.homepage-box.welcome-wrapper p {
  margin: 0 !important;
}

.xore-faq__question-text {
  display: block;
  flex: 1 1 auto;
  text-align: left;
  font-size: 20px;
  line-height: 1.4;
}

.xore-faq__icon {
  position: relative;
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.xore-faq__icon::before,
.xore-faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.xore-faq__icon::before {
  width: 18px;
  height: 2px;
}

.xore-faq__icon::after {
  width: 2px;
  height: 18px;
}

.xore-faq__item.is-open .xore-faq__icon::after {
  opacity: 0;
}

.xore-faq__answer {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

.xore-faq__answer-inner {
  padding: 0 40px 22px 0;
  text-align: left;
}

.xore-faq__answer-inner p {
  margin: 0;
  text-align: left;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .xore-faq__head {
    margin-bottom: 10px;
  }

  .xore-faq__question {
    padding: 18px 0;
    gap: 18px;
  }

  .xore-faq__question-text {
    font-size: 18px;
  }

  .xore-faq__answer-inner {
    padding: 0 0 18px 0;
  }
}
