.brnd-faq-wrap {
  max-width: 1270px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.brnd-faq-section-title-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 24px;
}

.brnd-faq-section-title-img {
  width: 40px
}

.brnd-faq-section-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--brnd-primary-blue);
  margin-right: 16px;
}

.brnd-faq-faqs {
  width: 600px;
  margin-bottom: 32px;
  background: white;
}

.brnd-faq-faq {
  width: 100%;
  border-bottom: solid 1px var(--brnd-light-blue);
  cursor: pointer;
  padding-right: 72px;
  position: relative;
  min-height: 50px;
}

.brnd-faq-faqs .brnd-faq-faq:last-of-type {
  border-bottom: none
}

.brnd-faq-faq-chevron {
  position: absolute;
  top: 10px;
  right: 30px;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
}

.brnd-faq-faq-chevron-img {
  width: 18px;
  transition: transform 300ms ease-in-out;
}

.brnd-faq-faq.active .brnd-faq-faq-chevron-img {
  transform: rotate(-90deg);
}

.brnd-faq-faq-title {
  padding: 16px 0;
  display: inline-block;
  vertical-align: middle;
  color: var(--brnd-primary-blue);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.brnd-faq-faq-content {
  padding: 0 16px;
  max-height: 0;
  overflow: hidden;
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  transition: max-height 300ms ease-in-out 0ms;
}

.brnd-faq-faq.active .brnd-faq-faq-content {
  padding-bottom: 16px;
  max-height: 1000px;
  overflow: hidden;
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
}

@media screen and (max-width: 1209px) {
  .brnd-faq-wrap {
    flex-wrap: wrap;
    max-width: 600px
  }

  .brnd-faq-faqs {
    width: 95%;
    margin: 0 auto 32px auto;
  }

  .brnd-faq-faq-title-wrap {
    padding-left: 36px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .brnd-faq-faq-chevron {
    top: 24px;
  }
}
