.faq {
  /* @media (min-width:1248px){
      margin-left: calc((100vw - 1200px) * -0.5);
      margin-right: calc((100vw - 1200px) * -0.5);
      padding-right: calc((100vw - 1200px) * 0.5);
      padding-left: calc((100vw - 1200px) * 0.5);
  } */
  overflow: hidden;
  position: relative;
  padding: 100px 0;
}
@media (min-width: 991px) {
  .faq {
    padding: 150px 0;
  }
}
.faq h2 {
  margin: 0 0 80px;
}
@media (min-width: 991px) {
  .faq h2 {
    margin-bottom: 100px;
  }
}
.faq-head {
  text-align: center;
}
.faq-main {
  max-width: 1080px;
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 48px;
}
.faq-item h4 {
  margin: 0;
  position: relative;
  color: #fff;
  cursor: pointer;
  padding-left: 46px;
}
@media (max-width: 991.98px) {
  .faq-item h4 {
    font-size: 20px;
  }
}
.faq-item h4 span {
  width: 30px;
  height: 30px;
  position: absolute;
  left: 0;
  top: 0;
}
.faq-item h4 span::before {
  content: "";
  width: 20px;
  height: 2px;
  border-radius: 2px;
  position: absolute;
  left: 5px;
  top: 14px;
  background: #FDF3BE;
}
.faq-item h4 span::after {
  content: "";
  width: 2px;
  height: 20px;
  border-radius: 2px;
  position: absolute;
  left: 14px;
  top: 5px;
  background: #FDF3BE;
  transition: all 0.3s ease;
}
.faq-item h4.on span::after {
  height: 0;
  top: 15px;
}
.faq-item-cnt {
  color: #FDF3BE;
  padding-top: 12px;
  display: none;
  padding-left: 46px;
  line-height: 1.625;
}
@media (min-width: 992px) {
  .faq-item-cnt {
    font-size: 1.125rem;
    line-height: 1.5;
  }
}
.faq-item-cnt p {
  margin-bottom: 20px;
}
.faq-item-cnt p:last-child {
  margin-bottom: 0;
}