.steps-block {
    margin-top: var(--eighty);
    position: relative;
}

.steps-block .steps-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: var(--fourty);
}

.steps-block .steps-holder {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--thirty);
}

.steps-block .step {
    width: 100%;
    height: auto;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    background: var(--bg-light);
    border-radius: 10px;
}

.steps-block .step .step-inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    align-self: stretch;
    gap: var(--fourty);
    padding: var(--thirty);
}

.steps-block .step-counter {
    width: var(--5040);
    height: var(--5040);
    display: flex;
    align-items: center;
    place-content: center;
    border-radius: 10px;
    background: var(--accent);
    font-family: var(--second-family);
    font-weight: 600;
    font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
    line-height: 120%;
    color: var(--card);
}

.steps-block .step-text__holder {
    display: flex;
    flex-direction: column;
    gap: var(--fifteen);
}

.steps-block .step-name {
    font-family: var(--second-family);
    font-weight: 600;
    font-size: var(--h5);
    line-height: 120%;
    color: var(--head);
}

.steps-block .step-value,
.steps-block .step-value>* {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: var(--1614);
    line-height: 150%;
    color: var(--main-text);
}

.steps-block .step-value>*>* {
    text-decoration: underline;
    text-decoration-skip-ink: none;
    color: var(--accent);
}

@media(max-width:900px) {
    .steps-block .steps-holder {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:600px) {
    .steps-block .steps-holder {
        grid-template-columns: 1fr;
    }
}