.block-steps h2.heading-size-1 {
    display: flex;
    flex-direction: column;
}

.steps-wrapper {
    display: flex;
    position: relative;
	margin-top: 8rem;
}

.step-item {
    width: 25%;
	padding-right: 2rem;
}

.step-number {
    width: 3rem;
    height: 3rem;
    display: flex;
    text-align: center;
    justify-content: center;
    background: #f0bfff;
    color: #0e1e21;
    border-radius: 100%;
}

.steps-wrapper:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: #f0bfff;
    top: 1.5rem;
    z-index: -1;
}

.step-item:last-of-type {
    background: #0e1e21;
}




/* Desktop small */
@media only screen and (max-width: 1000px) {
.steps-wrapper {
    flex-direction: column;
}

.step-number {
    position: absolute;
    left: 0;
}

.step-item h4 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.step-item {
    margin-bottom: 4rem;
	padding-left: 6rem;
    width: 100%;
    padding-right: 0;
}

.steps-wrapper:before {
    width: 2px;
    height: 90%;
    left: 1.5rem;
}

.step-item:last-of-type {
    margin-bottom: 0;
}
}

/* Tablet */
@media only screen and (max-width: 700px) {

}


/* Iphone */
@media only screen and (max-width: 500px) {
  .step-item {
    padding-left: 4rem;
}

.step-number {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.6rem;
}

.steps-wrapper:before {
    left: 1.1rem;
}
}

