.steps__inner {
    background: #ECF0F4;
    overflow: hidden;
}

.steps__header {
    display: flex;
    gap: 14px;
}

.steps .steps__heading {
    margin: 0;
}

.steps__row {
    display: flex;
}

.steps__num {
    background: #CBDB00;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    border-radius: 50%;
    position: relative;
    z-index: 3;
}

.steps__name {
    margin-bottom: 6px;
}


@media screen and (min-width: 1024px) {
    .steps__inner {
        padding: 40px 30px;
        border-radius: 24px;
    }

    .steps__header {
        align-items: center;
        justify-content: space-between;
        margin-bottom: 40px;
    }

    .steps__heading {
        flex-basis: 592px;
    }

    .steps__text {
        flex-basis: 516px;
        margin: 0;
    }

    .steps__row {
       gap: 40px;
    }

    .steps__item {
        flex-basis: calc((100% - 120px) / 4);
    }

    .steps__num {
        width: 56px;
        height: 56px;
        margin-bottom: 20px;
    }

    .steps__row {
        position: relative;
    }
    
    .steps__row svg {
        position: absolute;
        width: 100%;
        left: 30px;
        top: 28px;
    }

    .steps__row .svg {
        display: none;
    }
}

@media screen and (max-width: 1023.98px) {
    .steps__inner {
        padding: 24px 15px;
        border-radius: 16px;
    }

    .steps__header {
        margin-bottom: 24px;
        flex-direction: column;
    }

    .steps__row {
        gap: 27px;
        flex-direction: column;
        position: relative;
    }

    .steps__num {
        width: 46px;
        height: 46px;
        flex-shrink: 0;
    }

    .steps__item {
        display: flex;
        gap: 20px;
    }

    .steps__row .svg {
        position: absolute;
        left: 23px;
        top: 0px;
        width: 1px;
        height: calc(100% + 20px);
        border: 1px dashed #1D1F22;
        border-collapse: collapse;
    }
}

