.delivery-block .delivery-items {
    display: flex;
    flex-direction: column;
}
.delivery-block .delivery-items .delivery-item {
    position: relative;
    display: flex;
    min-height: 248px;
    margin-bottom: 24px;
}
.delivery-block .delivery-items .delivery-item:not(:last-child):before {
    content: '';
    position: absolute;
    width: 2px;
    height: calc(100% - 108px);
    left: 42px;
    top: 108px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(240, 67, 120, 0.2) 0%, rgba(240, 67, 120, 0.08) 100%);
}
.delivery-block .delivery-items .delivery-item.last::before {
    content: '';
    position: absolute;
    width: 2px;
    height: calc(100% - 108px);
    left: 42px;
    bottom: 0;
    background: radial-gradient(50% 50% at 50% 50%, rgba(240, 67, 120, 0.2) 0%, rgba(240, 67, 120, 0.08) 100%);
}
.delivery-block .delivery-item .delivery-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    flex-shrink: 0;
    border: 2px solid rgba(240, 67, 120, 0.2);
    border-radius: 50%;
    margin-right: 54px;
}
.delivery-block .delivery-item .delivery-item-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}
.delivery-block .delivery-item .delivery-item-info {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    padding-bottom: 60px;
    margin-bottom: 16px;
}
.delivery-block .delivery-item:not(:last-child) .delivery-item-info:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(240, 67, 120, 0.2) 0%, rgba(240, 67, 120, 0.08) 100%);
}
@media screen and (min-width: 578px) and (max-width: 767px) {
    .delivery-block .delivery-item .delivery-item-info:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: radial-gradient(50% 50% at 50% 50%, rgba(240, 67, 120, 0.2) 0%, rgba(240, 67, 120, 0.08) 100%);
    }
}
.delivery-block .delivery-item-info .delivery-info-title {
    max-width: 365px;
    width: 100%;
}
.delivery-block .delivery-item-info .delivery-info-title h3 {
    color: var(--gray-black);
    font-weight: 700;
}
.delivery-block .delivery-item-info .delivery-info-title .subtitle {
    margin-top: 12px;
    font-weight: 700;
    color: var(--gray-1);
    line-height: 100%;
    font-size: var(--h3-size);
}
.delivery-block .delivery-item-info .delivery-info-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 515px;
    width: 100%;
}
.delivery-block .delivery-info-list .delivery-list-title {
    font-size: var(--h6-size);
    font-weight: 700;
    line-height: 120%;
    color: var(--gray-1);
}
.delivery-block .delivery-info-list .delivery-list ul {
    display: flex;
    gap: 5px;
}
.delivery-block .delivery-info-list .delivery-list li {
    list-style-type: disc;
    font-size: var(--h6-size);
    color: var(--gray-black);
    font-weight: 700;
    line-height: 120%;
    margin-left: 20px;
}

@media screen and (max-width: 991px) {
    .delivery-block .delivery-item .delivery-item-info {
        flex-direction: column;
        padding-bottom: 36px;
        margin: 0;
    }
}

@media screen and (max-width: 767px) {
    .delivery-block .delivery-items .delivery-item {
        min-height: 256px;
    }
    .delivery-block .delivery-items .delivery-item.last {
        margin-bottom: 0;
        padding-bottom: 24px;
    }
    .delivery-block .delivery-item .delivery-item-icon {
        width: 56px;
        height: 56px;
        margin-right: 50px;
    }
    .delivery-block .delivery-item .delivery-item-icon img {
        width: 24px;
        height: 24px;
    }
    .delivery-block .delivery-items .delivery-item:not(:last-child):before {
        height: calc(100% - 66px);
        left: 29px;
        top: 66px;
    }
    .delivery-block .delivery-items .delivery-item.last::before {
        height: calc(100% - 66px);
        left: 29px;
        bottom: 0;
    }
}

@media screen and (max-width: 578px) {
    .delivery-block .delivery-items {
        margin-top: 24px;
    }
    .delivery-block .delivery-items .delivery-item {
        min-height: auto;
    }
    .delivery-block .delivery-items .delivery-item.last {
        margin-bottom: 0;
        padding-bottom: 20px;
    }
    .delivery-block .delivery-item .delivery-item-icon {
        width: 40px;
        height: 40px;
        margin-right: 16px;
    }
    .delivery-block .delivery-item .delivery-item-icon img {
        width: 18px;
        height: 18px;
    }
    .delivery-block .delivery-items .delivery-item:not(:last-child):before {
        height: calc(100% - 48px);
        left: 20px;
        top: 48px;
    }
    .delivery-block .delivery-items .delivery-item.last::before {
        height: calc(100% - 48px);
        left: 20px;
        bottom: 0;
    }
}
