

/*FUENTES*/

@font-face{
	font-family: "TrebuchetMS";
	src:url(fonts/TrebuchetMS.ttf); /*la carpeta fonts está dentro de la carpeta css*/
	font-weight: normal;
	font-style: normal;
}

@font-face{
	font-family: "BebasNeue";
	src:url(fonts/BebasNeue.otf);
	font-weight: normal;
	font-style: normal;
}

@font-face{
	font-family: "WebSymbolsRegular";
	src:url("fonts/websymbols-regular-webfont.eot");
	src:url("fonts/websymbols-regular-webfont.eot?#iefix") format("embedded-opentype"),
		url("fonts/websymbols-regular-webfont.woff") format("woff"),
		url("fonts/websymbols-regular-webfont.ttf") format("truetype"),
		url("fonts/websymbols-regular-webfont.svg#WebSymbolsRegular") format("svg");

	font-weight: normal;
	font-style: normal;
}

/*ESTILOS GENERALES*/

.gear{
	font-family: "WebSymbolsRegular";

}

*{
	margin:0px;
	padding: 0px;
}


body{
	background-image: url(../img/pattern.png); /*porque la carpeta img está fuera de la carpeta css, hay que usar los ..*/
}
.wrap{
	width: 1200px;
	margin:0px auto;


}

/*cabecera*/
#header{
	width: 100%;
	height: 80px;
	background-color: black;
	color:white;
	font-family: "BebasNeue";



     }

#logo{
	float:left;
	width: 350px;
	background-color: white;
	color:black;
	text-align: center;
	margin-top: 8px;
	margin-left: 2%;
	letter-spacing: 1px;
	cursor: pointer;
	overflow: hidden;
	transition: all 500ms;


}

#logo:hover{
	border-radius: 15px;
	border: 10px solid #37bcf9;

}

#logo:hover img{
		
		animation:fromRight 300ms linear;

}

@keyframes fromRight{
	from{
		transform:translateX(200%);
	}
	to{
		transform:translateX(0%);
	}
}



/*

#logo .gear{
	display: block;
	float: left;
	font-size: 30px;
	margin-top: 8px;
	margin-left: 26px;

}

#logo h3{
	font-size: 40px;
	display: block;
	float: right;
	margin-top: 5px;
	margin-right: 35px;
	transition: all 300ms;
}
*/

#menu{
	float:right;
	margin-right: 80px;
	height: 80px;
	background-color: black;
	
}

#menu ul li{
	font-size: 28px;
	display: inline-block;
	margin: 0px 20px 0px 20px;
	letter-spacing: 1px;
	line-height: 80px;
}

#menu ul li a{
	color:white;
	display: block;
	text-decoration: none;
}

#menu ul li a:hover{
	color:#37bcf9;
	transform: scale(1.2,1.2)
}


/*GALERIA FOTOS*/

.fotos{
	font-family: "BebasNeue";
	font-size: 30px;
	letter-spacing: 1px;
	margin-top: 55px;
	margin-left: 95px;
}

.fotos h3{
	margin-top: 60px;
}


.fotos img{
	margin-top: 20px;
}

.fotos iframe{
	margin-top: 20px;
	width: 500px;
	height: 275px;
}


/*BANNER*/
#banner{
	
	color:white;
	width: 95%;
	height: 130px;
	border:10px solid white;
	box-shadow: 0px 0px 5px gray;
	background-image: url(../img/bakbaner.png);
	background-position: -200px -200px;
	margin: 0px auto;
	margin-top: 25px;
	text-shadow: 2px 2px 1px black;
	padding-top: 12px;
	overflow: hidden;
	animation: backBanner 10s linear;
}

@keyframes backBanner{
	0%{
	background-position: 0px 0px;
	}
	100%{
	background-position: -200px -200px;
	}
}




#banner h1{
	font-weight: normal;
	letter-spacing: 2px;
	font-size: 30px;
	color:#ccc;
	text-align: center;
	margin-top: 1px;
	font-family: "BebasNeue";
	animation: showText 7s linear;

}

@keyframes showText{
	0%{
		transform: translateX(-400%) scale(5,5);
		opacity: 1;
	}
	50%{
		transform: translateX(400%) scale(5,5);
		opacity: 1;
	}

	75%{
		transform: translateX(-400%) scale(5,5);
		opacity: 0;
		color:transparent;
	}
	100%{
		transform: translateX(0%) scale(1,1);
		opacity: 1;
		color:#ccc;
	}
}

#banner h3{
	
	text-align: center;
	margin-top: 1px;
	font-family: "TrebuchetMS";
	font-weight: normal;
	color:white;
	letter-spacing: 1px;
}

/*TARJETAS*/

#cards{
	width: 100%;
	height:350px;
	margin-left: 0px auto;
	
}


.card{
	display: block;
	width: 200px;
	height: 250px;
	background:white;
	border: 1px solid #ccc;
	box-shadow: 0px 0px 6px #ccc;
	float:left;
	margin:18px;
	overflow: hidden;
	margin-top: 50px;
	cursor: pointer;
	transition: 300ms;

}

.card:hover {
	background-color: black; 
}

.card .icon{
	font-size: 60px;
	text-align: center;
	margin-top: 25px;
	transition: all 300ms;

}

.card:hover .icon{
	font-size: 70px;
	color:#37bcf9;
	animation: showIcon 300ms linear;
}

@keyframes showIcon{
	from{
		transform: translateY(-200%);

	}
	to{
		transform: translateX(0%);

	}
}

.card .category{
	padding-top: 5px;
	font-family: "TrebuchetMS";
	font-size: 20px;
	font-style: bold;
	color:black;
	text-align: center;
	line-height: 60px;
	transition: all 300ms;
}

.card:hover .category{
	color:white;
	animation: showCategory 400ms linear;
}

@keyframes showCategory{
	from{
		transform: translateY(-300%);
		color:black;
	}
	to{
		transform: translateY(0%);
		color:white;

	}
}

.card .category a{
	text-decoration: none;
	color:black;
	
}

.card:hover .category a{
	color:white;
	border: 5px solid #37bcf9;
	animation: showCategory 400ms linear;
}


.card .description{
	font-family: "TrebuchetMS";
	padding-top: 10px;
	color:#00538c;
	text-align: center;
	transition: all 300ms;
	margin:0px 5px 0px 10px;
}

.card:hover .description{
	color:white;
	animation: showDescription 400ms linear;
}

@keyframes showDescription{
	from{
		transform: translateX(-200%);
		color:black;
	}
	to{
		transform: translateX(0%);
		color:white;
	}
}




/*FOTOFURGO*/


#fotofurgo{
	
	width: 1140PX;
	height: 380px;
	margin-left: 20px;
	margin-top: 40px;
	background: white;
	background-image: url(../img/logo-nuevoV3_opacidad_15.png);
	background-position: 5px -30px;
	border-radius: 5%;
	
	
	
}

#fotofurgo p{
	font-size: 30px;
	letter-spacing: 1px;
	text-align: center;
	line-height: 70px;
	color:black;
	font-family: "BebasNeue";
	padding-top: 56px;
	padding-left: 40px;
	padding-right: 40px;
	margin-top: 0px;
}

#video{
	width: 96%;
	margin-left: 20px;
	margin-top: 50px;

}

#video iframe{
	margin-top: 24px;
}

#video h3{
	font-family: "BebasNeue";
	font-size: 20px;
	letter-spacing: 1px;
	margin-bottom: 2px;
	padding-top: 5px;
	padding-bottom: 5px;
}

#video h3 a{
	text-decoration: none;
	font-family: "BebasNeue";
	font-size: 30px;
	letter-spacing: 1px;
	margin-bottom: 2px;
	color:black;
	

}

#video h3 a:hover{
	color: #37bcf9;
	

}


#location{
	width: 80%;
	margin-left: 95px;
	margin-top: 50px;

}

#location h3{
	font-family: "BebasNeue";
	font-size: 30px;
	letter-spacing: 1px;
	margin-bottom: 2px;

}

#location iframe{
	margin-top: 24px;
	width: 1005px;
	height: 400px;
	border:30px solid black;
	border-radius: 10px;
	box-shadow: 0px0px 5px black;

}

/*FOOTER*/

#footer{
	margin-top: 30px;	
	height: 470px;
	background: black;
	color:white;
	
}

#footer .wrap > div{
	float:left;
	width: 26%;
	height: 370px;
	margin:40px;
	text-align:center;
	color:white;
	font-family: "TrebuchetMS";

}

#footer a{
	text-decoration: none;
	color:#37bcf9;
	transition: all 300ms;

}

#footer h5{
	display:block;
	background: url(../img/pxgray.png),white;
	height: 50px;
	letter-spacing: 2px;
	text-align:center;
	font-family: "BebasNeue";
	font-size: 40px;
	line-height: 55px;
	color: black;
	border-radius: 5px;
	margin-bottom: 15px;
}

#footer ul{
	text-align: left;
	margin: 20px;
	font-size: 25px;
}

#footer ul li{
	margin-top: 10px;
	padding: 5px;
	border-bottom: 1px solid #ccc;
}

#footer ul li a{
	display:block;
	height: 40px;


}

#footer ul li:hover a{
	padding-left: 40px;
	color:white;
}

#footer iframe{
	width: 100%;
	height: 300px;
	border-radius: 5px;
	border:5px solid white;
	box-shadow: 0px 0px 5px gray;
}

#footer img{
	margin-bottom: 15px;
}

#browsers img{
	width: 45px;
}







