.development_process {
    max-width: 1636px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 20px;
    counter-reset: development-step-counter;
}

.development_process__step {
    counter-increment: development-step-counter;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    position: relative;
}

@media (min-width: 1200px) {
    .development_process__step {
        flex-basis: calc(16.666% - 17px);
        padding: 0 20px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .development_process__step {
        flex-basis: calc(25% - 15px);
        padding: 0 20px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .development_process__step {
        flex-basis: calc(33.333% - 14px);
        padding: 0 20px;
    }
}

@media (max-width: 767px) {
    .development_process__step {
        flex-basis: 100%;
        padding: 0 15px;
        margin-bottom: 40px;
    }
}

@media (min-width: 768px) {
    .development_process__step::after {
        content: '';
        position: absolute;
        top: 70px;
        width: 37px;
        height: 15px;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='37' height='15' viewBox='0 0 37 15' fill='none'%3E%3Cpath d='M36.7071 8.07106C37.0976 7.68054 37.0976 7.04737 36.7071 6.65685L30.3431 0.292885C29.9526 -0.0976396 29.3195 -0.0976396 28.9289 0.292885C28.5384 0.683409 28.5384 1.31657 28.9289 1.7071L34.5858 7.36395L28.9289 13.0208C28.5384 13.4113 28.5384 14.0445 28.9289 14.435C29.3195 14.8255 29.9526 14.8255 30.3431 14.435L36.7071 8.07106ZM0 7.36395V8.36395H1.8V7.36395V6.36395H0V7.36395ZM5.4 7.36395V8.36395H9V7.36395V6.36395H5.4V7.36395ZM12.6 7.36395V8.36395H16.2V7.36395V6.36395H12.6V7.36395ZM19.8 7.36395V8.36395H23.4V7.36395V6.36395H19.8V7.36395ZM27 7.36395V8.36395H30.6V7.36395V6.36395H27V7.36395ZM34.2 7.36395V8.36395H36V7.36395V6.36395H34.2V7.36395Z' fill='%238E8E8E'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        z-index: 1;
    }

    @media (min-width: 1200px) {
        .development_process__step:not(:nth-child(6n))::after {
            right: -25px;
        }
        .development_process__step:nth-child(6n)::after {
            display: none;
        }
    }

    @media (min-width: 992px) and (max-width: 1199px) {
        .development_process__step:not(:nth-child(4n))::after {
            right: -25px;
        }
        .development_process__step:nth-child(4n)::after {
            display: none;
        }
    }

    @media (min-width: 768px) and (max-width: 991px) {
        .development_process__step:not(:nth-child(3n))::after {
            right: -25px;
        }
        .development_process__step:nth-child(3n)::after {
            display: none;
        }
    }
}

@media (max-width: 767px) {
    .development_process__step:not(:last-child)::after {
        content: '';
        position: absolute;
        bottom: -45px;
        left: 50%;
        width: 37px;
        height: 15px;
        transform: translateX(-50%) rotate(90deg);
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='37' height='15' viewBox='0 0 37 15' fill='none'%3E%3Cpath d='M36.7071 8.07106C37.0976 7.68054 37.0976 7.04737 36.7071 6.65685L30.3431 0.292885C29.9526 -0.0976396 29.3195 -0.0976396 28.9289 0.292885C28.5384 0.683409 28.5384 1.31657 28.9289 1.7071L34.5858 7.36395L28.9289 13.0208C28.5384 13.4113 28.5384 14.0445 28.9289 14.435C29.3195 14.8255 29.9526 14.8255 30.3431 14.435L36.7071 8.07106ZM0 7.36395V8.36395H1.8V7.36395V6.36395H0V7.36395ZM5.4 7.36395V8.36395H9V7.36395V6.36395H5.4V7.36395ZM12.6 7.36395V8.36395H16.2V7.36395V6.36395H12.6V7.36395ZM19.8 7.36395V8.36395H23.4V7.36395V6.36395H19.8V7.36395ZM27 7.36395V8.36395H30.6V7.36395V6.36395H27V7.36395ZM34.2 7.36395V8.36395H36V7.36395V6.36395H34.2V7.36395Z' fill='%238E8E8E'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        z-index: 1;
    }
}

.development_process__step-image {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 150px;
    height: 150px;
    object-fit: contain;
    border: 2px dashed #D7D7D7;
    border-radius: 50%;
}

.development_process__step-image::before {
    content: counter(development-step-counter);
    position: absolute;
    top: 0;
    left: 7px;
    border: 3px solid #AF0013;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-weight: 700;
    font-size: 17px;
    color: #AF0013;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.development_process__step-image img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
}

.development_process__step-title {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.development_process__step-description {
    font-size: 16px;
    line-height: 1.4;
}

.development_process__step:last-child::after {
    display: none !important;
}
