.imagehover-wrapper {
	clear: both;
    position: relative;
    display: block;
}
.imagehover-wrap {
	display: flex;
    clear: both;
    position: relative;
}
.imagehover-wrap .imagehover {
	position: relative;
    display: flex;
    border-radius: 5px;
}
.imagehover .image {
	margin: 0;
	padding: 0;
	line-height: 0;
	position: relative;
}
.imagehover .image figure {
	margin: 0;
	line-height: 0;
	height: 100%;
	width: 100%;
}
.imagehover .image figure.initial-image {
	position: relative;
	z-index: 1;
}
.imagehover .image figure.hover-image {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	opacity: 0;
	transition: .35s all ease;
}
.imagehover .image:hover figure.hover-image {
	opacity: 1;
}
.imagehover .image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.imagehover .text {
	clear: both;
	overflow: hidden;
	padding: 50px;
}
.imagehover .text h3 {
	font-family: 'adelle-sans', sans-serif;
	padding: 0 0 8px 0;
	margin: 0 0 18px 0;
	border-bottom: 1px solid rgba(255, 255, 255, .4);
}
.imagehover .text a.button {
	margin-top: 10px;
	display: inline-block;
}

/* STACKED */
.imagehover-wrap.stacked {
    flex-direction: row;
}
.imagehover-wrap.stacked .imagehover {
	flex-direction: column;
    margin: 0 10px;
}
.imagehover-wrapper.one .imagehover {
    width: 100%;
}
.imagehover-wrapper.two .imagehover {
    width: calc(50% - 20px);
}
.imagehover-wrapper.three .imagehover {
    width: calc(33.33% - 30px);
}
.imagehover-wrapper.four .imagehover {
    width: calc(25% - 40px);
}
.imagehover-wrapper.five .imagehover {
    width: calc(20% - 50px);
}
.imagehover-wrapper.stacked .imagehover .image {
	width: 100%;
	height: 300px;
}

/* SIDE BY SIDE */
.imagehover-wrap.side-by-side {
    flex-direction: column;
}
.imagehover-wrap.side-by-side .imagehover {
	flex-direction: row;
	margin: 40px 0;
	width: 85%;
	margin-right: 15%;
	margin-left: 0;
	box-shadow: 0 20px 30px rgba(0, 0, 0, .3);
}
.imagehover-wrap.side-by-side .imagehover:nth-child(2n) {
	margin-left: 15%;
}
.imagehover-wrap.side-by-side .imagehover:first-child {
	margin-top: 0;
}
.imagehover-wrap.side-by-side .imagehover:last-child {
	margin-bottom: 0;
}
.imagehover-wrap.side-by-side .imagehover.text-left {
	flex-direction: row-reverse;
}
.imagehover-wrap.side-by-side .imagehover.text-right {
	flex-direction: row;	
}
.imagehover-wrap.side-by-side .imagehover .text {
	width: 50%;
	padding: 70px 60px;
}
.imagehover-wrap.side-by-side .imagehover.text-left .text {
	margin-right: 50%;
}
.imagehover-wrap.side-by-side .imagehover.text-right .text {
	margin-left: 50%;
}
.imagehover-wrap.side-by-side .imagehover .text.text-video {
	padding: 50px;
	margin: 0;
}
.imagehover-wrap.side-by-side .imagehover .image {
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0;
}
.imagehover-wrap.side-by-side .imagehover.text-left .image {
	right: 0;
}
.imagehover-wrap.side-by-side .imagehover.text-right .image {
	left: 0;
}

/* RESPONSIVE */
	@media all and (max-width: 1100px) {
		.imagehover-wrap.stacked {
			flex-wrap: wrap;
		}
		.imagehover-wrapper.three .imagehover {
			width: calc(50% - 10px);
			margin: 0 20px 20px 0;
		}
		.imagehover-wrapper.three .imagehover:nth-child(2) {
			margin-right: 0;
		}
		.imagehover-wrapper.three .imagehover:last-child {
			width: 100%;
			margin-right: 0;
		}
		.imagehover-wrap.side-by-side .imagehover {
			width: 100%;
			margin-right: 0;
		}
		.imagehover-wrap.side-by-side .imagehover:nth-child(2n) {
			margin-left: 0;
		}
	}
	@media all and (max-width: 1000px) {
		.imagehover-wrap.side-by-side .imagehover .image {
			width: 40%;
		}
		.imagehover-wrap.side-by-side .imagehover .text {
			width: 60%;
		}
		.imagehover-wrap.side-by-side .imagehover.text-left .text {
		    margin-right: 40%;
		}
		.imagehover-wrap.side-by-side .imagehover.text-right .text {
		    margin-left: 40%;
		}
		.imagehover-wrap.side-by-side .imagehover .text.text-video {
			margin: 0;
		}
	}
	@media all and (max-width: 900px) {
		.imagehover-wrap.side-by-side .imagehover {
			flex-direction: row;
			flex-wrap: wrap;
		}
		.imagehover-wrap.side-by-side .imagehover .image {
			width: 100%;
			position: relative;
		}
		.imagehover .text {
			padding: 30px;
		}
		.imagehover-wrap.side-by-side .imagehover .text {
			width: 100%;
			padding: 50px;
		}
		.imagehover-wrap.side-by-side .imagehover.text-left .text {
		    margin-right: 0;
		}
		.imagehover-wrap.side-by-side .imagehover.text-right .text {
		    margin-left: 0;
		}
	}
	@media all and (max-width: 800px) {
		.imagehover-wrapper.two .imagehover,
		.imagehover-wrapper.three .imagehover {
			width: 100%;
			margin: 40px 0;
			box-shadow: 0 20px 30px rgba(0, 0, 0, .3);
		}
	}
	@media all and (max-width: 700px) {
		.imagehover-wrap.side-by-side .imagehover,
		.imagehover-wrapper.two .imagehover,
		.imagehover-wrapper.three .imagehover {
			margin: 20px 0;
		}
	}
	@media all and (max-width: 500px) {
		.imagehover-wrap .imagehover .text,
		.imagehover-wrap.stacked .imagehover .text,
		.imagehover-wrap.side-by-side .imagehover .text {
			padding: 30px;
		}
	}