.faq_content {
  margin-right: 20px;
  margin-bottom: 20px;
  background-color: white;
}

.faq_content h1 {
  padding: 0 18px;
  text-align: center;
  font-size: 25px;
  color: #13b7d4;
  padding: 18px;
  width: 100%;
  /*margin-bottom: 20px;
  margin-top: 20px;*/
}

 /* Style the buttons that are used to open and close the accordion panel */
.faq_content .accordion {
  background-color: white;
  color: black;
  font-size: 15px;
  cursor: pointer;
  padding: 18px;
  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) */
.faq_content .active, .accordion:hover {
  background-color: #13b7d4 ;
  color: white;
}

/* Style the accordion panel. Note: hidden by default */
.faq_content .panel {
  background-color: white;
  display: none;
  overflow: hidden;
  color: black;
  font-size: 15px;
  padding: 18px;
} 
.faq_content ol {
  list-style: none;
  counter-reset: li
}
.faq_content ol li::before {
  content: counter(li); 
  color: #13b7d4;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
  font-weight: bold;
}
.faq_content ol li {
  counter-increment: li
}
.faq_content .borderLine {
  border-bottom: 1px solid black;
  margin-left: 150px;
  margin-right: 150px;
}
