.faqs-header{

  .inner-container{
    display: grid;
    grid-template-columns: 1fr;
    @media(min-width: 768px){
      grid-template-columns: 1fr 1fr;
    }
    gap:40px;
    .left{
      color:var(--blue);
      p{
        margin-bottom: 30px;
        &.dont{
          display: flex;
          align-items: center;
          svg{
            margin-right:30px;
            width:30px;
          }
          text-transform: uppercase;
        }
      }
    }
    .right{

      ul{
        padding:0px;
        list-style: none;
        li{
          color:var(--blue);
          border-bottom:1px solid var(--blue);
          margin-bottom: 30px;
          padding-bottom:30px;

          &.open{

          }
          h3{
            cursor: pointer;
            font-weight: bold;
          }
          div{
            height: 0;
            overflow: hidden;
            transition: height 0.3s ease;
            p{
              &:first-child {
                padding-top: 30px;
              }
            }
          }
        }

      }
    }
  }
}
