.steps-section{
  margin-bottom: 150px;
  margin-top: 50px;
}

.step-block {
  /* border-top: 1px solid #000; */
  padding: 40px 0;
  overflow: hidden;
  position: relative;
}
.step-block h4 {
  color: #000000;
  font-size: 26px;
  font-family: 'Inter', Arial, sans-serif;
  line-height: NaN;
  font-weight: 400;
  text-transform: uppercase;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
}
.step-block p {
  color: #565656;
  font-size: 16px;
  font-family: 'Inter', Arial, sans-serif;
  line-height: 1.50;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
}
.step-number {
  color: #000000;
  font-size: 38px;
  font-family: 'NeueMachina', Arial, sans-serif;
  line-height: NaN;
  font-weight: 400;
  background-position: center center;
  border-color: transparent;
  border-style: solid;
  text-align: LEFT;
}
.step-image-block {
  overflow: hidden;
  position: relative;
}
.step-image {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}
.step-block:hover .step-image {
  transform: scaleX(1);
}
.step-block::before {
content: "";
position: absolute;
top: 0;
left: 0;
height: 1px;
background: #000;
width: 0;
animation: line-appear 1s forwards;
animation-delay: 0.2s;
}

.step-block:last-of-type::after {
content: "";
position: absolute;
bottom: 0;
left: 0;
height: 1px;
background: #000;
width: 0;
animation: line-appear 1s forwards;
animation-delay: 0.4s;
}

@keyframes line-appear {
from { width: 0; }
to { width: 100%; }
}
