@charset "UTF-8";
#movie article{
	width:46%;
	height:300px;
	float:left;
	background:rgba(255,255,255,0.8);
	margin:0 1% 20px 1%;
	position:relative;
	border-radius: 20px;
	padding:20px;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px; 
	-moz-box-shadow: 1px 1px 5px rgba(0,0,0,0.2);
	-webkit-box-shadow: 1px 1px 5px rgba(0,0,0,0.2);
	box-shadow: 1px 1px 5px rgba(0,0,0,0.2);
}

@media screen and (max-width: 1000px){
	#movie article{
	float:none;
	width:100%;
	height:auto;
	max-width:620px;
	margin:0 auto 6% auto;
	position:relative;
	padding:5% 4%;
	}
	#products article:nth-child(3){
	border:4px solid #90f66c;
	margin-top:0px;
	}
}
#movie article img{
	position:relative;
	display:block;
	width:100%;
	min-height:250px;
	z-index:99 !important;
}
@media screen and (max-width: 640px){
	#movie article img{
	min-height:150px;
	}
}
#movie article  a{
	width:100%;
	height:100%;
	display:block;
	position:relative;
}

#movie article a::after{
	position:absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	margin:auto;
	content:'';
	width:70px;
	height:70px;
	background:url("../images/play.png") no-repeat;
	background-size:100% auto;
	display:block;
	z-index:100 !important;
	
	-webkit-transition: all 100ms linear;
	-moz-transition: all 100ms linear;
	transition: all 100ms linear;
}
#movie article a:hover::after{
	opacity:0.9;
}
