.banner_delivery {
    height: 140px;
    width: 100%;
    padding: 0 100px 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(91deg, #FFCE00 0%, #FFAE00 100%);
    border-radius: 20px;
}
.banner_delivery-text{
    font-weight: 600;
    font-size: 40px;
    line-height: 1.2;
    font-family: inherit;
    color: #212121;
    margin-bottom: 0;
    margin-right: 5px;
}
@media (max-width: 900px) {
    .banner_delivery-text{
        font-weight: 600;
        font-size: 32px;
        line-height: 1.2;
        font-family: inherit;
    }
    .banner_delivery {
        height: 130px;
        padding: 0 50px 0 40px;
    }
}

@media (max-width: 600px) {
    .banner_delivery {
        height: 102px;
        padding: 0 30px 0 20px;
    }
    .banner_delivery-text{
        font-weight: 700;
        font-size: 20px;
        line-height: 1.3;
        font-family: inherit;
        width: calc(100% - 85px);
    }
    .banner_delivery-icon img{
        width: 80px;
    }
}

