.steps {
    background: #F0F0F0;
    padding: 100px 0 150px;
}
/* WEIGH TO GO */
.page-id-222 .steps {
    background: #F5EEE1;
}
.step-item .eyebrow {
    color: #141414;
    font-family: var(--title-font);
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.125rem;
    letter-spacing: 0.3125rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.step-item {
    margin-top: 50px;
}
.step-item ol {
    padding-left: 0;
    list-style-type: none;
    counter-reset: item;
    margin-left: -50px;
}
.step-item ol li {
    counter-increment: item;
    display: grid;
    grid-template-columns: 50px 1fr;
    align-items: flex-start;
    gap: 30px;
}
.step-item ol li::before {
    content: counter(item) " ";
    font-family: var(--title-font);
    font-size: 60px;
    color: #404f4f;
    position: relative;
    top: -10px;
    text-align: center;
}
.step-item ol li + li {
    margin-top: 30px;
}
.step-item p + p {
    margin-top: 0;
}
.steps-body h2 {
    color: #404F4F;
}
@media only screen and (max-width: 1280px) {
    .steps img {
        margin: 0 auto 30px;
    }
    .step-item ol {
        margin-left: 0;
    }
    .steps {
        padding: 60px 0;
    }
}