.steps--journey .container {
    overflow: visible;
}
.steps--journey .success-steps__head {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 0 0 102px;
}
.steps--journey .success-steps__head h2 {
    text-align: center;
}
.steps--journey .success-steps__head p {
    text-align: center;
}
.steps--journey .success-steps__content {
    display: grid;
    grid-template-columns: 393px 1fr;
    gap: 166px;
}
.steps--journey .steps__list {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.steps--journey .step__content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.steps--journey .step {
    height: 438px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.steps--journey .step__image-wrapper {
    flex: 0 0 40%;
    position: sticky;
    width: 100%;
    top: 100px;
    align-self: flex-start;
}
.steps--journey .step__image-wrapper img {
    width: 100%;
    max-width: 585px;
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
}

@media screen and (max-width: 1024px) {
    .steps--journey .steps__list {
        gap: 40px;
    }
    .steps--journey .success-steps__content {
        grid-template-columns: 1fr;
        gap: 0px;
    }
    .steps--journey .step {
        height: auto;
        flex-direction: column-reverse;
        justify-content: flex-end;
        gap: 40px;
    }
    .steps--journey .step .step-inline-wrapper {
        width: 100%;
        height: 438px;
        border-radius: 20px;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .steps--journey .step .step-inline-wrapper img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: center;
    }
    .steps--journey .success-steps__head {
        margin: 0 0 40px;
    }
}