.how-to-buy-step {
    margin-bottom: 120px;
    padding: 40px 28px 29px 32px;
    width: 100%;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.2);
}

.how-to-buy-step-title {
    margin-bottom: 30px;
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 35px;
    line-height: 110%;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: var(--dark-blue);
    text-align: start;
}

.how-to-buy-step-title span {
    color: #ab977c;
}

.how-to-buy-step-desc {
    margin-bottom: 40px;
    max-width: 444px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0.01em;
    color: rgba(29, 46, 74, 0.7);
}

.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.step-item {
    position: relative;
    padding: 20px;
    width: calc((100% - 40px) / 3);
    background: #f5f5f5;
    border-radius: 20px;
}

.step-item:before {
    content: url("/local/images/how-to-buy/arrow.svg");
    position: absolute;
    top: 50%;
    right: -28px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #fff;
    transform: translateY(-50%);
}

.step-item:last-child:before {
    display: none;
}

.step-item:nth-child(3):before {
    display: none;
}

.step-item:nth-child(5):before {
    content: url("/local/images/how-to-buy/arrows.svg");
    padding-top: 6px;
}

.step-item-name {
    margin-bottom: 20px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 25px;
    line-height: 110%;
    letter-spacing: 0.02em;
    color: var(--dark-blue);
}

.step-item-name ._green {
    color: #34c759;
}

.step-item-name ._red {
    color: #ff383c;
}

.step-item-desc {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0.01em;
    color: rgba(29, 46, 74, 0.7);
}

@media (max-width: 1200px) {
    .step-item-name {
        max-width: 190px;
    }
}

@media (max-width: 992px) {
    .how-to-buy-step {
        margin-bottom: 50px;
    }

    .how-to-buy-step-title {
        margin-bottom: 20px;
        font-size: 25px;
    }

    .how-to-buy-step-desc {
        margin-bottom: 20px;
    }

    .step-item {
        width: calc((100% - 20px) / 2);
    }

    .step-item-name {
        font-size: 20px;
    }

    .step-item:nth-child(even):before {
        display: none;
    }

    .step-item:nth-child(3):before {
        display: flex;
    }

    .step-item-name {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .step-item {
        width: 100%;
    }

    .step-item:before {
        top: auto;
        right: 43%;
        bottom: -29px;
        transform: translate(-50%, 0) rotate(90deg);
    }

    .step-item:nth-child(even):before {
        display: flex;
    }

    .step-item:last-child:before {
        display: none;
    }

    .how-to-buy-step {
        padding: 40px 20px 29px 20px;
    }
}

@media (max-width: 480px) {
    .step-item:before {
        right: 39%;
    }
}

@media (max-width: 400px) {
    .step-item:before {
        right: 36%;
    }
}