.faq {
  background-color: #ffffff;
  z-index: 0;
  position: relative;
  border-radius: 0 0 5vw 5vw;
}
.communication-img{
  position: absolute;
  right: 0px;
  top: -4vw;
  height: 6.462vw;
}
.containerFaq {
  display: flex;
  flex-direction: column;
  /* align-items: start; */
}
.heading {
  color: #3D4D5D;
  font-size: 3.333vw;
  font-style: normal;
  font-weight: 300;
  line-height: 32px;
  margin: 0;
  margin-bottom: 3vw;
  text-align: left;

}
.heading span{
  color: #FF752C;
  font-size: 3.333vw;
  font-style: normal;
  font-weight: 800;
  line-height: 32px;
}
.line{
  width: 51px;
  height: 2px;
  background-color: #FF752C;
  margin: 2vh 0 2vh 0.5vw;
}

.accordionBox {
  display: flex;
  flex-direction: column;
}
.accordionBox .active img{
  opacity: 0;
}
.accordion {
  background: #ffffff;
  padding: 2.8vw 0vw 2.8vw 0vw ;
  border-bottom: 1px solid #00000010;
}
.accordion:last-child{
  border-bottom: none;
}
.accHeading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accHeading h3 {
  font-size: 1.389vw;
  line-height: 180%;
  font-weight: 700;
  color:#3D4D5D;
  font-style: normal;
}
.accHeading span {
  flex-shrink: 0;
  transform: rotate(180deg);
}
.accHeading span img{
  height:0.746vw;
  width: 1.493vw;
  cursor: pointer;
}
.accBody {
  display: none;
}
.accBody p {
  font-size: 1.111vw;
  color: #3D4D5D;
  line-height: 175%;
  width: calc(100% - 6.666666666666667vw);
  font-weight: 400;
}
.accordion.active .accBody {
  display: block;
}
.accordion.active .accHeading span {
  transform: rotate(0deg);
}