.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;
}
.heading {
  color: #000;
  font-size: 3vw;
  font-style: normal;
  font-weight: 800;
  margin: 0;
  margin-bottom: 0.5vw;
  text-align: center;

}
.heading span{
  /* background: linear-gradient(90deg, #f76f19, #803de7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; */
  color: #ED675C;
}
.faq_sub_heading{
  font-size: 1.3vw;
  color: #000;
  font-weight: 600;
  text-align: center;
  margin-bottom: 4vw;
}

.line{
  width: 51px;
  height: 2px;
  background-color: #FF752C;
  margin: 2vh 0 2vh 0.5vw;
}

.accordionBox {
  display: flex;
  flex-direction: column;
}
.accHeading span img{
  transform: rotate(0deg);
}
.accHeading .active span img{
  transform: rotate(180deg);
}


.accordion {
  background: #ffffff;
  padding: 1vw 0vw 0.9vw 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.4vw;
  width: 1.4vw;
  cursor: pointer;
}
.accBody {
  display: none;
}
.accBody p {
  font-size: 0.9vw;
  color: #3D4D5D;
  line-height: 175%;
  font-weight: 600;
}
.accordion.active .accBody {
  display: block;
}
.accordion.active .accHeading span {
  transform: rotate(0deg);
}