.delivery {
    padding-bottom: 100px;
}
.delivery__types {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.delivery__type-card {
    border-radius: 60px;
    min-height: 380px;
    padding: 60px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
}
.delivery__type-card:nth-of-type(2) {
    background: var(--Yellow-gradient, linear-gradient(180deg, #FDEEC7 0%, #FDE4DC 100%));
}
.delivery__type-card:nth-of-type(1) {
    background: var(--Pink-gradient, linear-gradient(180deg, #FDC7D7 0%, #FDE4DC 100%));
}
.delivery__type-card-img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    z-index: 2;
}
.devivery__type-card-ps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 355px;
}
.devivery__type-card-ps ul {
    list-style: none;
    padding-left: 0;
}
.devivery__type-card-list-item {
    position: relative; 
    padding-left: 15px;
}
.devivery__type-card-list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 7px;
    height: 7px;
    background-color: black;
    border-radius: 50%;
}
.delivery__districts {
    grid-column: 1 / span 5;
}
.delivery__map {
    grid-column: 7 / -1;
    border-radius: 60px;
    background: #BEBEBE;
    overflow: hidden;
}
.delivery__districts-list {
    display: flex;
    align-items: center;
    gap: 20px;
}
.delivery__districts-list ul {
    position: relative;
    list-style: none;
    padding-left: 20px;
    margin-top: 20px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    min-width: 267px;
}
.delivery__districts-list ul::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 6px;
    border-radius: 10px 0px 0px 10px;
    background: var(--Pink, linear-gradient(0deg, #F3669A 0%, #F3669A 100%), linear-gradient(0deg, #CD2B67 0%, #CD2B67 100%), #E5097F);
}
.delivery__deadline-img {
    grid-column: 1 / span 6;
    border-radius: 60px;
    max-width: 100%;
    object-fit: cover;
}
.delivery__deadline-content {
    grid-column: 8 / -1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.select-mob-text {
    display: none;
}
@media (max-width: 1439px) {
    .delivery__type-card {
        border-radius: 60px;
        min-height: 576px;
        justify-content: flex-start;
    }
    .delivery__districts,
    .delivery__deadline-img {
        grid-column: 1 / span 4;
    }
    .delivery__map,
    .delivery__deadline-content {
        grid-column: 5 / -1;
    }
}
@media (max-width: 1023px) {
    .delivery {
        padding-bottom: 0;
    }
    .select-mob-text {
        display: block;
        color: var(--Chocolad-gradient, #593630);
        font-family: Involve;
        font-size: 14px;
        font-style: normal;
        font-weight: 700;
        line-height: 24px;
        margin-top: -20px;
        margin-bottom: 40px;
    }
    .delivery__types {
        grid-template-columns: 1fr;
    }
    .delivery__districts {
        grid-column: 1 / -1;
    }
    .delivery__map {
        grid-column: 1 / -1;
        height: 400px;
        margin-top: 40px;
    }
    .delivery__type-card {
        border-radius: 30px;
        min-height: 670px;
        padding: 40px;
    }
    .delivery__districts-list {
        justify-content: space-between;
    }
    .delivery__districts-list ul {
        min-width: auto;
    }
    .delivery__districts-list-price {
        padding-left: 20px;
    }
    .delivery__deadline-img,
    .delivery__deadline-content {
        grid-column: 1 / -1;
    }
    .delivery__deadline-content {
        margin-top: 40px;
    }
    .delivery__deadline-img {
        border-radius: 22.588px;
    }
}