

.hero-banner-row{
    border-radius: 0 0 70px 0;
}

.bf-faq .bf-faq-plus {
  width: 16px; height: 16px; display: inline-block; position: relative; flex: 0 0 16px;
}
.bf-faq .bf-faq-plus::before,
.bf-faq .bf-faq-plus::after {
  content:""; position:absolute; top:50%; left:50%; background:#0097A9; transform:translate(-50%,-50%);
}
.bf-faq .bf-faq-plus::before { width: 15px; height: 2px; }
.bf-faq .bf-faq-plus::after  { width: 2px; height: 15px; transition:opacity .2s ease; }
.bf-faq .bf-faq-q[aria-expanded="true"] .bf-faq-plus::after { opacity:0; }

/* Smooth accordion animation */
.bf-faq .bf-faq-a {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.35s ease;
}
.bf-faq .bf-faq-a.open {
  max-height: 500px; /* should be larger than tallest answer */
  opacity: 1;
}
