.faq-02 {
  padding-block: 150px 50px;
}
.faq-02 .faq-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform-origin: left;
  position: relative;
  padding-right: 40px;
}
.faq-02 .faq-title h3 {
  transition: transform 0.2s ease-in-out;
}
.faq-02 .faq-title::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 30px;
  height: 100%;
  background-image: url(../assets/plus.svg);
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-50%);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.faq-02 .faq-item.faq-open .faq-title::before {
  transform: translateY(-50%) rotate(-90deg);
  opacity: 0;
}
.faq-02 .faq-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 30px;
  height: 100%;
  background-image: url(../assets/less.svg);
  background-repeat: no-repeat;
  background-position: center;
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
  opacity: 0;
}
.faq-02 .faq-item.faq-open .faq-title::after {
  transform: translateY(-50%);
  opacity: 1;
}
.faq-02 .faq-item {
  position: relative;
}
.faq-02 .faq-item:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}
.faq-02 .faq-item::after {
  content: "";
  position: absolute;
  bottom: 16px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--primary);
  transition: bottom 0.3s ease-in-out 0.2s;
}
.faq-02 .faq-item.faq-open::after {
  bottom: 0;
  transition: bottom 0.3s ease-in-out;
}
.faq-02 .faq-item .icon {
  transition: all 0.5s ease-in-out;
}
.faq-02 .faq-item.faq-open .icon {
  transform: rotate(180deg);
}
.faq-02 .icon img {
  width: 28px;
}
.faq-02 .faq-body {
  max-height: 0px;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  margin-bottom: 12px;
}
