/* Block spacing */
.b-faq {
  position: relative;
  z-index: 50;
  margin-top: calc(30px + 60 * ((100vw - 375px) / 1545));
  margin-bottom: calc(30px + 60 * ((100vw - 375px) / 1545));
  padding-top: 0px;
  padding-bottom: 0px;
}
.b-faq.style-clear {
  margin-top: 0px;
  margin-bottom: 0px;
}
.b-faq.style-red, .b-faq.style-gray, .b-faq.style-green, .b-faq.style-brown, .b-faq.style-black, .b-faq.style-white {
  position: relative;
  z-index: 50;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-top: calc(30px + 60 * ((100vw - 375px) / 1545));
  padding-bottom: calc(30px + 60 * ((100vw - 375px) / 1545));
}
.b-faq.style-red.style-clear, .b-faq.style-gray.style-clear, .b-faq.style-green.style-clear, .b-faq.style-brown.style-clear, .b-faq.style-black.style-clear, .b-faq.style-white.style-clear {
  padding-top: 0px;
  padding-bottom: 0px;
}

/* Heading */
.b-faq-heading {
  margin: 0px;
  margin-bottom: calc(20px + 30 * ((100vw - 375px) / 1545));
  text-align: center;
  opacity: 0;
  transition-property: opacity, transform;
  transition-duration: 1250ms;
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.ready .visible-on-screen .b-faq-heading {
  opacity: 1;
  transform: none;
}

/* Items container */
.b-faq-items {
  max-width: 900px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(calc(20px + 10 * ((100vw - 375px) / 1545)));
  transition-property: transform, opacity;
  transition-duration: 1250ms;
  transition-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.ready .visible-on-screen .b-faq-items {
  opacity: 1;
  transform: none;
}

/* Single item */
.b-faq-item {
  border-bottom: 1px solid #b19571;
}
.b-faq-item:first-child {
  border-top: 1px solid #b19571;
}

/* Dark backgrounds: lighter border */
.b-faq.style-green .b-faq-item,
.b-faq.style-black .b-faq-item,
.b-faq.style-red .b-faq-item {
  border-bottom-color: rgba(255, 255, 255, 0.25);
}
.b-faq.style-green .b-faq-item:first-child,
.b-faq.style-black .b-faq-item:first-child,
.b-faq.style-red .b-faq-item:first-child {
  border-top-color: rgba(255, 255, 255, 0.25);
}

/* Question button */
.b-faq-item-question {
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  width: 100%;
  padding: calc(15px + 10 * ((100vw - 375px) / 1545)) 0;
  margin: 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: inherit;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: calc(16px + 4 * ((100vw - 375px) / 1545));
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.3;
}
.b-faq-item-question:hover {
  color: #b19571;
}
.b-faq.style-green .b-faq-item-question:hover,
.b-faq.style-black .b-faq-item-question:hover,
.b-faq.style-red .b-faq-item-question:hover {
  color: #b19571;
}

/* Question text */
.b-faq-item-question-text {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  flex: 1 1 auto;
  padding-right: calc(10px + 10 * ((100vw - 375px) / 1545));
}

/* Icon */
.b-faq-item-question-icon {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  flex: 0 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: calc(18px + 6 * ((100vw - 375px) / 1545));
  height: calc(18px + 6 * ((100vw - 375px) / 1545));
}
.b-faq-item-question-icon svg {
  width: 100%;
  height: 100%;
  transition: transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.b-faq-icon-v {
  transition: opacity 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
.b-faq-item--open .b-faq-icon-v {
  opacity: 0;
}

/* Answer */
.b-faq-item-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 500ms cubic-bezier(0.23, 1, 0.32, 1);
}
.b-faq-item--open .b-faq-item-answer {
  max-height: 1000px;
  transition: max-height 700ms cubic-bezier(0.23, 1, 0.32, 1);
}

/* Answer inner content */
.b-faq-item-answer-inner {
  padding-bottom: calc(15px + 15 * ((100vw - 375px) / 1545));
  font-family: 'Lora', serif;
  font-size: calc(14px + 2 * ((100vw - 375px) / 1545));
  line-height: 1.7;
}
.b-faq-item-answer-inner p:last-child {
  margin-bottom: 0;
}
