
@import url('https://fonts.googleapis.com/css?family=PT+Sans');

body{
	margin: 0;
	/*padding: 0;*/
	font-family: 'PT Sans', sans-serif;
}

.cardStyle{
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	/*width: 400px;
	height: 500px;*/
	overflow: hidden;
	box-shadow: 0 5px 10px rgba(0,0,0,0.5);
	margin-bottom: 20px;
	transition: 0.5s;
}

.cardStyle .poster{
	position: relative;
	overflow: hidden;
}

.cardStyle .poster:before{
	content: '';
	position: absolute;
	bottom: -180px;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, #000 50%, transparent);
	/*background: rgba(0,0,0,0.5);*/
	transition: 0.5s;
	z-index: 1;
}

.cardStyle:hover .poster:before{
	bottom: 0;
}

.cardStyle .poster img{
	width: 100%;
	transition: 0.5s;
}

.cardStyle:hover .poster img{
	filter: blur(5px);
	transform: translateY(-50px);
}

.details{
	position: absolute;
	padding: 20px;
	width: 100%;
	height: 63.7%;
	bottom: -180px;
	left: 0;
	box-sizing: border-box;
	transition: 0.5s;
	z-index: 2;
}

.cardStyle:hover .details{
	bottom: 0;
	height: 90%;
}

.details h2{
	color: #fff;
	margin: 0;
	padding: 0;
	font-size: 35px;
}

.details h2 span{
	font-size: 14px;
	color: #ff9800;
}

.cardStyle .botonCarusel{
	padding: 5px 50px !important;
}

.rating{
	position: relative;
	padding: 5px 0;
}

.rating .fa{
	color: #f7f406;
	margin-right: 2px;
	font-size: 16px;
}

.rating span{
	color: #fff;
	padding: 0 5px;
}

.tags{
	position: relative;
	margin-top: 5px;
}

.tags span{
	padding: 2px 5px;
	margin-right: 2px;
	color: #fff;
	display: inline-block;
	border-radius: 4px;
}

.tags span.fantasy{
	background: #7206f7;
}

.tags span.romance{
	background: #f70661;
}

.info{
	color: #fff;
}

.info p{
	font-size: 20px;
	margin: 50px 0 100px;
}

#Comodidad{
	margin-top: 50px !important;
}

#nuestraApp .img-fluid{
	width: 100%;
}





