/* Import separate CSS */
@import url("../../fonts.css");
@import url("faq-mobile.css");
@import url("faq-tablet.css");
@import url("faq-desktop.css");
@import url("../../general-styles/footer.css");
@import url("../../general-styles/navbar.css");
@import url("../../general-styles/general.css");

.section-faq-banner,
.section-list {
  height: max-content;
}
.container-content-banner {
  position: relative;
  display: block;
  width: 100%;
}
.img-banner-faq {
  opacity: 1;
  display: block;
  width: 100%;
  height: 15rem;
  object-fit: cover;
  border-radius: 20px;
  backface-visibility: hidden;
}
.banner-content-title {
  position: absolute;
  border-radius: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  color: #f1f1f1;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: inherit;
}
.title-banner {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}
.form-search-faq {
  border-radius: 15px;
}
.btn-search-faq {
  background-color: #3cc0fe;
  border-radius: 15px;
  font-weight: 700;
  color: #fff;
}
.fa-search {
  color: #fff;
}
.wrapper-kategori {
  display: grid;
  gap: .5rem;
  grid-auto-flow: column;
  overflow-x: auto;
  padding: .5rem .25rem;
}
.btn-content-faq {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 0px 8px 0px rgba(194,194,194,1);
  -webkit-box-shadow: 0 0px 8px 0px rgba(194,194,194,1);
  -moz-box-shadow: 0 0px 8px 0px rgba(194,194,194,1);
  font-weight: 800;
  color: #5b5b5b;
}
.btn-content-faq.active {
  background-color: #fdd314;
}
.title-kategori {
  overflow: hidden;
  white-space: nowrap;
  display: block;
  text-overflow: ellipsis;
}
.card-faq {
  border-radius: 15px;
  border: none;
  box-shadow: 0 6px 12px 0px rgba(194,194,194,1);
  -webkit-box-shadow: 0 6px 12px 0px rgba(194,194,194,1);
  -moz-box-shadow: 0 6px 12px 0px rgba(194,194,194,1);
}
.card-header-title {
  background-color: #fff;
  border-bottom: #e4e4e4 1px solid;
  margin-left: 1rem;
  margin-right: 1rem;
}
.btn-faq {
  font-weight: 600;
  color: #5b5b5b;
}
.btn-faq:hover {
  text-decoration: none;
  color: #000;
}
.btn-faq:active {
  text-decoration: none;
  color: #000;
}
.btn-faq::after {
  content: "\f107";
  color: #333;
  float: right;
  margin-left: 8px;
  font-family: "FontAwesome";
  font-size: 20px;
}
.btn-faq[aria-expanded="true"]::after {
  content: "\f106";
}
.faq-answer {
  font-weight: 400;
  color: #5b5b5b;
  margin-bottom: 0.5rem;
}