.bg-white{
  background-color: #fff;
}
.bg-gray {
    background-color: rgb(249 249 250);
}
.faq-container{
  background-color: #fff;
  border: 1px solid #6DCFF6;
  margin-bottom: 15px;
  border-radius: 6px;
  overflow: hidden;
}

.faq-accordion{
  background-color: #fff;
  cursor: pointer;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  padding: 15px 20px 20px 20px;
  transition: 0.4s;
}

.faq  .active, .faq-accordion:hover{
  background-color: #fff;
}

.faq-accordion:after{
  content: url('https://f.hubspotusercontent10.net/hubfs/6891566/arrrow_down.svg');
  float: right;
    transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    margin-top:2px;
  
}

.faq .active:after{
  content: url('https://f.hubspotusercontent10.net/hubfs/6891566/arrow_up.svg'); 
    transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;

}

.faq-panel{
  padding: 0 20px;
  background-color: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.faq-panel p{
  font-size: 16px; 
  border-top: 1px solid rgb(202 219 226);
  padding-top: 15px;
}

.faq-text{
  font-size: 20px;
}

.faq-category{
  font-size: 12px;
  padding-bottom: 20px !important;
}

