.items-with-decor-lines__items {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.item-items-with-decor-lines {
    position: relative;
    text-align: center;
    flex-basis: calc((100% - 90px) / 4);
}

.item-items-with-decor-lines:last-child::after {
    display: none;
}


.items-with-decor-lines__item-icon {
    border-radius: 31px;
    background: #FFF;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px auto;
}

.items-with-decor-lines__item-heading {
    margin-bottom: 10px;
}

.items-with-decor-lines__item-text {
    margin-bottom: 0;
}

.items-with-decor-lines__heading {
    text-align: center;
    max-width: 659px;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 52px;
}

.items-with-decor-lines__item-icon img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

@media screen and (min-width: 1025px) {
    .item-items-with-decor-lines:nth-child(-n+3)::after {
        content: '';
        position: absolute;
        width: calc(72.5%);
        height: 2px;
        right: -42.5%;
        top: 30px;
        background: #D1D6F0;
        border-radius: 50px;
    }

}

@media screen and (max-width: 1024.98px) {
    .items-with-decor-lines__heading {
        margin-bottom: 40px;
    }


    .item-items-with-decor-lines {
        flex-basis: calc((100% - 30px) / 2);
    }

    .items-with-decor-lines__item-icon {
        border-radius: 47px;
        width: 50px;
        height: 50px;
        margin: 0 auto 20px auto;
    }

    .items-with-decor-lines__item-icon img {
        width: 25px;
        height: 25px;
    }

    .item-items-with-decor-lines:nth-child(odd)::after {
        content: '';
        position: absolute;
        width: calc(72.5%);
        height: 2px;
        right: -40%;
        top: 25px;
        background: #D1D6F0;
        border-radius: 50px;
    }

    .item-items-with-decor-lines:nth-child(even)::after {
        content: none;
    }

}

@media screen and (max-width: 599.98px) {
    .items-with-decor-lines__heading {
        margin-bottom: 30px;
    }

    .items-with-decor-lines__items {
        gap: 40px;
    }

    .item-items-with-decor-lines {
        flex-basis: 100%;
    }

    .items-with-decor-lines__item-icon {
        width: 40px;
        height: 40px;
    }

    .items-with-decor-lines__item-icon img {
        width: 20px;
        height: 20px;
    }

    .item-items-with-decor-lines:nth-child(odd)::after,
    .item-items-with-decor-lines:nth-child(even)::after {
        content: '';
        top: unset;
        width: 2px;
        height: 22px;
        right: 50%;
        transform: translateX(-50%);
        bottom: -32px;
        position: absolute;
        background: #D1D6F0;
        border-radius: 50px;
    }

    .items-with-decor-lines__item-text {
        max-width: 245px;
        margin-left: auto;
        margin-right: auto;
    }
}