/**
 * Styles for the FAQ preview block displayed on the home page (hookDisplayHome)
 */
.home-faq {
  padding: 1rem 0 0 0;
}

.home-faq-label {
  color: #118377;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: .25rem;
}

.home-faq-title {
  color: #171718;
  font-size: 1.9375rem;
  font-weight: 800;
  margin-bottom: .5rem;
}

@media (max-width: 767.98px) {
  .home-faq-title {
    font-size: 1.5rem;
  }
}

.home-faq .faq-container {
  max-width: 860px;
  margin: 2rem auto 0 auto;
}

.home-faq .faq-container .card {
  margin-bottom: 1.25rem;
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 10px !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .04);
  overflow: hidden;
}

.home-faq .faq-container .card-header {
  background: #fff !important;
  border: none;
  border-radius: 10px !important;
  padding: 0;
}

.home-faq .faq-container .btn-link {
  position: relative;
  color: #171718;
  text-decoration: none;
  width: 100%;
  text-align: left;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 1.4rem 4.5rem 1.4rem 1.5rem;
  border-radius: 10px;
}

.home-faq .faq-container .btn-link:after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 1.25rem;
  margin-top: -17px;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
  border-radius: 50%;
  background: #118377;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 600;
  transform: rotate(45deg);
  transition: transform .25s ease;
}

.home-faq .faq-container .btn-link.collapsed:after {
  transform: rotate(0deg);
}

.home-faq .faq-container .btn-link:hover,
.home-faq .faq-container .btn-link:focus {
  text-decoration: none;
  color: #118377;
}

.home-faq .faq-container .card-body {
  padding: 0 4.5rem 1.4rem 1.5rem;
  line-height: 1.6;
  color: #464646;
}

.home-faq .faq-container .card-body a {
  color: #118377;
  text-decoration: underline;
}

.home-faq .home-faq-cta {
  text-align: center;
  margin-top: 1.5rem;
}

.home-faq .home-faq-cta p {
  color: #585858;
  margin-bottom: 1rem;
}

.home-faq .home-faq-cta .btn {
  text-transform: initial;
  padding: .6rem 1.5rem;
}
