.title-faq {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
}

.acc {
  max-width: 1430px;
  margin: 15px auto;
  padding: 0 15px;
}
.acc h3 {
  font-size: 14px;
  color: #000000;
  cursor: pointer;
  position: relative;
  text-transform: capitalize;
  padding: 13px;
  border-radius: 3px;
  font-weight: 600;
  border-bottom: 1px solid #e7e7e7;
}
.acc h3:after {
  content: "";
  background: url(../image/faq-chevron.png) top 7px right no-repeat;
  position: absolute;
  right: 20px;
  width: 20px;
  height: 20px;
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
  background-size: 122%;
}
.acc .content {
  background-color: #fff;
  display: none;
  padding: 10px;
}
.acc .content-inner {
  padding: 15px;
  line-height: 1.5;
}
.acc .active h3:after {
  transform: translateY(-50%);
  background-position: bottom 6px right;
}

