.steps-project--wrapper {
    position: relative;
}

@media screen and (min-width: 768px) {
    .steps-project--wrapper {
        display: flex;
        flex-wrap: wrap;
    }
}

@media screen and (min-width: 768px) {
    .steps-project--wrapper::before {
        content: '';
        width: 75%;
        height: 1px;
        background: var(--gold);
        position: absolute;
        top: 5px;
        left: 12.5%;
        z-index: -1;
    }
}

.steps-project--item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media screen and (min-width: 768px) {
    .steps-project--item {
        flex: 1;
    }
}

.steps-project--item::before {
    content: '';
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    background: white;
    margin-bottom: 8px;
}

.steps-project--item.current::before {
    background: var(--gold);
}

.steps-project--item .number {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-family: var(--title);
    text-align: center;
    color: var(--light-green);
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
}

.steps-project--item .number::before,
.steps-project--item .number::after {
    content: '';
    flex-shrink: 0;
    background: var(--dark-green);
    width: 20px;
    height: 40px;
    -webkit-mask: url("../images/ellipse-left.svg") no-repeat center;
    mask: url("../images/ellipse-left.svg") no-repeat center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.steps-project--item .number::after {
    transform: rotate(0.5turn);
}

.steps-project--item .date {
    color: var(--gold);
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 600;
    line-height: 150%;
    letter-spacing: 1.68px;
    text-transform: uppercase;
    display: block;
    text-align: center;
}

.steps-project--item p {
    text-align: center;
    font-size: 1rem;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.64px;
    margin: 8px auto;
}

.steps-project--navigation {
    margin-top: 32px;
    justify-content: center;
}

@media screen and (min-width: 768px) {
    .steps-project--navigation {
        display: none;
    }
}

.steps-project h2 {
    text-align: center;
    margin-bottom: 32px;
}

@media screen and (min-width: 768px) {
    .steps-project h2 {
        margin-bottom: 56px;
    }
}

.steps-project .owl-stage::before {
    content: '';
    height: 1px;
    width: calc(75% - 150px);
    background: var(--gold);
    position: absolute;
    top: 5px;
    left: 15%;
}