.faq {
  position: relative;
  overflow: initial;
}

.faq-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  top: 4.6875rem;
  width: 98%;
  margin: 0 auto;
}

.faq-menu li a {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: block;
  border-bottom: 1px solid rgba(43, 79, 137, 0.4);
  padding-bottom: .625rem;
  margin-bottom: 1.75rem;
}

.faq-menu li a:hover {
  font-weight: 800;
}

.faq-menu li.current_page_item a {
  font-weight: 700;
}

.faq-title {
  width: 98%;
  margin: 0 auto;
  margin-bottom: 3.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  font-family: "Darker Grotesque", serif;
  border-bottom: 1px solid rgba(43, 79, 137, 0.4);
  padding-bottom: .625rem;
}

.faq-box {
  background-color: whitesmoke;
  border-radius: 1.25rem;
  padding: 2.5rem 1.5rem;
}

@media (min-width: 768px) {
  .faq-box {
    padding: 3rem;
  }
}

@media (min-width: 992px) {
  .faq-box {
    padding: 6rem;
  }
}

.faq-box-item {
  border-bottom: 1px solid rgba(43, 79, 137, 0.4);
  margin-bottom: 2.8125rem;
  padding-bottom: 2.8125rem;
}

.faq-box-item-head {
  background: transparent;
  border: 0;
  outline: none;
  box-shadow: none;
  padding: 0;
  text-align: start;
}

.faq-box-item-head h4 {
  color: var(--blue);
  font-size: 1.75rem;
  font-weight: 500;
  font-family: "Darker Grotesque", serif;
  transition: all 0.3s ease;
}

@media (min-width: 992px) {
  .faq-box-item-head h4 {
    font-size: 2.5rem;
  }
}

.faq-box-item-head:hover h4, .faq-box-item-head.active h4 {
  font-weight: 700;
}

.faq-box-item-cont {
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: all 0.3s ease;
}

.faq-box-item-cont p, .faq-box-item-cont ul {
  color: var(--blue);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.1;
}

.faq-box-item-cont.active {
  height: auto;
  visibility: visible;
  transition: all 0.3s ease;
  transform: none;
  margin-top: 1rem;
}

.faq-box-item-cont.preactive {
  opacity: 1;
}
