/* Style the buttons that are used to open and close the accordion panel */
.accordian-tabs .accordion {
  /*background-color: #eee;*/
  color: #444;
  cursor: pointer;
  padding: 10px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.accordian-tabs .active, .accordion:hover {
  background-color: #ccc;
}

/* Style the accordion panel. Note: hidden by default */
.accordian-tabs .panel {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
}
.accordian-tabs .accordion {
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
}
.accordian-tabs .accordion {
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
}
.accordian-tabs .accordion h2 {
    font-size: 19px;
    padding: 0 0;
    margin: 12px 0;
}
.accordian-tabs .panel p {
    font-size: 17px;
}
.accordian-tabs {
    padding: 40px 0;
}

@media only screen and (min-width: 100px) and (max-width: 767px) {
    .accordian-tabs .accordion h2{
            font-size: 15px;
    }
}
@media only screen and (min-width: 100px) and (max-width: 375px)  {
     .accordian-tabs .accordion h2{
            font-size: 13px;
    }
}