.banner {
  height: 30vh;
  background: var(--purple);
  padding: 15px;
}

.banner .banner-wrapper {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: var(--contentMaxWidth);
  margin: 0 auto;
  color: var(--white);
}

.accordions {
  height: 100%;
  background: var(--white);
  padding: 30px;
  background-repeat: no-repeat;
  background-position: left center;
}

.accordions .accordions-wrapper {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  max-width: var(--contentMaxWidth);
  margin: 0 auto;
}

.accordions .accordion-item {
  cursor: pointer;
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 20px;
          column-gap: 20px;
  -ms-grid-columns: auto 24px;
      grid-template-columns: auto 24px;
      grid-template-areas: 'title activator' 'description .' 'content .';
  width: 100%;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  border-radius: var(--card-radius);
  padding: 15px;
  background: var(--white);
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25), inset 5px 0 0 var(--purple);
          box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25), inset 5px 0 0 var(--purple);
  overflow-wrap: break-word;
  position: relative;
  white-space: normal;
}

.accordions .accordion-item .accordion-title {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: title;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 8px;
}

.accordions .accordion-item .accordion-description {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: description;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  color: #666;
  letter-spacing: 0.15px;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 8px;
}

.accordions .accordion-item .accordion-activator {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: activator;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: transparent;
  border: none;
  -ms-flex-item-align: center;
      align-self: center;
  cursor: pointer;
  color: #666;
}

.accordions .accordion-item .accordion-content {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: content;
}

.accordions .accordion-item .accordion-content .divider {
  margin: 15px 0;
  background: #ddd;
  height: 1px;
  width: 100%;
}

.accordions .accordion-item .accordion-children .child-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  margin-bottom: 15px;
}

.accordions .accordion-item .accordion-children .child-title .title {
  font-weight: 700;
  letter-spacing: 0.15px;
  font-size: 0.9375rem;
}

.accordions .accordion-item .accordion-children .child-title hr {
  display: block;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0px;
  height: 0;
  max-height: 0;
  border: solid;
  border-width: thin 0 0;
  -webkit-transition: inherit;
  transition: inherit;
  border-color: rgba(0, 0, 0, 0.12);
}

.accordions .accordion-item .accordion-children .content-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.accordions .accordion-item .accordion-children .content-wrapper .child-content {
  max-width: 100%;
  font-size: 0.9175rem;
  font-weight: 400;
  line-height: 120%;
  margin-bottom: 10px;
  padding-right: 8%;
}

.accordions .accordion-item .accordion-children .content-wrapper .child-content :first-child {
  font-weight: bold;
}

.accordions .accordion-item .expand-enter-active,
.accordions .accordion-item .expand-leave-active {
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
  overflow: hidden;
}

.accordions .accordion-item .expand-enter,
.accordions .accordion-item .expand-leave-to {
  height: 0;
}
/*# sourceMappingURL=faq.css.map */