@media (min-width: 768px) {
/* entire container, keeps perspective */
.flip-container {
	display: inline-block;
	perspective: 1000px;
	float: left;
}
	/* flip the pane when hovered */
	.flip-container:hover .flipper, .flip-container.hover .flipper {
		transform: rotateY(180deg);
	}

.flip-container, .front, .back {
	width: 245px;
	height: 245px;
}

/* flip speed goes here */
.flipper {
	transition: 0.6s;
	transform-style: preserve-3d;

	position: relative;
}

/* hide back of pane during swap */
.front, .back {
	backface-visibility: hidden;

	position: absolute;
	top: 0;
	left: 0;
	border: 1px solid #6EA8E4;
}

/* front pane, placed above back */
.front {
	z-index: 2;
	/* for firefox 31 */
	transform: rotateY(0deg);
	background-color: rgba(255,255,255,.4);
}

/* back, initially hidden pane */
.back {
	transform: rotateY(180deg);
	/*background-color: rgba(238,238,238,0.7);*/
	position: relative;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.back::after {
	content: "";
	display: block;
	position: absolute;
	top: 10%;
	left: 10%;
	width: 80%;
	height: 80%;
	opacity: 0.1;
	z-index: -1;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

#back1::after {
	background-image: url('../imgs/home/novas/011-people.png');
}

#back2::after {
        background-image: url('../imgs/home/novas/013-cogwheel.png');
}

#back3::after {
        background-image: url('../imgs/home/novas/001-team-success.png');
}

#back4::after {
        background-image: url('../imgs/home/novas/014-dollar-analysis-bars-chart.png');
}

#back5::after {
        background-image: url('../imgs/home/novas/012-tool.png');
}

#back6::after {
        background-image: url('../imgs/home/novas/015-puzzle.png');
}

#back7::after {
        background-image: url('../imgs/home/novas/010-secure-database.png');
}

#back8::after {
        background-image: url('../imgs/home/novas/sped-ecf.png');
	opacity: 0.3;
}

.back h3 {
	padding-left: 20px;
	padding-right: 20px;
}

#wm1, #wm2, #wm3, #wm4, #wm5, #wm6, #wm7, #wm8 {
	background-size: 100% 100%;
	background-position: center center;
	background-repeat: no-repeat;
}
#wm1 { background-image: url("../imgs/home/wm1.png"); }
#wm2 { background-image: url("../imgs/home/wm2.png"); }
#wm3 { background-image: url("../imgs/home/wm3.png"); }
#wm4 { background-image: url("../imgs/home/wm4.png"); }
#wm5 { background-image: url("../imgs/home/wm5.png"); }
#wm6 { background-image: url("../imgs/home/wm6.png"); }
#wm7 { background-image: url("../imgs/home/wm7.png"); }
#wm8 { background-image: url("../imgs/home/wm8.png"); }

.flip-line {
	max-width: 980px;
	margin: auto;
}
.flip-line::after {
	display: block;
	content: " ";
	clear: both;
}
#line2 {
	margin-top: -7px;
	height: 245px;
}
}
@media (min-width: 768px) and (max-width: 1199px) {
	.flip-line { width: 490px; }
}
@media (max-width: 767px) {
	.flip-container { margin-bottom: 40px; padding: 12px; background-color: #fefefe; }
}
