:root {
    --yellow: #fdb822;
    --gray: #684f40;
  }
  h2 {
    color: var(--gray);
    font-size: 17px;
    line-height: 27px;
  }
  p {
    font-size: 14px;
  }
  /* FAQ_sec START*/
  
  .about_sec {
    height: 55vh;
    background-repeat: no-repeat;
    background-image: url(imgs/about/header-bg-1-about.jpg);
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #fff;
    position: relative;
    background-attachment: fixed;
  }
  .layer {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #383232a8;
  }
  .z_index {
    z-index: 99;
  }
  .line {
    width: 10%;
    border: 2px solid var(--yellow);
    height: 2px;
    margin: 12px auto;
    border-radius: 10px;
  }
  .header_wrapper {
    padding-top: 10px;
    padding-bottom: 10px;
    border-top: 2px solid var(--gray);
    border-bottom: 2px solid var(--gray);
    margin-top: 10px;
  }
  
  /* FAQ_sec end*/

  /* accordion style start */
.accordion-button {
    color: var(--gray);
    background-color: #f9f9f9;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 15px;
  }
  .accordion-body {
    font-size: 12px;
  }
  .accordion-item{
    margin-bottom: 20px;
    border: none;
  }
  .accordion-button::after {
    flex-shrink: 0;
    width: var(--bs-accordion-btn-icon-width);
    height: var(--bs-accordion-btn-icon-width);
    margin-left: auto;
    content: "";
    background-image: var(--bs-accordion-btn-icon);
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    transition: var(--bs-accordion-btn-icon-transition);
    background-color: #fdb822;
    color: white;
    width: 44px;
    height: 44px;
    text-align: center;
    background-position: center;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.accordion-button:not(.collapsed) {
  color: var(--gray);
  background-color: var(--bs-accordion-active-bg);
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--bs-accordion-border-color);
}