.faq-section {
  background-color: #630900;
  padding: 160px 300px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 62px;
  align-items: center;
  justify-content: center;
  background-repeat: repeat;
}

.faq-item {
  border-bottom: 1px solid #c3b895;
  margin-bottom: 0;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  transition: all 0.3s ease;
  -webkit-user-select: none;
  user-select: none;
  outline: none;
}

.faq-item:first-child .faq-question {
  padding-top: 0;
}

.faq-icon {
  color: #fada79;
  font-size: 2rem;
  margin-right: 16px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 17px;
  height: 17px;
}

.faq-question-text {
  font-family: Parkinsans-Medium;
  font-size: 22px;
  line-height: 1;
  font-weight: 100;
  flex: 1;
  margin-right: 16px;
}
.faq-toggle {
  background-color: #f5e09e;
  color: #b23b35;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  line-height: 1;
  font-weight: 700;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.faq-plus {
  display: block;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.faq-minus {
  display: none;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.faq-item.active .faq-plus {
  display: none;
}

.faq-item.active .faq-minus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  line-height: 0;
  position: relative;
  top: -1px;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
  height: 0;
  transition:
    height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
    padding 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-content {
  padding: 0 2rem 1.5rem;
  font-size: 20px;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 0.3s ease 0.1s,
    transform 0.3s ease 0.1s;
}

.faq-item.active .faq-answer-content {
  opacity: 1;
  transform: translateY(0);
}

.faq-answer p {
  margin: 0;
}

.faq-question:hover {
  opacity: 0.9;
}

.faq-heading-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.faq-heading {
  font-size: 60px;
  font-weight: 100;
  color: #fff;
  line-height: 1;
  z-index: 1;
}

.faq-subheading {
  font-family: Parkinsans-Bold;
  font-size: 74px;
  font-weight: 100;
  color: #e84e40;
  line-height: 1;
  margin-top: -10px;
  background: transparent;
  padding: 0;
  max-width: 0;
  box-shadow: none;
  white-space: nowrap;
  overflow: hidden;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  display: inline-block;
}

.faq-subheading.animate-width {
  padding: 10px;
  max-width: 540px;
  color: white;
}

.faq-description {
  font-family: Parkinsans-Regular;
  font-size: 25px;
  font-weight: 300;
  color: #fff;
  line-height: 1;
  margin-top: 30px;
}

.faq-container {
  width: 100%;
}

@media (max-width: 768px) {
  .faq-question-text {
    font-size: 18px;
  }

  .faq-heading {
    font-size: 44px;
    text-align: center;
  }

  .faq-subheading {
    font-size: 48px;
  }

  .faq-description {
    text-align: center;
    font-size: 20px;
  }

  .faq-section {
    padding: 64px 22px;
  }

  .faq-question {
    align-items: flex-start;
    font-size: 1.1rem;
  }

  .faq-icon {
    font-size: 1.25rem;
    width: 14px;
    height: 14px;
  }

  .faq-toggle {
    width: 32px;
    height: 32px;
  }

  .faq-answer-content {
    padding: 0 0 1.25rem 2rem;
    font-size: 0.95rem;
  }
}

/*# sourceMappingURL=/cdn/shop/t/8/assets/faq-section-stylesheet.css.map?v=172775708833283730791755164806 */
