/******* FAQ START *******/
#faq-section{
    /* padding: 130px 370px 130px 370px; */
  }
  .faq-section-wrap{
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    justify-content: center;
    text-align: center;
  }
  .faq-left{
    /* width: 40%; */
    width: 100%;

  }
  .faq-right{
    /* width: 50%; */
    width: 60%;
    margin-top: 60px;
  }
  .faq-block-title h2{
    font-family: 'Poppins';
    font-size: 40px;
    line-height: 44px;
    font-weight: 600;
    color: #000;
  }
  .faq-blcok-btn {
    display: flex;
    justify-content: center;
    margin-top: 30px;
  }
/******* FAQ END *******/

/******* ACCORDION START *******/
.faq-wrap h2 {
    font-family: 'Poppins';
    font-size: 25px;
    line-height: 30px;
    color: #0A143B;
    text-align: center;
    margin-bottom: 70px;
    font-weight: 700;
  }
  [data-accordion-element-content] {
    height: auto;
    overflow: hidden;
    transition: height 0.5s;
  }
  .faq-wrap input {
    position: absolute;
    opacity: 0;
    z-index: -1;
  }
  .accordion {
    width: 100%;
    color: white;
    overflow: hidden;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--Core-Bright-Gray);
  }
   .accordion:last-child {
    margin-bottom: 0;
  }
   .accordion:hover {
    transform: 1s;
  }
   .accordion-label {
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    /* justify-content: space-between; */
    padding: 16px;
    background: #fff;
    cursor: pointer;
    font-family: 'Poppins';
    font-size: 18px;
    color: #0A143B;
    font-weight: 400;
    position: relative;
    padding-right: 35px;
    text-align: left;
  }
   .accordion-label a{
    margin: 0 5px;
    color: var(--Core-Violet);
    transition: color 0.3s;
  }
  .accordion-label a:hover{
    color: var(--Core-Dark-Violet);
    transition: color 0.3s;
  }
   .accordion-label:hover {
    /* box-shadow: 0px 5px 9px #0a143b42; */
  }
   .accordion-label::after {
    content: "\276F";
    width: 16px;
    height: 16px;
    text-align: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    position: absolute;
    right: 0px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
   .accordion-content {
    height: 0;
    padding: 0 16px;
    color: rgba(4, 57, 94, 1);
    background: white;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
   .accordion-content p {
    font-family: 'Poppins';
    /* font-size: 14px; */
    font-size: 15px;
    line-height: 26px;
    color: #232529;
    font-weight: 400;
    margin: 0;
    text-align: left;
  }
   .accordion-content p a {
    color: var(--Core-Violet);
  }
  input:checked+ .accordion-label {
    background: #fff;
  }
  input:checked+ .accordion-label::after {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    right: 10px;
  }
  input:checked~ .accordion-content {
    height: auto;
    /* padding: 16px; */
    padding: 0px 16px 16px 16px;
  }
  .faq-right .faq-blcok-btn{
    display: none;
  }
  @media(max-width: 1000px){
    .faq-left{
      margin-bottom: 30px;
    }
    .faq-left .faq-blcok-btn{
      display: none;
    }
    .faq-right .faq-blcok-btn{
      display: flex;
    }
    .faq-left,
    .faq-right{
      width: 100%;
    }
    .faq-block-title h2{
      font-size: 20px;
      text-align: center;
    }
    .faq-blcok-btn{
      display: flex;
      justify-content: center;
    }
     .accordion-label {
      font-size: 14px;
    }
     .accordion-content p {
      font-size: 12px;
      line-height: 20px;
    
    }
  }
  /******* ACCORDION END *******/