/**, *:after, *:before { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; }*/


/*************************************
Build the scene and rotate on hover
**************************************/

.scene {
	-webkit-perspective: 1000px;
	-moz-perspective: 1000px;
	perspective: 1000px;
}
@media (min-width: 992px) and (max-width: 1200px) {
	.scene {padding-left: 70px;}
}
@media (min-width: 720px) and (max-width: 767px) {
	.scene {padding-left: 200px;}
}
@media (min-width: 640px) and (max-width: 719px) {
	.scene {padding-left: 150px;}
}
@media (min-width: 550px) and (max-width: 639px) {
	.scene {padding-left: 100px;}
}
@media (min-width: 480px) and (max-width: 549px) {
	.scene {padding-left: 50px;}
}
@media (max-width: 400px) {
	.scene {padding-left: 0px !important;}
}

/* padding-left: 50px; */


.movie {
	/*padding: 30px 30px 30px 30px;*/
	margin-top: 30px;
	margin-bottom: 30px;
	width: 350px;
	height: 200px;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translateZ(-130px);
	-moz-transform: translateZ(-130px);
	transform: translateZ(-130px);
	-webkit-transition: -webkit-transform 400ms;
	-moz-transition: -moz-transform 400ms;
	transition: transform 400ms;
}

.movie:hover {
	-webkit-transform: rotateY(-75deg) translateZ(20px);
	-moz-transform: rotateY(-75deg) translateZ(20px);
	transform: rotateY(-75deg) translateZ(30px); /*shift across Х during turning*/
}

/*************************************
Transform and style the two planes
**************************************/

.movie .poster,
.movie .info {

	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
}

.movie .poster  {
	padding: 30px 30px 30px 30px;
	-webkit-transform: translateZ(130px);
	-moz-transform: translateZ(130px);
	transform: translateZ(130px);
	background-size: cover;
	background-repeat: no-repeat;
}

.movie .info {
	-webkit-transform: rotateY(100deg) translateZ(130px);
	-moz-transform: rotateY(100deg) translateZ(130px);
	transform: rotateY(106.9deg) translateZ(130px); /*rotateY distance bettwen edges*/
	font-size: 0.75em;
}

.info p {
	padding: 1.2em 1.4em;
	margin: 2px 0 0;
	color: #ffffff;
	font-size: 12px;
	font-family: 'Roboto-Light';
}

/*************************************
Fallback
**************************************/
.no-csstransforms3d .movie .poster,
.no-csstransforms3d .movie .info {
	position: relative;
}

/*************************************
Media Queries
**************************************/
/*@media screen and (max-width: 60.75em){*/
	/*.scene {*/
		/*float: none;*/
		/*margin: 30px auto 60px;*/
	/*}*/
/*}*/
