@media (min-width: 991.98px) {
  #faq {
    padding-bottom: 112px;
  }
}
#faq .content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#faq .content-wrapper .content {
  width: calc(50% - 60px);
}
@media (max-width: 1440px) {
  #faq .content-wrapper .content {
    width: calc(60% - 50px);
  }
}
@media (max-width: 991.98px) {
  #faq .content-wrapper .content {
    width: 100%;
  }
}
#faq .content-wrapper .video-box {
  width: calc(50% - 60px);
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 1440px) {
  #faq .content-wrapper .video-box {
    width: calc(40% - 50px);
  }
}
@media (max-width: 1200px) {
  #faq .content-wrapper .video-box {
    width: 40%;
  }
}
@media (max-width: 991.98px) {
  #faq .content-wrapper .video-box {
    display: none;
  }
}
#faq .content-wrapper .video-box .squareImg {
  padding-top: 70%;
}
.faq-list {
  list-style: none;
  padding: 0;
}
.faq-list .faq-accordion {
  padding: 4px 0;
}
@media (max-width: 576px) {
  .faq-list .faq-accordion {
    padding: 0;
  }
}
.faq-list .faq-accordion:not(:last-child) {
  border-bottom: 1px solid #e3e3e3;
}
.faq-list .faq-accordion.active .faq-content {
  padding-bottom: 20px;
}
.faq-list .faq-accordion.active .faq-button {
  font-weight: 600;
}
.faq-list .faq-accordion.active .faq-button:after {
  transform: rotate(0);
}
.faq-list .faq-button {
  display: block;
  width: 100%;
  font-weight: 500;
  font-size: 15px;
  line-height: 18px;
  color: #232528;
  text-decoration: none;
  position: relative;
  padding: 20px 30px 20px 0;
}
@media (max-width: 576px) {
  .faq-list .faq-button {
    font-size: 14px;
    line-height: 20px;
  }
}
.faq-list .faq-button:before,
.faq-list .faq-button:after {
  content: "";
  position: absolute;
  width: 16px;
  border-radius: 1px;
  border: 1px solid #232528;
  background: #232528;
  right: 0;
  top: 28px;
  transition: 0.3s;
}
.faq-list .faq-button:after {
  transform: rotate(90deg);
}
.faq-list .faq-content {
  max-height: 0;
  overflow: hidden;
  transition: 0.3s;
  padding-right: 40px;
}
.faq-list .faq-content p {
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: #4d4f53;
}
@media (max-width: 576px) {
  .faq-list .faq-content p {
    font-size: 13px;
    line-height: 20px;
  }
}
