.delivery-cols {
     display: grid;
     grid-template-columns: 1fr;
     grid-gap: 20px;
} 
.delivery-cols__item {
    box-shadow: 0 5px 10px 0 rgba(0, 0, 0, .15);
    width: 100%;
    height: 180px;
    background: transparent no-repeat 140% 50%;
    background-size: contain;
    padding: 30px;
    border-radius: 10px;
    text-decoration: none;
    color: #000;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.delivery-cols__item:hover {
    box-shadow: 0 3px 15px 1px rgba(0, 0, 0, .2);
}
.delivery-cols__info {
    font-size: 20px;
    font-weight: 600;
    width: 180px;
}
.delivery-cols__info--c3 {
    font-size: 16px;
    font-weight: 500;
}
.delivery-cols__name,
.delivery-cols__desc {
    display: block;
    line-height: 1.2;
}
.delivery-cols__desc {
    margin-top: 15px;
    font-weight: 300;
    font-size: 16px;
}
.delivery-cols__desc em,
.delivery-cols__desc b {
    color: #f0364e;
    font-weight: 600;
}


@media(min-width: 451px) {
   .delivery-cols__item {
        background-position: 100% 50%;
   }
   .delivery-cols__info {
       width: 50%;
   }
}

@media (min-width: 801px) {
    .delivery-cols {
        grid-template-columns: repeat(2, 1fr);
    } 
    .delivery-cols--c3 {
        grid-template-columns: repeat(3, 1fr);
        font-size: 16px;
    }
    .delivery-cols__item--c3 {
        background-position: 50% 50%;
        padding: 0;
        display: block;
    }
    .delivery-cols__info--c3 {
        width: auto;
        height: 100%;
        padding: 30px;
        background-color: rgba(255, 255, 255, .5);
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
   /*.delivery-cols__item {
        background-position: 200px 0;
   }*/
}

@media (min-width: 1001px)  {

}

@media (min-width: 1201px) {
    .delivery-cols__item--c3 {
        display: flex;
        padding: 30px;
        background-position: 100% 50%;
    }
    .delivery-cols__info--c3 {
        padding: 0;
        height: auto;
        background-color: unset;
        width: 50%;
    }
}