.service-block {
	position: relative;
	overflow: hidden;
}
.service-wrapper {
	clear: both;
	width: 100%;
	position: relative;
	margin:  30px 0;
}
.service-wrap {
	box-shadow: 0 0 3px rgba(0, 0, 0, .3);
	position: relative;
	display: flex;
	flex-direction: row;
}
.service-text {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	position: relative;
	width: 70%;
	padding: 50px;
}
.service-text h2 {
	width: 100%;
}
.service-wrapper .col.half {
	width: 50%;
}
.service-wrapper .links {
	width: 50%;
}
.service-wrapper figure::before {
	content: " ";
	width: 100%;
	height: 100%;
	z-index: 99;
	position: absolute;
}
.service-wrapper figure::after {
	content: " ";
	width: 100%;
	height: 100%;
	z-index: 999;
	position: absolute;
}
.service-wrapper figure {
	position: relative;
	width: 30%;
	margin: 0;
	padding: 0;
	line-height: 0;
}
.service-wrapper img {
	object-fit: cover;
	width: 100%;
	height: 100%;
	z-index: 9;
}

/* RESPONSIVE */
@media all and (max-width: 900px) {
	.service-text {
		width: 60%;
		padding: 30px;
	}
	.service-wrapper .col.half {
		width: 50%;
	}
	.service-wrapper .links {
		width: 50%;
	}
	.service-wrapper figure {
		width: 40%;
	}
}
@media all and (max-width: 700px) {
	.service-text {
		width: 55%;
		padding: 30px;
		flex-wrap: wrap;
	}
	.service-wrapper .col.half {
		width: 100%;
	}
	.service-wrapper .links {
		width: 100%;
		margin: 30px 0 0 0;
	}
	.service-wrapper figure {
		width: 45%;
	}
}
@media all and (max-width: 600px) {
	.service-wrap {
		flex-wrap: wrap;
	}
	.service-text {
		width: 100%;
	}
	.service-wrapper figure {
		width: 100%;
	}
}