.link_with_background-block{
	overflow: hidden;
	position: relative;
	display: block;
	background: #000;
}
.link_with_background-block .background{
	position: absolute;
	z-index: 1;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center;
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: -webkit-transform 300ms ease;
	transition: transform 300ms ease;
}
.link_with_background-block .text{
	position: relative;
	z-index: 2;
}

@media (min-width: 992px) {
	a.link_with_background-block:hover .background{
		-webkit-transform: scale(1.15);
		transform: scale(1.15);
	}
}

@media (max-width: 767px) {
	.link_with_background-block .background{
		opacity: .75;
	}
}