.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;
}

.countdown {
	display: flex;
	flex-direction: row;
	justify-content: center;
	margin-top: 0px;
	}

	.countdown > div:first-child {
	margin-right: 20px;
	}

	.countdown div {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 35px;
	line-height: 36px;
	width: 48px;
	margin: 0 15px;
	}

	.countdown div span:last-child {
	font-size: 18px;
	text-transform: uppercase;
	}

	@media screen and (min-width: 700px){
	.countdown {
		margin-top: 0px;
	}

	.countdown div {
		font-size: 80px;
		line-height: 70px;
		width: 139px;
		margin: 0 30px;
	}

	.countdown div span:last-child {
		font-size: 25px;
		margin-top: -10px;
	}

	}

	@media screen and (min-width: 500px){
	.countdown {
		margin-top: 10px;
		margin-bottom: -10px;
	}

	.countdown div span:last-child {
		font-size: 8px;
	}

	.countdown div {
		font-size: 75px;
		line-height: 85px;
		width: 75px;
		margin: 0 30px;
	}
	}

/*CSS LOADER PARA IFRAMES*/

.loader {
	width: 50px;
	aspect-ratio: 1;
	border-radius: 50%;
	border: 8px solid black;
	border-right-color: #b9a75c;
	animation: l2 1s infinite linear;
}

@keyframes l2 {
	to {
		transform: rotate(1turn)
	}
}

