.regionDelivery__list {
    align-items: stretch;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 -1%;
    width: auto;
}

.delivery__item{
    margin: 0 1% 2%;
    width: 18%;
}

.delivery__item a{
    align-items: center;
    background: #c59c54;
    background: linear-gradient(90deg, #d8982a 0%, #e2b259 50%, #d8982a 100%);
    border-radius: 4px;
    color: #ffffff;
    display: flex;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    justify-content: center;
    height: 100%;
    font-weight: bold;
    line-height: 1.2;
    padding: 15px;
    text-align: center;
    transition: all 0.4s ease 0s;
}

.delivery__item a:hover{
    transform: scale(1.02);
}

@media only screen and (max-width: 1000px) {
    .regionDelivery__list{
        margin: 0 -0.5%;
    }
    .delivery__item{
        margin: 0 0.5% 1%;
        width: 23%;
    }
}

@media only screen and (max-width: 640px) {
    .delivery__item{
        width: 32.333%;
    }
}

@media only screen and (max-width: 480px) {
    .delivery__item{
        width: 49%;
    }
}