#steps-block {
    padding: 60px 0;
    background: var(--light)
}

#steps-block .steps-wrap {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

#steps-block .steps-wrap .left-side {
    width: 50%;
    position: sticky;
    top: 150px;
    height: fit-content;
}

#steps-block .steps-wrap .left-side .image-side {
    width: 500px;
    height: 500px;
}

#steps-block .steps-wrap .left-side .image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#steps-block .steps-wrap .left-side .item {
    position: absolute;
    bottom: -50px;
    right: 0;
    width: fit-content;
    height: fit-content;
    z-index: 10;
    background: var(--primary);
    padding: 20px;
    box-shadow: -10px 10px 0px 0px #0F1A29;
}

#steps-block .steps-wrap .left-side .item .name-item {
    font-size: 24px;
    color: var(--card);
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

#steps-block .steps-wrap .left-side .item .desc-item {
    font-size: 16px;
    color: var(--card);
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
}

#steps-block .steps-wrap .right-side {
    width: 50%;
}

#steps-block .steps-wrap .right-side .steps-in {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

#steps-block .steps-wrap .right-side .steps-in .step-item {
    padding: 20px;
    background: var(--dark);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

#steps-block .steps-wrap .right-side .steps-in .step-item .number {
    font-size: 24px;
    color: var(--primary);
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

#steps-block .steps-wrap .right-side .steps-in .step-item .text-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

#steps-block .steps-wrap .right-side .steps-in .step-item .text-item .name-item {
    font-size: 24px;
    color: var(--head);
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
}

#steps-block .steps-wrap .right-side .steps-in .step-item .text-item .desc-item {
    font-size: 16px;
    color: var(--text);
    font-style: normal;
    font-weight: 400;
    line-height: 135%;
}

@media (max-width: 1060px) {
    #steps-block .steps-wrap {
        flex-direction: column;
    }
    #steps-block .steps-wrap .left-side {
        width: 100%;
        position: relative;
        top: 0;
    }
    #steps-block .steps-wrap .left-side .item {
        bottom: 0;
    }
    #steps-block .steps-wrap .right-side {
        width: 100%;
    }
}

@media (max-width: 992px) {
    #steps-block {
        padding: 40px 0;
    }
}

@media (max-width: 920px) {
    #steps-block .steps-wrap .left-side {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    #steps-block .steps-wrap .left-side .item {
        position: relative;
    }
}

@media (max-width: 520px) {
    #steps-block .steps-wrap .left-side {
        align-items: center;
    }
    #steps-block .steps-wrap .left-side .image-side {
        width: 100%;
        height: 350px;
    }
}