

.step-by-step-box {
  display: flex;
  flex-direction: column;
  border: none;
  cursor: pointer;
  font-family: Georgia, 'Times New Roman', Times, serif;
  margin-bottom: 12px;
  padding-left: 2rem;
  
}

.step-by-step-box .step-box-title {
  position: relative;
  display: flex;
  width: 100%;
  font-size: 16px;
  font-family: Georgia, 'Times New Roman', Times, serif;
  cursor: pointer;
  justify-content: space-between;
  flex-direction: row-reverse;
  box-sizing: border-box;
  margin-bottom: 12px;
}
.step-box-title:hover{
  font-weight: 600;
  color: #222222;

}



.step-by-step-box .step-box-content {
  display: none;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 300;
  color: #444;
  border-top: 1px dashed #222222;
  border-bottom: 1px dashed #222222;



}

/*open-close*/


.step-by-step-box input[type="checkbox"] {
  position: absolute;
  height: 0;
  width: 0;
  opacity: 0;
}

.step-by-step-box input[type="checkbox"]:checked ~ .step-box-content {
  display: block;
}

.step-by-step-box input[type="checkbox"]:checked ~ .step-box-title .icon:after {
  content: "\f068";
  font-family: "Font Awesome 6 Free";
  font-size: 14px;
  font-weight: 700;
  color: #a9a9a9;
  transition: 0.3s;
}


.step-by-step-box input[type="checkbox"] ~ .step-box-title .icon:after {
  content: "\2b";
  font-family: "Font Awesome 6 Free";
  font-size: 14px;
  font-weight: 700;
  color: #a9a9a9;
  transition: 0.3s;
}

ol, li {
  margin: 0;
  padding: 0;
}