.g-page > .g-content {
	width: 100%;
	max-width: none;
	padding: 0px;
}
.g-wrap__content {
	background: #EBF8F9;
}
.interval-delivery {
    padding: 48px 0;
    font-size: 16px;
}
.interval-delivery__row {
    display: flex;
    margin-left: -4px;
    margin-right: -4px;
    flex-direction: row-reverse;
}
.interval-delivery__item {
    padding: 0 4px;
}
.interval-delivery__item_text {
    width: 517px;
    min-width: 517px;
}
.interval-delivery__block {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 18px;
}
.interval-delivery__block_main {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
}
.interval-delivery__title {
    max-width: 255px;
    font-weight: 800;
    font-size: 38px;
}
.interval-delivery__text {
    margin-top: 12px;
    max-width: 454px;
}
.interval-delivery__item_image {
    flex-grow: 1;
    min-width: 0;
}
.interval-delivery__item_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    object-position: 50% 50%;
}
.interval-delivery__block_bottom {
    margin-top: 8px;
    background-image: url('img/carbon-delivery.png');
    background-repeat: no-repeat;
    background-position: 100% 50%;
    background-size: auto 100%;
}
.interval-delivery__list {
    list-style-type: none;
    counter-reset: item;
}
.interval-delivery__list li {
    position: relative;
    padding-left: 32px;
    min-height: 22px;
}
.interval-delivery__list li:not(:first-child) {
    margin-top: 16px;
}
.interval-delivery__list li:not(:last-child)::before {
    content: counter(item) '';
    counter-increment: item;
    position: absolute;
    width: 24px;
    height: 22px;
    display: flex;
    font-weight: 700;
    font-size: 14px;
    color: #FFFFFF;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('img/list-bg.svg');
    background-repeat: no-repeat;
    background-size: 100%;
    left: 0;
    top: 0;
}

.interval-delivery__list li:last-child::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 22px;
    display: flex;
    font-weight: 700;
    font-size: 14px;
    color: #FFFFFF;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('img/list-bg-last.svg');
    background-repeat: no-repeat;
    background-size: 100%;
    left: 0;
    top: 0;
}
.interval-delivery__info {
    display: flex;
    margin-top: 64px;
}
.interval-delivery__label {
    font-size: 14px;
    position: relative;
    padding: 0 13px;
}
.interval-delivery__label::before {
    width: 4px;
    height: 4px;
    background: #FF6E00;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 0;
    content: '';
}
.interval-delivery__label:last-child::after {
    width: 4px;
    height: 4px;
    background: #FF6E00;
    border-radius: 50%;
    position: absolute;
    top: 8px;
    right: 0;
    content: '';
}
@media screen and (max-width: 900px) {
    .interval-delivery__row {
        flex-wrap: wrap;
    }
    .interval-delivery__item_text {
        width: 100%;
        min-width: 100%;
    }
    .interval-delivery__title {
        max-width: none;
    }
    .interval-delivery__text {
        max-width: none;
    }
    .interval-delivery__info {
        margin-left: -10px;
        margin-right: -10px;
    }
    .interval-delivery__label {
        width: 33.3333%;
        min-width: 33.3333%;
        padding: 0 10px;
        text-align: center;
    }
    .interval-delivery__label::after,
    .interval-delivery__label::before {
        display: none;
    }
    .interval-delivery__block_main {
        margin-top: 8px;
        height: auto;
    }
}
@media screen and (max-width: 640px) {
    .interval-delivery__block {
        border-radius: 10px;
    }
    .interval-delivery__item_image img {
        border-radius: 10px;
    }
    .interval-delivery__title {
        font-size: 20px;
    }
    .interval-delivery {
        padding: 28px 0;
        font-size: 14px;
    }
    .interval-delivery__list li::before {
        width: 18px;
        height: 17px;
        font-size: 12px;
    }
    .interval-delivery__list li:not(:first-child) {
        margin-top: 24px;
    }
    .interval-delivery__list li {
        padding-left: 26px;
        min-height: 17px;
    }
    .interval-delivery__label {
        font-size: 11px;
        font-weight: 500;
    }
    .interval-delivery__block_bottom {
        background-position: 100% 100%;
        background-size: 50% auto;
    }
}