/* Scrolling Sitewide Banner */

.blockWrap_fe4b55dad900481498f2040b97e0fb42 {
  background-color: #c9c3b9;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 8px 0;
}

.blockWrap_fe4b55dad900481498f2040b97e0fb42 .scrolling-banner {
  display: flex;
  width: max-content;
  animation: bannerScroll 35s linear infinite;
  align-items: center;
  will-change: transform;
}

.blockWrap_fe4b55dad900481498f2040b97e0fb42 .scrolling-banner span {
  display: inline-block;
  white-space: nowrap;
  padding-right: 100px;
  color: #000000;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.blockWrap_fe4b55dad900481498f2040b97e0fb42 p {
  margin: 0 !important;
}

.headerAndNavContainer {
  padding-top: 0px !important;
}

@keyframes bannerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.faq-section {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.faq-question {
  width: 100%;
  padding: 22px 0;
  background: transparent !important;
  border: none !important;
  text-align: left;
  font-size: 18px;
  font-family: inherit;
  font-weight: 400;
  cursor: pointer;
  position: relative;
  color: #000 !important;
  box-shadow: none !important;
  outline: none !important;
}

.faq-question:hover,
.faq-question:focus,
.faq-question:active {
  background: transparent !important;
  color: #000 !important;
  box-shadow: none !important;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 22px;
  line-height: 1;
  color: #000;
}

.faq-item.active .faq-question::after {
  content: "–";
}

.faq-answer {
  display: none;
  padding: 0 40px 22px 0;
}

.faq-answer p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
}