.delivery-block__wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.delivery-block__wrapper > * {
    border-radius: 5px;
    border: 1px solid var(--stroke);
    padding: 50px;
}
.delivery-block__deliv {
    background: var(--head-secondary);
}
.delivery-block__deliv-subtitle {
    font-size: 14px;
    line-height: 120%;
    color: var(--main-text-primary);
    margin-top: 5px;
}
.delivery-block__descr {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 40px;
}
.delivery-block__descr strong {
    display: block;
    font-weight: 600;
    font-size: 20px;
    line-height: 120%;
    color: var(--head-primary);
    margin-bottom: 5px;
}
.delivery-block__descr p {
    font-size: 16px;
    line-height: 140%;
    color: var(--main-text-primary);
}
.delivery-block ul, 
.delivery-block ol {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.delivery-block li {
    display: flex;
    gap: 15px;
    font-size: 16px;
    line-height: 120%;
    color: var(--main-text-primary);
}
.delivery-block li::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12.5 8.33333L9.16667 11.6667L7.5 10M10 17.5C5.85786 17.5 2.5 14.1421 2.5 10C2.5 5.85786 5.85786 2.5 10 2.5C14.1421 2.5 17.5 5.85786 17.5 10C17.5 14.1421 14.1421 17.5 10 17.5Z" stroke="%2300A1E2" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" /></svg>');
    background-repeat: no-repeat;
    background-size: contain;
    aspect-ratio: 1/1;
}
.delivery-block__paym {
    background: var(--background-secondary);
}
.delivery-block__paym-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
}
.delivery-block__paym-text {
    max-width: 450px;
    width: 100%;
}
.delivery-block__paym-subtitle {
    margin-top: 40px;
}
.delivery-block__paym-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    height: fit-content;
}
.delivery-block__paym-icon {
    border-radius: 5px;
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 991px) {
    .delivery-block__wrapper > * {
        padding: 35px;
    }
    .delivery-block__wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
    .delivery-block__paym-text {
        max-width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .delivery-block__wrapper > * {
        padding: 20px;
    }
    .delivery-block__paym-top {
        flex-direction: column;
    }
    .delivery-block__paym-icons {
        grid-template-columns: repeat(4, 1fr);
    }
}
@media screen and (max-width: 576px) {
    .delivery-block__paym-icons {
        grid-template-columns: repeat(3, 1fr);
    }
}
