.steps {
    display: flex;
    justify-content: space-between;
    gap: 15%;
    padding: 2.5rem 0;
}

.steps__item {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.steps__wrapper {
    display: flex;
    align-items: center;
    gap: 1.875rem;
}

.steps__num {
    font-size: 6.25rem;
    font-weight: 400;
    color: var(--orange);
    opacity: 0.15;
}

.steps__title {
    font-size: 1.875rem;
    line-height: 1.2;
    font-weight: 500;
    color: var(--black);
    text-transform: uppercase;
}

.steps__text {
    font-size: 1.5rem;
    line-height: 1.4;
    color: var(--black);
}

@media(max-width: 1024px) {
    .steps__item { flex-direction: row; align-items: center;}   
    .steps__num { width: 8.5rem; display: flex; justify-content: center;}
    .steps__title { width: 15rem; }
}

@media(max-width:768px){
    .steps__item { flex-direction: column; align-items: unset;}
}