/* q & a */
.accordion {
   
    background: white;
    color: black;
    cursor: pointer;
    padding: 18px;
    width: 100%;
   border: 1px solid rgb(8 199 254);
    text-align: left;
    outline: none;
    font-size: 18px;
    font-weight: 500;
    transition: 0.5s;
    display: flex;
    justify-content: space-between;
  }
  .section-q{
    padding: 25px;
    margin: 50px 0;
  }
  .section-q h2{
    font-weight: 600;
  }
  
  .section-q .active, .accordion:hover {
    background-color: rgb(8 199 254);
    color: white;
  }
  
  .accordion:after {
    content: '\002B';
    font-weight: bold;
    float: right;
    margin-left: 5px;
  }
  
  .section-q .active:after {
    content: "\2212";
  }
  
  .panel {
    padding: 0px 18px;
    background-color: white;
   
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }
  .panel p{
      padding-top: 10px;
      margin-top: 20px;
      text-align: left;
      color: black;
  }
  
  
  @media screen and (max-width:600px) {
      .accordion {
          width: 100%;
          font-size: 15px;
          
      }
  .section-q  .prpl{
    font-size: 30px !important;
   
  }   
 
      
  }
  /* q & a */