.step-wrap {
    display: grid;
    grid-template-columns: 1fr 3fr;
    margin-top: 5rem;
    padding-bottom: 1rem;
    grid-gap: 2rem;
}

.step-wrap span {
    color: red;
    font-weight:100;
}

@media (max-width: 992px) {
    .step-wrap {
        padding-bottom: 0;
    }
}

.step-circle-content {
    position: relative;
    text-align: center;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

.step-circle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: var(--gold);
    border: 5px solid #fff0cb;
    z-index: -1;
}

@media (max-width: 992px) {
    .step-circle {
        width: 110px;
        height: 110px;
    }
}

.step-circle-number {
    margin-bottom: .25rem;
    font-weight: 600;
}

.ref-header-logo {
    display: flex;
    /* justify-content: center; */
}

.ref-header-logo img {
    width: 15rem;
}

@media (max-width: 992px) {
    .step-circle-text,
    .step-explainer {
        font-size: .9rem;
        min-width: 5.5rem;
    }
}