.step_by_step_h1 {
  font-weight: bold;
  text-align: center;
  margin: 40px 0;
  font-size: 30px;
}
.step_by_step_h2 {
  font-weight: bold;
  text-align: center;
  margin: 40px 0;
  font-size: 26px;
}
.step_explanation h2 {
  margin: 8px 0 10px;
  font-size: 20px;
}
.step_holder {
  margin: 20px auto;
  padding: 10px 20px;
  display: flex;
  width: 80%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.step_holder h3 {
  margin: 8px 0 10px !important;
  font-size: 18px;
  border-bottom: 2px dotted #155e7b;
}
.step_holder_inner {
  padding-top: 15px;
  display: flex;
}
.step_circle {
  height: 35px;
  border: 2px solid #dfaa43;
  text-align: center;
  font-size: 20px;
  padding: 10px 10px 0;
}
.step_explanation {
  padding: 4px 10px;
}
.step_explanation a img {
  width: 100%;
}
.step_image {
  width: 400px;
  padding-top: 130px;
  opacity: 0.8;
}
.step_button {
  margin-top: 10px;
  color: white;
  padding: 5px 10px;
  width: fit-content;
  background-color: #dfaa43;
  border-radius: 5px;
}
.dot {
  margin: 0 auto 5px;
  height: 8px;
  width: 8px;
  background-color: #dfaa43;
  border-radius: 50%;
  color: white;
}
.arrow {
  margin: 0 auto 5px;
  text-align: center;
}
.arrow i {
  color: #dfaa43;
}
.text-right {
  padding-left: 20px;
  border-left: 2px solid #e5e5e5;
}
@media only screen and (max-width: 800px) {
  .step_holder {
      display: block;
      width: 100%;
      padding: 10px 0;
  }
  .step_holder_inner {
    display: block;
  }
  .step_image {
      width: unset;
  }
  .text-right {
    padding: 0 10px;
    border-left: 0;
  }
}