.faq{
    padding: 80px 0;

    .section_header {
        text-align: center;
        h4 {
            font-size: 16px;
            font-weight: 500;
            color: $primaryColor;
            line-height: 32px;
        }

        h5 {
            font-size: 28px;
            font-weight: 500;
            color: $black;
            line-height: 40px;
            text-transform: uppercase;
        }
        h6 {
            font-size: 14px;
            font-weight: 400;
            color: $black;
            line-height: 24px;
        }
    }
    .faq_wrapper{
           padding-top: 50px;
           margin: 0 auto;
           width: 85%;
        .accordion{
            .accordion-item{
                  .accordion-header{
                        .accordion-button{
                              color: $primaryColor;
                              background-color: #0e6d4a2f;
                              font-size: 20px;
                              font-weight: 500;
                             i{
                                padding-right: 20px;
                             }
                             &:focus {
                                box-shadow: 0 0 0 .25rem transparent ;
                            }
                        }
                  }
                  .accordion-body{
                      p{
                        font-size: 16px;
                        color: #333;
                        line-height: 26px;
                      }
                  }
            }
        }
    }
}