/* Offers grid */
.wrap_offersGrid {
	text-align: center;
}

.item_offer {
	width: 320px;
	padding-right: 50px;
	padding-bottom: 50px;
	display: inline-block;
}

.wrap_offersRow .item_offer:last-child {
	padding-right: 0;
}

.item_offer .wrap_offer {
	background-size: 100% auto;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	
	transition: all .5s ease-in-out;
	-webkit-transition: all .5s ease-in-out;
	-moz-transition: all .5s ease-in-out;
}

.item_offer:hover .wrap_offer {
	background-size: 103% auto;
}

.mode_threeItems .item_offer .wrap_offer {
	height: 220px;
}

.mode_twoItems .item_offer .wrap_offer {
	height: 270px;
}

.item_offer .wrap_shade {
	background: rgba(0,0,0,0.5);
	text-align: center;
	color: #fff;
	
	transition: all .2s ease-in-out;
	-webkit-transition: all .2s ease-in-out;
	-moz-transition: all .2s ease-in-out;
}

.item_offer:hover .wrap_shade {
	background: rgba(0,151,53,0.7)
}

.item_offer .text_offerTitle {
	padding-left: 20px;
	padding-right: 20px;
	margin-bottom: 10px;
	font-family: Heading;
	font-size: 24px;
	line-height: 28px;
}

.item_offer .text_offerDate {
	font-size: 13px;
}

.wrap_offersRow {
	text-align: center;
}

/* Media queries
========================================================================== */
/* Mobile */
@media only screen and (max-width : 1000px) {
	.item_offer {
		padding-right: 20px;
		padding-bottom: 20px;
	}
}

@media only screen and (max-width : 767px) {
	.wrap_offersGrid {
		padding: 0;
	}
	
	.item_offer {
		padding-right: 0;
	}
}