.steps-section {
  position: relative;
}
.steps-section .section-title {
  text-align: center;
}
@media only screen and (max-width: 575.98px) {
  .steps-section .section-title p {
    font-size: 14px;
    line-height: 24px;
  }
}
.steps-section .step-row {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (min-width: 992px) {
  .steps-section .step-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0 50px;
  }
}
.steps-section .step-row .step {
  position: relative;
  text-align: center;
  margin: 0 0 50px;
}
@media only screen and (min-width: 992px) {
  .steps-section .step-row .step {
    width: calc(50% - 25px);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
}
.steps-section .step-row .step .image {
  margin: 0 auto 20px;
}
.steps-section .step-row .step img {
  display: block;
  max-width: 340px;
  height: auto;
  margin: 0 auto;
}
.steps-section .step-row .step h3 {
  font-size: 18px;
  margin: 0 0 16px;
}
.steps-section .step-row .step p {
  font-size: 16px;
  line-height: 30px;
  margin: 0;
}
@media only screen and (max-width: 575.98px) {
  .steps-section .step-row .step p {
    font-size: 14px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 991.98px) {
  .steps-section .step-row .step .step-arrow-1 {
    margin-top: 40px;
  }
}
.steps-section .step-row .step .step-arrow-2 {
  display: none;
}
@media only screen and (min-width: 992px) {
  .steps-section .step-row .step:nth-of-type(odd) .step-arrow-1 {
    position: absolute;
    top: 50%;
    right: -4rem;
    display: block;
    transform: translateY(-50%);
  }
  .steps-section .step-row .step:nth-of-type(odd) .step-arrow-2 {
    display: none;
  }
}
@media only screen and (min-width: 992px) {
  .steps-section .step-row .step:nth-of-type(even) {
    margin-top: 25%;
  }
  .steps-section .step-row .step:nth-of-type(even) .step-arrow-2 {
    position: absolute;
    top: 100%;
    left: -5rem;
    display: block;
    transform: translateY(-100%);
  }
  .steps-section .step-row .step:nth-of-type(even) .step-arrow-1 {
    display: none;
  }
}
.steps-section .step-row .step:last-child .step-arrow-1,
.steps-section .step-row .step:last-child .step-arrow-2 {
  display: none !important;
}
