.delivery_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 26px -8px -15px;
}

.delivery_item {
    display: flex;
    width: 50%;
    max-width: 100%;
    min-height: 56px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding:  0 8px;
    margin-bottom: 15px;
}

.delivery_item img {
    display: inline-block;
    max-width: 60%;
    height: auto;
}

.delivery_item:first-child img {
    max-width: 100%;
}

@media (min-width: 768px) {
	.delivery_item {
	    width: 33.33333%;
	}

	.delivery_item img {
	    max-width: 50%;
	}

	.delivery_item:first-child img {
	    max-width: 70%;
	}
}

@media (min-width: 1200px) {
	.delivery_list {
		margin-top: 42px;
		/* justify-content: space-between; */
		justify-content: center;
	}

	/* .delivery_item {
	    width: fit-content;
	} */

	.delivery_item {
	    width: 25%;
	}

	.delivery_item img {
	    max-width: 80%;
	}

	.delivery_item:first-child img {
	    max-width: 75%;
	}
}

@media (min-width: 1400px) {
	.delivery_list {
		margin-top: 52px;
	}

	.delivery_item img {
	    max-width: 100%;
	}

	.delivery_item:first-child img {
	    max-width: 100%;
	}
}