.bg-fondo{
	background-image: url(../imagenes/fondo.jpg);	
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.font-title, p, li, span{
	font-family: 'Montserrat', sans-serif;
}

.img-hover{
	overflow: hidden;
	transition: width 4s, height 4s;
}

.efecto{
	/*transition-delay: 2s;*/
}

.img-hover:hover img{
	-ms-transform: scale(0.1); /* IE 9 */
  	-webkit-transform: scale(0.1); /* Safari 3-8 */
  	filter: grayscale(.8);
  	transform: scale(1.1);  

}

.zoom{
	transition: 0.65s;
}







/* --ENTRADA GRATUITA */
.thumbnail-list {
list-style: none;
}

.thumbnail-list .image-w {
display: block;
position: relative;
}

.image-w img {
display: block;
}

.cover {
position: absolute;
top: 0; right: 0;
bottom: 0; left: 0;
width: 100%;
height: 100%;
color: rgba(255,255,255,0);
text-align: center;
transition: all 1s linear;
}

.thumbnail-list a:hover .cover {
background-color: rgba(0,0,0,.8);
color: rgba(255,255,255,1);
transition: all .2s linear;
}