/* q & a */
.accordion {
  color: black;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  /* border: none; */
  text-align: left;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  transition: 0.5s;
  display: flex;
  justify-content: space-between;
  border: 2px solid #00adef;
  background: white;
  }
  .section-q{
    padding: 25px;
  }
  .section-q h2{
    font-weight: 600;
    margin-bottom: 50px;
  }
  
  .section-q .active, .accordion:hover {
    background-color:#00adef;
    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;
    color: black;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }
  .panel p{
      padding-top: 10px;
      margin-top: 20px;
      text-align: left;
  }
  
  
  @media screen and (max-width:600px) {
      .accordion {
          width: 100%;
          font-size: 15px;
          
      }
  .section-q  .prpl{
    font-size: 30px !important;
   
  }   
 
      
  }
  /* q & a */